<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jezen Thomas</title>
	<atom:link href="http://jezenthomas.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://jezenthomas.co.uk</link>
	<description>ideas, design &#38; music</description>
	<lastBuildDate>Sun, 04 Dec 2011 12:25:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Charity for Christmas</title>
		<link>http://jezenthomas.co.uk/charity-for-christmas/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=charity-for-christmas</link>
		<comments>http://jezenthomas.co.uk/charity-for-christmas/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 12:25:10 +0000</pubDate>
		<dc:creator>Jezen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jezenthomas.co.uk/?p=187</guid>
		<description><![CDATA[I think I&#8217;ve completely grown out of wanting presents for Christmas. I&#8217;d rather just know that people are growing smarter, and that reality television shows are dying out. I&#8217;ve never been a charitable person either, but something about supporting free &#8230; <a href="http://jezenthomas.co.uk/charity-for-christmas/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I think I&#8217;ve completely grown out of wanting presents for Christmas. I&#8217;d rather just know that people are growing smarter, and that reality television shows are dying out. I&#8217;ve never been a charitable person either, but something about supporting free knowledge for all makes me feel warm and Christmassy inside. For that reason, I donated to Wikipedia. Hopefully everyone will.</p>
<p><a href="https://wikimediafoundation.org/wiki/Support_Wikipedia/en"><img border="0" alt="Support Wikipedia" src="https://upload.wikimedia.org/wikipedia/commons/2/26/Fundraising_2009-square-thanks-en.png" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jezenthomas.co.uk/charity-for-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Radio Jezen FM</title>
		<link>http://jezenthomas.co.uk/radio-jezen-fm/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=radio-jezen-fm</link>
		<comments>http://jezenthomas.co.uk/radio-jezen-fm/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 23:16:35 +0000</pubDate>
		<dc:creator>Jezen</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://jezenthomas.co.uk/?p=127</guid>
		<description><![CDATA[This is what I&#8217;m currently subjecting my colleagues to. Kraftwerk &#8211; Aéro Dynamik / Titanium]]></description>
			<content:encoded><![CDATA[<p>This is what I&#8217;m currently subjecting my colleagues to.</p>
<p><a href="http://www.youtube.com/v/OIRDHXNEZ7I" rel="shadowbox[post-127];player=swf;width=640;height=385;">Kraftwerk &#8211; Aéro Dynamik / Titanium</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jezenthomas.co.uk/radio-jezen-fm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conditional code for universal iOS apps</title>
		<link>http://jezenthomas.co.uk/conditional-code-for-universal-ios-apps/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=conditional-code-for-universal-ios-apps</link>
		<comments>http://jezenthomas.co.uk/conditional-code-for-universal-ios-apps/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 07:57:25 +0000</pubDate>
		<dc:creator>Jezen</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://jezenthomas.co.uk/?p=122</guid>
		<description><![CDATA[With help from one of my colleagues, I found a simple way of specifying a set of rules for iPad, and a separate set of rules for iPhone/iPod Touch. Apple recommends using user interface idioms, which might look something like &#8230; <a href="http://jezenthomas.co.uk/conditional-code-for-universal-ios-apps/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>With help from one of my colleagues, I found a simple way of specifying a set of rules for iPad, and a separate set of rules for iPhone/iPod Touch. Apple recommends using user interface idioms, which might look something like this:<span id="more-122"></span></p>
<p><code>#ifdef UI_USER_INTERFACE_IDIOM()<br />
#define IS_IPAD() (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)<br />
#else<br />
#define IS_IPAD() (false)<br />
#endif</code></p>
<p><code> </code></p>
<p><code>usage:<br />
if (IS_IPAD())<br />
{<br />
// foo<br />
}<br />
</code><br />
That&#8217;s all well and good, but upper-case code is a little bit scary to me, so I prefer this:<br />
<code><br />
CGRect screenBounds = [[UIScreen mainScreen] bounds];<br />
if (screenBounds.size.width == 320) {<br />
// Some code for iPhones and iPod Touches<br />
} else {<br />
// Some code for iPads<br />
}<br />
</code></p>
<p>Cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://jezenthomas.co.uk/conditional-code-for-universal-ios-apps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>More transcriptions!</title>
		<link>http://jezenthomas.co.uk/more-transcriptions/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=more-transcriptions</link>
		<comments>http://jezenthomas.co.uk/more-transcriptions/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 11:17:17 +0000</pubDate>
		<dc:creator>Jezen</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://jezenthomas.co.uk/?p=119</guid>
		<description><![CDATA[I have teamed up with Zsolt Korompay and Wolfgang Schüler to make Drums Notated the best resource for drum transcriptions. We now have performances by Vinnie Colaiuta, Peter Erskine, Gavin Harrison, Dave DiCenso, Dennis Chambers, Jojo Mayer, Omar Hakim, and &#8230; <a href="http://jezenthomas.co.uk/more-transcriptions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have teamed up with <em>Zsolt Korompay</em> and <em>Wolfgang Schüler</em> to make <a href="http://drumsnotated.com">Drums Notated</a> the best resource for drum transcriptions. We now have performances by <a href="http://drumsnotated.com/products/vinnies-half-time">Vinnie Colaiuta</a>, <a href="http://drumsnotated.com/products/pools">Peter Erskine</a>, <a href="http://drumsnotated.com/products/slippin-away">Gavin Harrison</a>, <a href="http://drumsnotated.com/products/dicenso-by-schuler">Dave DiCenso</a>, <a href="http://drumsnotated.com/products/half-time-shuffle">Dennis Chambers</a>, <a href="http://drumsnotated.com/products/groove-for-drummerworld">Jojo Mayer</a>, <a href="http://drumsnotated.com/products/mystic-glance">Omar Hakim</a>, and more.</p>
<p>So drummers, what are you waiting for? <a href="http://drumsnotated.com">Check it out now.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jezenthomas.co.uk/more-transcriptions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First nothing, then everything</title>
		<link>http://jezenthomas.co.uk/first-nothing-then-everything/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=first-nothing-then-everything</link>
		<comments>http://jezenthomas.co.uk/first-nothing-then-everything/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 10:56:49 +0000</pubDate>
		<dc:creator>Jezen</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://jezenthomas.co.uk/?p=116</guid>
		<description><![CDATA[Isn&#8217;t it funny how all sorts of interesting things can happen all at the same time? Over the weekend, I visited Trójmiasto in Poland with my good friend Jesper. We arrived to fantastic weather, and made the most of our &#8230; <a href="http://jezenthomas.co.uk/first-nothing-then-everything/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Isn&#8217;t it funny how all sorts of interesting things can happen all at the same time? Over the weekend, I visited Trójmiasto in Poland with my good friend Jesper. We arrived to fantastic weather, and made the most of our time with go-kart racing*, a fancy dinner, some great nightclubbing in Sopot, and even just taking my little whip out for a spin.</p>
<p>Returning on Sunday afternoon wasn&#8217;t quite as enjoyable. Our flight was delayed by an hour and customs in Malmö delayed us further. This meant we missed our bus, which connected us with our train back to Göteborg. We ended up being delayed by three hours, and had to buy new train tickets.</p>
<p>Things always get better though. On Tuesday, my new computer arrived.  A 1.7 GHz i5 MacBook Air with 4GB RAM, courtesy of my boss. Awesome! It&#8217;s unbelievably fast, and handles all my graphics, design and development work, and even some gaming to boot. I also managed to get my hands on iOS5 (thanks Adrian!)</p>
<p>With all this new Apple stuff on my desk, it seems ironic that Steve Jobs, the founder of all of it, died this morning.</p>
<p><em>*For the record, I was fastest <img src='http://jezenthomas.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://jezenthomas.co.uk/first-nothing-then-everything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Overcome by Nerdiness</title>
		<link>http://jezenthomas.co.uk/overcome-by-nerdiness/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=overcome-by-nerdiness</link>
		<comments>http://jezenthomas.co.uk/overcome-by-nerdiness/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 17:17:08 +0000</pubDate>
		<dc:creator>Jezen</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://jezenthomas.co.uk/?p=109</guid>
		<description><![CDATA[I just saw this: while(dead_horse) beat(); And I laughed. I can&#8217;t believe I found that funny.]]></description>
			<content:encoded><![CDATA[<p>I just saw this:</p>
<pre>while(dead_horse)
    beat();</pre>
<p>And I laughed. I can&#8217;t believe I found that funny.</p>
]]></content:encoded>
			<wfw:commentRss>http://jezenthomas.co.uk/overcome-by-nerdiness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Start of Something Beautiful</title>
		<link>http://jezenthomas.co.uk/the-start-of-something-beautiful/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-start-of-something-beautiful</link>
		<comments>http://jezenthomas.co.uk/the-start-of-something-beautiful/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 11:03:32 +0000</pubDate>
		<dc:creator>Jezen</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://jezenthomas.co.uk/?p=98</guid>
		<description><![CDATA[I am now on my lunch break, on my first day of work as a developer at itiden! I have overcome my nerves, and I love it here. The office is fantastic, and it&#8217;s in the center of town. I &#8230; <a href="http://jezenthomas.co.uk/the-start-of-something-beautiful/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I am now on my lunch break, on my first day of work as a developer at <a title="itiden" href="http://itiden.se/">itiden</a>! I have overcome my nerves, and I love it here. The office is fantastic, and it&#8217;s in the center of town. I have a great big shiny iMac to work with, and the staff are all really friendly.</p>
<p>My first project was to build a CMS website for a client in Stockholm. I&#8217;ve worked a great deal with WordPress, so I know my way around. The boss seemed particularly pleased at how quickly I managed to roll out a finished product. Success! If I can keep my colleagues impressed for two weeks, they&#8217;ll take me on full-time and I&#8217;ll have a real career!</p>
<p>I never would have thought it, but I&#8217;m genuinely very excited to come to work every day and learn more about software development. This week I&#8217;ll be focusing mostly on PHP and JavaScript. I&#8217;m playing with Objective-C too, because I&#8217;d love to develop apps for iOS.</p>
<div id="attachment_99" class="wp-caption aligncenter" style="width: 310px"><a href="http://jezenthomas.co.uk/wp-content/uploads/2011/09/293305_10150811391480111_500570110_20664421_1421821577_n.jpeg" rel="shadowbox[post-98];player=img;"><img class="size-medium wp-image-99" title="293305_10150811391480111_500570110_20664421_1421821577_n" src="http://jezenthomas.co.uk/wp-content/uploads/2011/09/293305_10150811391480111_500570110_20664421_1421821577_n-300x223.jpg" alt="" width="300" height="223" /></a><p class="wp-caption-text">Feels like home!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://jezenthomas.co.uk/the-start-of-something-beautiful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where are the drum transcriptions?</title>
		<link>http://jezenthomas.co.uk/where-are-the-drum-transcriptions/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=where-are-the-drum-transcriptions</link>
		<comments>http://jezenthomas.co.uk/where-are-the-drum-transcriptions/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 14:32:19 +0000</pubDate>
		<dc:creator>Jezen</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://jezenthomas.co.uk/?p=94</guid>
		<description><![CDATA[I frequently receive emails from drummers around the world looking for my transcription of Gavin Harrison&#8217;s Slippin&#8217; Away performance from PASIC, 2008. That particular transcription – along with a few others – is available for instant download from http://drumsnotated.com. It&#8217;s &#8230; <a href="http://jezenthomas.co.uk/where-are-the-drum-transcriptions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I frequently receive emails from drummers around the world looking for my transcription of Gavin Harrison&#8217;s <em>Slippin&#8217; Away</em> performance from PASIC, 2008.</p>
<p>That particular transcription – along with a few others – is available for instant download from <a title="Drums Notated" href="http://drumsnotated.com">http://drumsnotated.com</a>.</p>
<p>It&#8217;s a wonderful system; you choose the transcription you want, and it is automatically emailed to you immediately after purchase.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://jezenthomas.co.uk/where-are-the-drum-transcriptions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS Beautifier and Media Queries</title>
		<link>http://jezenthomas.co.uk/css-beautifier-and-media-queries/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=css-beautifier-and-media-queries</link>
		<comments>http://jezenthomas.co.uk/css-beautifier-and-media-queries/#comments</comments>
		<pubDate>Tue, 17 May 2011 12:54:07 +0000</pubDate>
		<dc:creator>Jezen</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://jezenthomas.co.uk/?p=62</guid>
		<description><![CDATA[A large portion of a front-end designer&#8217;s work involves fiddling with CSS, so it&#8217;s no surprise how quickly a style sheet can become an incomprehensible mess. One tool I particularly like using during a design process is the CSS Code Beautifier. &#8230; <a href="http://jezenthomas.co.uk/css-beautifier-and-media-queries/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A large portion of a front-end designer&#8217;s work involves fiddling with CSS, so it&#8217;s no surprise how quickly a style sheet can become an incomprehensible mess. One tool I particularly like using during a design process is the <a href="http://www.codebeautifier.com/">CSS Code Beautifier</a>. It formats style sheets in a number of ways depending on how efficient or legible you need it to be.</p>
<p>There is a caveat with this tool however; for some reason, it breaks the CSS3 media query syntax, changing something correct like:</p>
<p><code>@media screen and (max-width:480px) {}</code></p>
<p>&#8230; Into something that will be misunderstood by the browser like:</p>
<p><code>@media screen and max-width480px{}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://jezenthomas.co.uk/css-beautifier-and-media-queries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30 Day Song Challenge</title>
		<link>http://jezenthomas.co.uk/30-day-song-challenge/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=30-day-song-challenge</link>
		<comments>http://jezenthomas.co.uk/30-day-song-challenge/#comments</comments>
		<pubDate>Mon, 16 May 2011 17:59:16 +0000</pubDate>
		<dc:creator>Jezen</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://jezenthomas.co.uk/?p=25</guid>
		<description><![CDATA[Rather than take 30 days to compile a collection of music that&#8217;s important to me, I&#8217;ll do it in one. My favourite song: Start of Something Beautiful My least favourite song: American Idiot A song that makes me happy: Hi Friend A song &#8230; <a href="http://jezenthomas.co.uk/30-day-song-challenge/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Rather than take 30 days to compile a collection of music that&#8217;s important to me, I&#8217;ll do it in one.</p>
<ol>
<li>My favourite song: <a href="http://www.youtube.com/v/tk0mvXFbAAg" rel="shadowbox[post-25];player=swf;width=640;height=385;">Start of Something Beautiful</a></li>
<li>My least favourite song: <a href="http://www.youtube.com/v/Wti4SA0YZ90" rel="shadowbox[post-25];player=swf;width=640;height=385;">American Idiot</a></li>
<li>A song that makes me happy: <a href="http://www.youtube.com/v/kCz--Dd3IJ0" rel="shadowbox[post-25];player=swf;width=640;height=385;">Hi Friend</a></li>
<li>A song that makes me sad: <a href="http://www.youtube.com/v/8aST8oIaxsc" rel="shadowbox[post-25];player=swf;width=640;height=385;">I Can&#8217;t Go To Sleep</a></li>
<li>A song that reminds me of someone: <a href="http://www.youtube.com/v/aX07gCjT7dA" rel="shadowbox[post-25];player=swf;width=640;height=385;">Seven</a></li>
</ol>
<p><span id="more-25"></span></p>
<ol start="6">
<li>A song that reminds me of somewhere: <a href="http://www.youtube.com/v/HFFGguX2SZM" rel="shadowbox[post-25];player=swf;width=640;height=385;">Panic Switch</a></li>
<li>A song that reminds me of a certain event: <a href="http://www.youtube.com/v/8Fxvm0LsGzs" rel="shadowbox[post-25];player=swf;width=640;height=385;">Where the Sun Don&#8217;t Shine</a></li>
<li>A song I know all the words to: <a href="http://www.youtube.com/v/tMLetx7SjCw" rel="shadowbox[post-25];player=swf;width=640;height=385;">N 2 Gether Now</a></li>
<li>A song I can dance to: <a href="http://www.youtube.com/v/mFNtIJHCPQ4" rel="shadowbox[post-25];player=swf;width=640;height=385;">Blau</a></li>
<li>A song that makes me fall asleep: <a href="http://www.youtube.com/v/wYD_IeUAeNc" rel="shadowbox[post-25];player=swf;width=640;height=385;">As the Stars Fall</a></li>
</ol>
<ol start="11">
<li>A song from my favourite band: <a href="http://www.youtube.com/v/lJVd2viG9f0" rel="shadowbox[post-25];player=swf;width=640;height=385;">So Called Friend</a></li>
<li>A song from a band I hate: <a href="http://www.youtube.com/v/uSD4vsh1zDA" rel="shadowbox[post-25];player=swf;width=640;height=385;">I Gotta Feeling</a></li>
<li>A song that is a guilty pleasure: <a href="http://www.youtube.com/v/2SYDPjWXEqo" rel="shadowbox[post-25];player=swf;width=640;height=385;">Grebfruit</a></li>
<li>A song nobody would expect me to love: <a href="http://www.youtube.com/v/cAX2JepcIv8" rel="shadowbox[post-25];player=swf;width=640;height=385;">In the Music</a></li>
<li>A song that describes me: <a href="http://www.youtube.com/v/yeqMQPTixA4" rel="shadowbox[post-25];player=swf;width=640;height=385;">I Got This Down</a></li>
</ol>
<ol start="16">
<li>A song I used to love but now hate: <a href="http://www.youtube.com/v/n4WEAHRLorM" rel="shadowbox[post-25];player=swf;width=640;height=385;">Erotomania</a></li>
<li>A song I hear often on the radio: <a href="http://www.youtube.com/v/pc0mxOXbWIU" rel="shadowbox[post-25];player=swf;width=640;height=385;">Fuck You</a></li>
<li>A song I wish I heard on the radio: <a href="http://www.youtube.com/v/4R_I2G_mWsc" rel="shadowbox[post-25];player=swf;width=640;height=385;">Discipline</a></li>
<li>A song from my favourite album: <a href="http://www.youtube.com/v/oPCGcmCR5v8" rel="shadowbox[post-25];player=swf;width=640;height=385;">Open Car</a></li>
<li>A song I listen to when I&#8217;m angry: <a href="http://www.youtube.com/v/xfEsI8wK6IM" rel="shadowbox[post-25];player=swf;width=640;height=385;">Bückstabü</a></li>
</ol>
<ol start="21">
<li>A song I listen to when I&#8217;m happy: <a href="http://www.youtube.com/v/QfU-4Y4_akY" rel="shadowbox[post-25];player=swf;width=640;height=385;">Det Snurrar i Min Skalle</a></li>
<li>A song I listen to when I&#8217;m sad: <a href="http://www.youtube.com/v/xT0Z4eagj0U" rel="shadowbox[post-25];player=swf;width=640;height=385;">Eighthundred Streets by Feet</a></li>
<li>A song for my wedding: <a href="http://www.youtube.com/v/cEnJDaqT3-0" rel="shadowbox[post-25];player=swf;width=640;height=385;">Every Breath You Take</a></li>
<li>A song for my funeral: <a href="http://www.youtube.com/v/6Vc1uktH5lQ" rel="shadowbox[post-25];player=swf;width=640;height=385;">Collapse the Light into Earth</a></li>
<li>A song that makes me laugh: <a href="http://www.youtube.com/v/ndiGwhcBOOk" rel="shadowbox[post-25];player=swf;width=640;height=385;">Golem II: The Bionic Vapour Boy</a></li>
</ol>
<ol start="26">
<li>A song I can play on an instrument: <a href="http://www.youtube.com/v/kfuHgzu1Cjg" rel="shadowbox[post-25];player=swf;width=640;height=385;">Mustang Sally</a></li>
<li>A song I wish I could play: <a href="http://www.youtube.com/v/qc98u-eGzlc" rel="shadowbox[post-25];player=swf;width=640;height=385;">Bleed</a></li>
<li>A song that makes me feel guilty:</li>
<li>A song from my childhood: <a href="http://www.youtube.com/v/TR3Vdo5etCQ" rel="shadowbox[post-25];player=swf;width=640;height=385;">Don&#8217;t Speak</a></li>
<li>My favourite song from this time last year: <a href="http://www.youtube.com/v/XajgoxU-_nc" rel="shadowbox[post-25];player=swf;width=640;height=385;">Only</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://jezenthomas.co.uk/30-day-song-challenge/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

