This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* (c) 2011 Dominik Schmidt <[email protected]> | |
*/ | |
var DummyResolver = Tomahawk.extend(TomahawkResolver, | |
{ | |
settings: | |
{ | |
name: 'Dummy Resolver', | |
weight: 75, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Update 2011 link and hCalendar --> | |
<div class="vevent" id="hcalendar-Update-2011-mobile-conference"><a href="http://updateconf.com" title="Update mobile conference"><img src="http://updateconf.com/logo.png" alt="logo"/></a><p style="width:140px; padding-left:10px; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size:12px;"><span class="summary"><a href="http://updateconf.com" style="text-decoration:none; font-weight:800;">Update 2011: the human touch, iOS & beyond.</a></span><span class="description">A unique mobile conference with soul.</span><span class="location">Brighton, UK</span>. <strong><abbr class="dtstart" title="2011-09-05">5th September</abbr>, <abbr class="dtend" title="2011-09-06"> 2011</abbr>.</strong></p></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
var v = 0, | |
q = [], | |
o = {}, | |
s = {}, | |
A = { | |
"<": "lt", | |
">": "gt", | |
"&": "amp", | |
'"': "quot", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
var v = 0, | |
q = [], | |
o = {}, | |
s = {}, | |
A = { | |
"<": "lt", | |
">": "gt", | |
"&": "amp", | |
'"': "quot", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1: how could you rewrite the following to make it shorter? | |
if (foo) { | |
bar.doSomething(el); | |
} else { | |
bar.doSomethingElse(el); | |
} | |