<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Jesper Garneij</title>
	
	<link>http://www.jespergarneij.com</link>
	<description>Web Developer, Father, Geek &amp; Rock Star</description>
	<lastBuildDate>Fri, 20 Aug 2010 11:59:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/jespergarneij-blog" /><feedburner:info uri="jespergarneij-blog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Oh HTML5 Video tag, how you disappoint me</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/FMRZ8LCY_9E/</link>
		<comments>http://www.jespergarneij.com/2010/06/oh-html5-video-tag-how-you-disappoint-me/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 23:15:56 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Video]]></category>
		<category><![CDATA[Front-End]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Streaming Video]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Video For Everybody]]></category>
		<category><![CDATA[Web Video]]></category>

		<guid isPermaLink="false">http://www.jespergarneij.com/?p=816</guid>
		<description><![CDATA[
I remember when I first got word about the HTML5...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jespergarneij.com/media/2010/06/html5-video-tag.png" title="HTML5 Video Tag" rel="lightbox"><img src="http://www.jespergarneij.com/media/2010/06/html5-video-tag-580x326.png" alt="HTML5 Video Tag" /></a></p>
<p>I remember when I first got word about the HTML5 video tag, i thought &#8220;This is gonna be the best thing ever&#8221;, simplifying things. Not having to use Flash players that never look or act like you want them to, JavaScript to embed nicely etc and what not. It&#8217;s gonna be like:</p>
<p><code>&lt;video src="file.mp4" /&gt;</code></p>
<p>And I&#8217;d be done for the day, right? But nooooo, browser developers won&#8217;t have it. Oh no, they&#8217;re not about to make anything that simple for ya sonny. They&#8217;re gonna go ahead and disagree on the freaking containers and codecs, and not only kill what could be one of the best thing about it &#8211; one simple line of embed code nativly supported by your browser. They&#8217;re also gonna make sure you have to quadruple the storage usage on your server. Yep. So here&#8217;s what we end up with instead:</p>
<pre><code>&lt;video poster="file.jpg"&gt;
	&lt;source src="file.mp4"
		type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'&gt;
	&lt;source src="file.mov"
		type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'&gt;
	&lt;source src="file.webm"
		type='video/webm; codecs="vp8, vorbis"'&gt;
	&lt;source src="file.ogv"
		type='video/ogg; codecs="theora, vorbis"'&gt;
	&lt;object id="player"
		type="application/x-shockwave-flash" data="player.swf"
		name="player" width="580" height="350"&gt;
		&lt;param name="movie" value="player.swf" /&gt;
		&lt;param name="allowfullscreen" value="true" /&gt;
		&lt;param name="allowscriptaccess" value="always" /&gt;
		&lt;param name="flashvars" value="file=file.mp4&#038;image=file.jpg" /&gt;
		&lt;embed id="player2"
			type="application/x-shockwave-flash" src="player.swf"
			width="580" height="350" allowscriptaccess="always"
			allowfullscreen="true" flashvars="file=file.mp4&#038;image=file.jpg" /&gt;
	&lt;/object&gt;
&lt;/video&gt;</code></pre>
<p>OK, not super fair, there is some extra code in there, but you get the point. One of these extras are the <em>poster</em> attribute. This attribute is according to Camendesign.com <a href="http://camendesign.com/code/video_for_everybody#notes" title="Camendesign.com"> breaking playback</a> on iPads and iPhone OS 3.x, so mind that. In that article I also read that the .mp4 file must come first, because the iPad will <a href="http://camendesign.com/code/video_for_everybody#webm" title="Camendesign.com">ignore anything</a> but the first source element.</p>
<p>Above we&#8217;ve got the <em>.mp4</em> tag for Safari, the <em>.webm</em> for Google Chrome, <em>.ogv</em> for Mozilla Firefox, and the <em>.mov</em> for iPhones. The iPhone version uses the .mov as a reference movie, selecting between two additional versions of the video files. One if you&#8217;re on 3G/EDGE, and one if you&#8217;re on WiFi. <em>SIX video files</em>! Actually, the reference movie is only a few k&#8217;s heavy, since it doesn&#8217;t actually contain any video. And you could use the same .mp4 video file for both Safari and mobile devices on WiFi speeds. I decided to place the .mov reference movie second because I imagine it <em>might</em> save  iPhone users some loading time, but I honestly have no idea if it has any effect at all. Hopefully the iPhone stops evaluating sources when it finds the .mov file.</p>
<p>Lastly in that part of video madness, there&#8217;s the Flash fallback for those who hasn&#8217;t updated their web browsers in a while, and simply don&#8217;t have support for the video tag. Here you can use a Flash player that supports your .mp4 video file, and you don&#8217;t have to create a .flv (or whatever your preference is) file as well.</p>
<p>There are a couple of overlaps, and there will be more, but there will be no one format supported by all major browsers. At least not what it sounds like at this point in time. IE8 supports none, IE9 will support H.264 video (not sure about containers, .mp4, .m4v, .mkv?), and .webm IF the user have the VP8 codec installed on its system. Safari will of course only support the H.264 video. FF3.5 supports .ogv and FF4 will support .webm as well. Google Chrome will have support for all three. Android seems be <a href="http://www.broken-links.com/2010/07/30/encoding-video-for-android/" title="Broken-Links.com">badly flawed</a> when it comes to playback of HTML5 video, so make sure you browse around for information (that link for example has a guide).</p>
<p>Fine, I understand the H.264 licensing issues and all that, but gosh dolly, it&#8217;s such a great codec! And it&#8217;s been around for so long and been so widely accepted, isn&#8217;t it just so incredibly stupid not to attack the beast head on? Just solve it already! Google, buy it and release it under some free license and we&#8217;re all set! Or something. Just please stop creating new formats <em>just because</em>&#8230;</p>
<p>Or better yet, all of you, just support all three and let the users decide. If the H.264 license thing becomes and issue down the road, then that&#8217;s that. You can curse yourself (Google) for not purchasing it years ago, and then move on.</p>
<p>Safari 5 features a really nice fullscreen mode of HTML5 video. Fullscreen mode in Firefox 3.6 on Mac is terrible, at least for me. Very laggy and choppy. Safari is smooth. But that might actually have more to do with the video files rather than the web browser. And obviously the race is only just starting.</p>
<p>I&#8217;m actually considering scrapping the .webm and .ogv formats altogether (at least for now), partly in protest, but mostly to save myself the trouble and server storage space. I&#8217;ll probably use a Flash player and play a .mp4 file that&#8217;s mobile friendly and use the HTML5 video as fallback for mobile devices. Anything else just seem like one step backwards to me. </p>
<p><a href="http://diveintohtml5.org/video.html" title="Dive Into HTML 5">Dive Into HTML 5</a> is a great resource if you want to read more about HTML5 in general, and video on the web specifically. I you&#8217;re curious to know what HTML5 features your web browser supports, you can check out <a href="http://html5test.com/" title="The HTML5 Test">The HTML5 Test</a>, and it&#8217;ll tell you automatically.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.jespergarneij.com/2010/06/oh-html5-video-tag-how-you-disappoint-me/&amp;t=Oh+HTML5+Video+tag%2C+how+you+disappoint+me" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Oh+HTML5+Video+tag%2C+how+you+disappoint+me+-+http://sl.ly/7d476&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Oh%20HTML5%20Video%20tag%2C%20how%20you%20disappoint%20me%22&amp;body=Link: http://www.jespergarneij.com/2010/06/oh-html5-video-tag-how-you-disappoint-me/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AI%20remember%20when%20I%20first%20got%20word%20about%20the%20HTML5%20video%20tag%2C%20i%20thought%20%22This%20is%20gonna%20be%20the%20best%20thing%20ever%22%2C%20simplifying%20things.%20Not%20having%20to%20use%20Flash%20players%20that%20never%20look%20or%20act%20like%20you%20want%20them%20to%2C%20JavaScript%20to%20embed%20nicely%20etc%20and%20what%20not.%20It%27s%20gonna%20be%20like%3A%0D%0A%0D%0A%26lt%3Bvideo%20src%3D%22file." rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.jespergarneij.com/2010/06/oh-html5-video-tag-how-you-disappoint-me/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.jespergarneij.com/2010/06/oh-html5-video-tag-how-you-disappoint-me/&amp;title=Oh+HTML5+Video+tag%2C+how+you+disappoint+me" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.jespergarneij.com/2010/06/oh-html5-video-tag-how-you-disappoint-me/&amp;title=Oh+HTML5+Video+tag%2C+how+you+disappoint+me" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.jespergarneij.com/2010/06/oh-html5-video-tag-how-you-disappoint-me/&amp;title=Oh+HTML5+Video+tag%2C+how+you+disappoint+me" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.jespergarneij.com/2010/06/oh-html5-video-tag-how-you-disappoint-me/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.jespergarneij.com/2010/06/oh-html5-video-tag-how-you-disappoint-me/&amp;title=Oh+HTML5+Video+tag%2C+how+you+disappoint+me" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.jespergarneij.com/2010/06/oh-html5-video-tag-how-you-disappoint-me/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2010/06/oh-html5-video-tag-how-you-disappoint-me/</feedburner:origLink></item>
		<item>
		<title>Website overhaul, logins added</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/Ck-ekrKN7i0/</link>
		<comments>http://www.jespergarneij.com/2010/06/website-overhaul-logins-added/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 19:20:09 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Accounts]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Login]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.jespergarneij.com/?p=802</guid>
		<description><![CDATA[I&#8217;ve redone my website once again, and this time I&#8217;ve...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve redone my website once again, and this time I&#8217;ve added a way for users to log in. The reason for this is to protect the privacy of our daughter Elvira, but still be able to share photos and videos of her with our friends and family. And to protect my own privacy as well I suppose.</p>
<p>I just noticed my website contact forms just stopped working, I dunno if I added too many accounts at once and it just crashed on me, I&#8217;ve never seen this happen before. So if you&#8217;re trying to request an account, please try again in a few moments, I hope it should be working shortly.</p>
<p><strong>Update:</strong> OK, it should work to request accounts and use the contact form now.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.jespergarneij.com/2010/06/website-overhaul-logins-added/&amp;t=Website+overhaul%2C+logins+added" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Website+overhaul%2C+logins+added+-+http://sl.ly/15e59&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Website%20overhaul%2C%20logins%20added%22&amp;body=Link: http://www.jespergarneij.com/2010/06/website-overhaul-logins-added/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%27ve%20redone%20my%20website%20once%20again%2C%20and%20this%20time%20I%27ve%20added%20a%20way%20for%20users%20to%20log%20in.%20The%20reason%20for%20this%20is%20to%20protect%20the%20privacy%20of%20our%20daughter%20Elvira%2C%20but%20still%20be%20able%20to%20share%20photos%20and%20videos%20of%20her%20with%20our%20friends%20and%20family.%20And%20to%20protect%20my%20own%20privacy%20as%20well%20I%20suppose.%0D%0A%0D%0AI%20just%20not" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.jespergarneij.com/2010/06/website-overhaul-logins-added/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.jespergarneij.com/2010/06/website-overhaul-logins-added/&amp;title=Website+overhaul%2C+logins+added" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.jespergarneij.com/2010/06/website-overhaul-logins-added/&amp;title=Website+overhaul%2C+logins+added" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.jespergarneij.com/2010/06/website-overhaul-logins-added/&amp;title=Website+overhaul%2C+logins+added" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.jespergarneij.com/2010/06/website-overhaul-logins-added/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.jespergarneij.com/2010/06/website-overhaul-logins-added/&amp;title=Website+overhaul%2C+logins+added" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.jespergarneij.com/2010/06/website-overhaul-logins-added/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2010/06/website-overhaul-logins-added/</feedburner:origLink></item>
		<item>
		<title>This is just sick: Autonomous Quadrotor (I want one!)</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/DHMoF40ULkQ/</link>
		<comments>http://www.jespergarneij.com/2010/05/this-is-just-sick-autonomous-quadrotor-i-want-one/#comments</comments>
		<pubDate>Fri, 28 May 2010 14:20:01 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[Helicopter]]></category>
		<category><![CDATA[Quadrotor]]></category>
		<category><![CDATA[Want it]]></category>

		<guid isPermaLink="false">http://blog.jespergarneij.com/?p=717</guid>
		<description><![CDATA[
Honey, my birthday&#8217;s coming up (in a few months)&#8230;




		
			Share this...]]></description>
			<content:encoded><![CDATA[<p><object width="720" height="430"><param name="movie" value="http://www.youtube.com/v/MvRTALJp8DM&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/MvRTALJp8DM&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="720" height="430"></embed></object></p>
<p>Honey, my birthday&#8217;s coming up (in a few months)&#8230;</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.jespergarneij.com/2010/05/this-is-just-sick-autonomous-quadrotor-i-want-one/&amp;t=This+is+just+sick%3A+Autonomous+Quadrotor+%28I+want+one%21%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=This+is+just+sick%3A+Autonomous+Quadrotor+%28I+want+one%21%29+-+http://sl.ly/799e2&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22This%20is%20just%20sick%3A%20Autonomous%20Quadrotor%20%28I%20want%20one%21%29%22&amp;body=Link: http://www.jespergarneij.com/2010/05/this-is-just-sick-autonomous-quadrotor-i-want-one/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AHoney%2C%20my%20birthday%27s%20coming%20up%20%28in%20a%20few%20months%29..." rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.jespergarneij.com/2010/05/this-is-just-sick-autonomous-quadrotor-i-want-one/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.jespergarneij.com/2010/05/this-is-just-sick-autonomous-quadrotor-i-want-one/&amp;title=This+is+just+sick%3A+Autonomous+Quadrotor+%28I+want+one%21%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.jespergarneij.com/2010/05/this-is-just-sick-autonomous-quadrotor-i-want-one/&amp;title=This+is+just+sick%3A+Autonomous+Quadrotor+%28I+want+one%21%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.jespergarneij.com/2010/05/this-is-just-sick-autonomous-quadrotor-i-want-one/&amp;title=This+is+just+sick%3A+Autonomous+Quadrotor+%28I+want+one%21%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.jespergarneij.com/2010/05/this-is-just-sick-autonomous-quadrotor-i-want-one/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.jespergarneij.com/2010/05/this-is-just-sick-autonomous-quadrotor-i-want-one/&amp;title=This+is+just+sick%3A+Autonomous+Quadrotor+%28I+want+one%21%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.jespergarneij.com/2010/05/this-is-just-sick-autonomous-quadrotor-i-want-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2010/05/this-is-just-sick-autonomous-quadrotor-i-want-one/</feedburner:origLink></item>
		<item>
		<title>Who needs a Spotify invite?</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/xPAiAOVEnkI/</link>
		<comments>http://www.jespergarneij.com/2010/05/who-needs-a-spotify-invite/#comments</comments>
		<pubDate>Sat, 08 May 2010 09:19:22 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Inbjudan]]></category>
		<category><![CDATA[Invite]]></category>
		<category><![CDATA[spotify]]></category>

		<guid isPermaLink="false">http://blog.jespergarneij.com/?p=711</guid>
		<description><![CDATA[
I just realized a have a bunch of Spotify invites,...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jespergarneij.com/media/2010/05/spotify-daniel-ek-and-martin-lorentzon.jpg" title="Spotify" rel="lightbox[Spotify]"><img src="http://www.jespergarneij.com/media/2010/05/spotify-daniel-ek-and-martin-lorentzon-720x450.jpg" alt="Spotify" /></a></p>
<p>I just realized a have a bunch of Spotify invites, and I figured why not make them useful instead of just collecting dust in my closed. If you want one, leave a comment. Please make sure to use a valid email address so I can reach you. First-come first-served, so be quick about it.</p>
<p><strong>Edit:</strong> Oh also, please note that Spotify only works in Sweden, Norway, Finland, the UK, France and Spain at the moment.</p>
<p><strong>Status:</strong> I&#8217;ve got a few new ones, come get&#8217;em.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.jespergarneij.com/2010/05/who-needs-a-spotify-invite/&amp;t=Who+needs+a+Spotify+invite%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Who+needs+a+Spotify+invite%3F+-+http://sl.ly/6b13&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Who%20needs%20a%20Spotify%20invite%3F%22&amp;body=Link: http://www.jespergarneij.com/2010/05/who-needs-a-spotify-invite/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0AI%20just%20realized%20a%20have%20a%20bunch%20of%20Spotify%20invites%2C%20and%20I%20figured%20why%20not%20make%20them%20useful%20instead%20of%20just%20collecting%20dust%20in%20my%20closed.%20If%20you%20want%20one%2C%20leave%20a%20comment.%20Please%20make%20sure%20to%20use%20a%20valid%20email%20address%20so%20I%20can%20reach%20you.%20First-come%20first-served%2C%20so%20be%20quick%20about%20it.%0D%0AEdit%3A%20Oh%20also%2C" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.jespergarneij.com/2010/05/who-needs-a-spotify-invite/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.jespergarneij.com/2010/05/who-needs-a-spotify-invite/&amp;title=Who+needs+a+Spotify+invite%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.jespergarneij.com/2010/05/who-needs-a-spotify-invite/&amp;title=Who+needs+a+Spotify+invite%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.jespergarneij.com/2010/05/who-needs-a-spotify-invite/&amp;title=Who+needs+a+Spotify+invite%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.jespergarneij.com/2010/05/who-needs-a-spotify-invite/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.jespergarneij.com/2010/05/who-needs-a-spotify-invite/&amp;title=Who+needs+a+Spotify+invite%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.jespergarneij.com/2010/05/who-needs-a-spotify-invite/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2010/05/who-needs-a-spotify-invite/</feedburner:origLink></item>
		<item>
		<title>Ludacris – My Chick Bad ft. Nicki Minaj</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/f-Hgss31f4w/</link>
		<comments>http://www.jespergarneij.com/2010/03/ludacris-my-chick-bad-ft-nicki-minaj/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 22:30:38 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Ludacris]]></category>
		<category><![CDATA[Music Video]]></category>
		<category><![CDATA[My Chick Bad]]></category>
		<category><![CDATA[Nicki Minaj]]></category>

		<guid isPermaLink="false">http://blog.jespergarneij.com/?p=705</guid>
		<description><![CDATA[
I&#8217;m so hooked on this song right now&#8230;




		
			Share this on...]]></description>
			<content:encoded><![CDATA[<p><object width="720" height="430"><param name="movie" value="http://www.youtube.com/v/JqHliQijgvA&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/JqHliQijgvA&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="720" height="430"></embed></object></p>
<p>I&#8217;m so hooked on this song right now&#8230;</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.jespergarneij.com/2010/03/ludacris-my-chick-bad-ft-nicki-minaj/&amp;t=Ludacris+-+My+Chick+Bad+ft.+Nicki+Minaj" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Ludacris+-+My+Chick+Bad+ft.+Nicki+Minaj+-+http://sl.ly/87b3d&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Ludacris%20-%20My%20Chick%20Bad%20ft.%20Nicki%20Minaj%22&amp;body=Link: http://www.jespergarneij.com/2010/03/ludacris-my-chick-bad-ft-nicki-minaj/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AI%27m%20so%20hooked%20on%20this%20song%20right%20now..." rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.jespergarneij.com/2010/03/ludacris-my-chick-bad-ft-nicki-minaj/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.jespergarneij.com/2010/03/ludacris-my-chick-bad-ft-nicki-minaj/&amp;title=Ludacris+-+My+Chick+Bad+ft.+Nicki+Minaj" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.jespergarneij.com/2010/03/ludacris-my-chick-bad-ft-nicki-minaj/&amp;title=Ludacris+-+My+Chick+Bad+ft.+Nicki+Minaj" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.jespergarneij.com/2010/03/ludacris-my-chick-bad-ft-nicki-minaj/&amp;title=Ludacris+-+My+Chick+Bad+ft.+Nicki+Minaj" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.jespergarneij.com/2010/03/ludacris-my-chick-bad-ft-nicki-minaj/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.jespergarneij.com/2010/03/ludacris-my-chick-bad-ft-nicki-minaj/&amp;title=Ludacris+-+My+Chick+Bad+ft.+Nicki+Minaj" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.jespergarneij.com/2010/03/ludacris-my-chick-bad-ft-nicki-minaj/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2010/03/ludacris-my-chick-bad-ft-nicki-minaj/</feedburner:origLink></item>
		<item>
		<title>Linus getting blurry in Los Angeles</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/kNjV134Y3G8/</link>
		<comments>http://www.jespergarneij.com/2009/11/linus-getting-blurry-in-los-angeles/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 18:19:54 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Los Angeles]]></category>
		<category><![CDATA[Beach]]></category>
		<category><![CDATA[LA]]></category>
		<category><![CDATA[Linus]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Sand]]></category>
		<category><![CDATA[Vacation]]></category>

		<guid isPermaLink="false">http://blog.jespergarneij.com/?p=683</guid>
		<description><![CDATA[

I found these photos when browsing through my iPhoto library,...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jespergarneij.com/media/2009/11/linus-blurry.jpg" title="Linus doing Los Angeles" rel="lightbox[Linus doing Los Angeles]"><img src="http://www.jespergarneij.com/media/2009/11/linus-blurry-720x405.jpg" alt="Linus doing Los Angeles" /></a></p>
<p><a href="http://www.jespergarneij.com/media/2009/11/linus-sitting.jpg" title="Linus doing Los Angeles" rel="lightbox[Linus doing Los Angeles]"><img src="http://www.jespergarneij.com/media/2009/11/linus-sitting-720x405.jpg" alt="Linus doing Los Angeles" /></a></p>
<p>I found these photos when browsing through my iPhoto library, I just thought they where great snaps of when Diana&#8217;s nephew Linus and his mom Stina came visiting us in LA for vacation. He loved it, especially the beach I think. He kept drawing very looooong hearts as he called them, in the sand.</p>
<p>I can&#8217;t remember where these photos are taken, probably Newport Beach. Either way, I need to go there again soon. Just look how freaking sunny and warm and not shitty Swedish, half-assed winter it is!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.jespergarneij.com/2009/11/linus-getting-blurry-in-los-angeles/&amp;t=Linus+getting+blurry+in+Los+Angeles" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Linus+getting+blurry+in+Los+Angeles+-+http://sl.ly/5b450&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Linus%20getting%20blurry%20in%20Los%20Angeles%22&amp;body=Link: http://www.jespergarneij.com/2009/11/linus-getting-blurry-in-los-angeles/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0A%0D%0A%0D%0AI%20found%20these%20photos%20when%20browsing%20through%20my%20iPhoto%20library%2C%20I%20just%20thought%20they%20where%20great%20snaps%20of%20when%20Diana%27s%20nephew%20Linus%20and%20his%20mom%20Stina%20came%20visiting%20us%20in%20LA%20for%20vacation.%20He%20loved%20it%2C%20especially%20the%20beach%20I%20think.%20He%20kept%20drawing%20very%20looooong%20hearts%20as%20he%20called%20them%2C%20in%20the%20sa" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.jespergarneij.com/2009/11/linus-getting-blurry-in-los-angeles/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.jespergarneij.com/2009/11/linus-getting-blurry-in-los-angeles/&amp;title=Linus+getting+blurry+in+Los+Angeles" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.jespergarneij.com/2009/11/linus-getting-blurry-in-los-angeles/&amp;title=Linus+getting+blurry+in+Los+Angeles" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.jespergarneij.com/2009/11/linus-getting-blurry-in-los-angeles/&amp;title=Linus+getting+blurry+in+Los+Angeles" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.jespergarneij.com/2009/11/linus-getting-blurry-in-los-angeles/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.jespergarneij.com/2009/11/linus-getting-blurry-in-los-angeles/&amp;title=Linus+getting+blurry+in+Los+Angeles" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.jespergarneij.com/2009/11/linus-getting-blurry-in-los-angeles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2009/11/linus-getting-blurry-in-los-angeles/</feedburner:origLink></item>
		<item>
		<title>Stocking up on sleep Jesper?</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/WOXokv4KpY0/</link>
		<comments>http://www.jespergarneij.com/2009/11/stocking-up-on-sleep-jesper/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 20:02:34 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Jesper Garneij]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Baby]]></category>
		<category><![CDATA[Clothes]]></category>
		<category><![CDATA[Father]]></category>
		<category><![CDATA[Fatherhood]]></category>
		<category><![CDATA[Organic]]></category>
		<category><![CDATA[Parenthood]]></category>
		<category><![CDATA[Parenting]]></category>
		<category><![CDATA[Sleep]]></category>
		<category><![CDATA[Toys]]></category>

		<guid isPermaLink="false">http://blog.jespergarneij.com/?p=664</guid>
		<description><![CDATA[
For the last few days I have been sleeping a...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jespergarneij.com/media/2009/11/sleeping-baby.jpg" title="Stocking up on sleep Jesper?" rel="lightbox[Stocking up on sleep Jesper?]"><img src="http://www.jespergarneij.com/media/2009/11/sleeping-baby-720x405.jpg" alt="Stocking up on sleep Jesper?" /></a></p>
<p>For the last few days I have been sleeping a bit too much. Well, I&#8217;ve been falling asleep really late, and waking up even later. Relative to when I&#8217;ve fallen asleep of course. I think I&#8217;ve had some sort of bug for the last couple of weeks, I know a few friends of mine have been feeling the same sleep disruptions I have, and a feverish sensation has been present in a way. So I figured, hey, I better stock up on sleep man. In May, me and Diana are having the baby! Now <em>that</em> will disturb what little sleep pattern I (and Diana) have.</p>
<p>I know, I know, there&#8217;s no way to actually &#8220;stock up&#8221; on sleep or even &#8220;catch up&#8221; lost sleep by sleeping more. But hey, I&#8217;m sure I&#8217;ll be saying &#8220;I can&#8217;t go guys, I&#8217;ve gotta catch up on some sleep&#8221; when the baby&#8217;s here. :) Seriously though, I get the worst headaches when I sleep for too long, this massive headache that I can&#8217;t get rid of without painkillers. Nothing else works. Hey, maybe I&#8217;ll function better being a father to an awesome baby, deprived of sleep!</p>
<p>Me and Diana have been checking out some cool retro stuff for the baby, like a couple of items she had when she was a baby. Some of them look older than that though. They&#8217;re awesome! I&#8217;ve got a couple of things from when I was a baby too, I have to upload some photos of them here at some point and show you. We&#8217;ve also bought some baby clothes, almost all organic. It&#8217;s amazing how much organic baby clothing you can find these days, that actually looks great! It&#8217;s so funny, I usually complain when I do Diana&#8217;s clothes when doing laundry, mostly when folding or hanging them.  Because her clothes are so tiny, and to me they all look the same, and trying to fold a piece of fabric that&#8217;s too small for me to fit my hand inside it&#8230; it&#8217;s not easy. Wonder how it&#8217;s gonna be with the baby clothes, haha.</p>
<p>Oh also, it has come to our attention that both sides of Diana&#8217;s family have twins, and both sides of my family have them as well&#8230; Better prepare honey.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.jespergarneij.com/2009/11/stocking-up-on-sleep-jesper/&amp;t=Stocking+up+on+sleep+Jesper%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Stocking+up+on+sleep+Jesper%3F+-+http://sl.ly/f7d69&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Stocking%20up%20on%20sleep%20Jesper%3F%22&amp;body=Link: http://www.jespergarneij.com/2009/11/stocking-up-on-sleep-jesper/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AFor%20the%20last%20few%20days%20I%20have%20been%20sleeping%20a%20bit%20too%20much.%20Well%2C%20I%27ve%20been%20falling%20asleep%20really%20late%2C%20and%20waking%20up%20even%20later.%20Relative%20to%20when%20I%27ve%20fallen%20asleep%20of%20course.%20I%20think%20I%27ve%20had%20some%20sort%20of%20bug%20for%20the%20last%20couple%20of%20weeks%2C%20I%20know%20a%20few%20friends%20of%20mine%20have%20been%20feeling%20the%20same%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.jespergarneij.com/2009/11/stocking-up-on-sleep-jesper/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.jespergarneij.com/2009/11/stocking-up-on-sleep-jesper/&amp;title=Stocking+up+on+sleep+Jesper%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.jespergarneij.com/2009/11/stocking-up-on-sleep-jesper/&amp;title=Stocking+up+on+sleep+Jesper%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.jespergarneij.com/2009/11/stocking-up-on-sleep-jesper/&amp;title=Stocking+up+on+sleep+Jesper%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.jespergarneij.com/2009/11/stocking-up-on-sleep-jesper/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.jespergarneij.com/2009/11/stocking-up-on-sleep-jesper/&amp;title=Stocking+up+on+sleep+Jesper%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.jespergarneij.com/2009/11/stocking-up-on-sleep-jesper/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2009/11/stocking-up-on-sleep-jesper/</feedburner:origLink></item>
		<item>
		<title>Silver Devil lays down some tracks</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/YHrBwSicZlo/</link>
		<comments>http://www.jespergarneij.com/2009/11/silver-devil-lays-down-some-tracks/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 14:30:28 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Friends]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[drums]]></category>
		<category><![CDATA[guitar]]></category>
		<category><![CDATA[marcus]]></category>
		<category><![CDATA[otto]]></category>
		<category><![CDATA[recording]]></category>
		<category><![CDATA[rock]]></category>
		<category><![CDATA[Silver Devil]]></category>
		<category><![CDATA[stoner]]></category>
		<category><![CDATA[studio]]></category>

		<guid isPermaLink="false">http://blog.jespergarneij.com/?p=655</guid>
		<description><![CDATA[
Otto and Marcus are recording some tunes for their awesome...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jespergarneij.com/media/2009/11/otto-and-marcus-recording-silver-devil-songs.jpg" title="Silver Devil lays down some tracks" rel="lightbox[Silver Devil lays down some tracks]"><img src="http://www.jespergarneij.com/media/2009/11/otto-and-marcus-recording-silver-devil-songs-720x405.jpg" alt="Silver Devil lays down some tracks" /></a></p>
<p>Otto and Marcus are recording some tunes for their awesome stoner rock band <a href="http://www.myspace.com/silverdevilsweden" title="www.myspace.com/silverdevilsweden">Silver Devil</a> in our, <a href="http://www.marcusblewup.com" title="www.marcusblewup.com">marcusblewup&#8217;s</a>, rehearsal studio. I haven&#8217;t heard the end result yet, but it sounded like the songs are gonna be great. Otto, closest to the camera, is the guitar player and recording maestro, and Marcus is drum stick waiver, also for marcusblewup.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.jespergarneij.com/2009/11/silver-devil-lays-down-some-tracks/&amp;t=Silver+Devil+lays+down+some+tracks" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Silver+Devil+lays+down+some+tracks+-+http://sl.ly/13aab&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Silver%20Devil%20lays%20down%20some%20tracks%22&amp;body=Link: http://www.jespergarneij.com/2009/11/silver-devil-lays-down-some-tracks/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AOtto%20and%20Marcus%20are%20recording%20some%20tunes%20for%20their%20awesome%20stoner%20rock%20band%20Silver%20Devil%20in%20our%2C%20marcusblewup%27s%2C%20rehearsal%20studio.%20I%20haven%27t%20heard%20the%20end%20result%20yet%2C%20but%20it%20sounded%20like%20the%20songs%20are%20gonna%20be%20great.%20Otto%2C%20closest%20to%20the%20camera%2C%20is%20the%20guitar%20player%20and%20recording%20maestro%2C%20and%20Ma" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.jespergarneij.com/2009/11/silver-devil-lays-down-some-tracks/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.jespergarneij.com/2009/11/silver-devil-lays-down-some-tracks/&amp;title=Silver+Devil+lays+down+some+tracks" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.jespergarneij.com/2009/11/silver-devil-lays-down-some-tracks/&amp;title=Silver+Devil+lays+down+some+tracks" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.jespergarneij.com/2009/11/silver-devil-lays-down-some-tracks/&amp;title=Silver+Devil+lays+down+some+tracks" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.jespergarneij.com/2009/11/silver-devil-lays-down-some-tracks/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.jespergarneij.com/2009/11/silver-devil-lays-down-some-tracks/&amp;title=Silver+Devil+lays+down+some+tracks" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.jespergarneij.com/2009/11/silver-devil-lays-down-some-tracks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2009/11/silver-devil-lays-down-some-tracks/</feedburner:origLink></item>
		<item>
		<title>It was the summer of 2009</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/9XBz9gv-vfg/</link>
		<comments>http://www.jespergarneij.com/2009/11/it-was-the-summer-of-2009/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 19:36:52 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Sweden]]></category>
		<category><![CDATA[Långvind]]></category>
		<category><![CDATA[summer]]></category>
		<category><![CDATA[summer house]]></category>
		<category><![CDATA[winter]]></category>

		<guid isPermaLink="false">http://blog.jespergarneij.com/?p=647</guid>
		<description><![CDATA[
I&#8217;m sitting here in my office freezing, it&#8217;s getting cold....]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jespergarneij.com/media/2009/11/one-summer-day-in-langvind.jpg" title="It was the summer of 2009" rel="lightbox[It was the summer of 2009]"><img src="http://www.jespergarneij.com/media/2009/11/one-summer-day-in-langvind-720x405.jpg" alt="It was the summer of 2009" /></a></p>
<p>I&#8217;m sitting here in my office freezing, it&#8217;s getting cold. Gotta turn the heat up. I found this picture in my photos library, it&#8217;s from our summer house in Långvind. Look how all mighty cosy it is, summer warmth! And oh yeah, the hat I bought in Greece is now my summer house hat. Don&#8217;t you trash my hat. My hat will kick you in the nuts.</p>
<p>Is it just me, or is Diana trying a little too hard&#8230;?</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.jespergarneij.com/2009/11/it-was-the-summer-of-2009/&amp;t=It+was+the+summer+of+2009" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=It+was+the+summer+of+2009+-+http://sl.ly/cf1be&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22It%20was%20the%20summer%20of%202009%22&amp;body=Link: http://www.jespergarneij.com/2009/11/it-was-the-summer-of-2009/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AI%27m%20sitting%20here%20in%20my%20office%20freezing%2C%20it%27s%20getting%20cold.%20Gotta%20turn%20the%20heat%20up.%20I%20found%20this%20picture%20in%20my%20photos%20library%2C%20it%27s%20from%20our%20summer%20house%20in%20L%C3%A5ngvind.%20Look%20how%20all%20mighty%20cosy%20it%20is%2C%20summer%20warmth%21%20And%20oh%20yeah%2C%20the%20hat%20I%20bought%20in%20Greece%20is%20now%20my%20summer%20house%20hat.%20Don%27t%20you%20tras" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.jespergarneij.com/2009/11/it-was-the-summer-of-2009/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.jespergarneij.com/2009/11/it-was-the-summer-of-2009/&amp;title=It+was+the+summer+of+2009" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.jespergarneij.com/2009/11/it-was-the-summer-of-2009/&amp;title=It+was+the+summer+of+2009" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.jespergarneij.com/2009/11/it-was-the-summer-of-2009/&amp;title=It+was+the+summer+of+2009" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.jespergarneij.com/2009/11/it-was-the-summer-of-2009/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.jespergarneij.com/2009/11/it-was-the-summer-of-2009/&amp;title=It+was+the+summer+of+2009" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.jespergarneij.com/2009/11/it-was-the-summer-of-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2009/11/it-was-the-summer-of-2009/</feedburner:origLink></item>
		<item>
		<title>Music Painting</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/0lWBAMVrPo0/</link>
		<comments>http://www.jespergarneij.com/2009/09/music-painting/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 21:13:41 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[MTV]]></category>
		<category><![CDATA[Painting]]></category>
		<category><![CDATA[Shakira]]></category>
		<category><![CDATA[Sweden]]></category>
		<category><![CDATA[ZTV]]></category>

		<guid isPermaLink="false">http://blog.jespergarneij.com/?p=606</guid>
		<description><![CDATA[
Well, that&#8217;s one way of making a music video. Pretty...]]></description>
			<content:encoded><![CDATA[<p><object width="720" height="405"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5092349&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=ababab&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5092349&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=ababab&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="720" height="405"></embed></object></p>
<p>Well, that&#8217;s one way of making a music video. Pretty fantastic, don&#8217;t you think? Nice contrast to all the stupid Shakira&#8217;s and the half-nude, brain dead nonsense of the world of &#8220;music&#8221; huh? Yeah, like we even have a music channel in Sweden nowadays. MTV is a joke straight out. MTV is an abbreviation of <strong>Mumbojumbo Television</strong>. ZTV also lost my respect, years ago.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.jespergarneij.com/2009/09/music-painting/&amp;t=Music+Painting" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Music+Painting+-+http://sl.ly/3773d&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Music%20Painting%22&amp;body=Link: http://www.jespergarneij.com/2009/09/music-painting/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AWell%2C%20that%27s%20one%20way%20of%20making%20a%20music%20video.%20Pretty%20fantastic%2C%20don%27t%20you%20think%3F%20Nice%20contrast%20to%20all%20the%20stupid%20Shakira%27s%20and%20the%20half-nude%2C%20brain%20dead%20nonsense%20of%20the%20world%20of%20%22music%22%20huh%3F%20Yeah%2C%20like%20we%20even%20have%20a%20music%20channel%20in%20Sweden%20nowadays.%20MTV%20is%20a%20joke%20straight%20out.%20MTV%20is%20an%20abbrevi" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.jespergarneij.com/2009/09/music-painting/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.jespergarneij.com/2009/09/music-painting/&amp;title=Music+Painting" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.jespergarneij.com/2009/09/music-painting/&amp;title=Music+Painting" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.jespergarneij.com/2009/09/music-painting/&amp;title=Music+Painting" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.jespergarneij.com/2009/09/music-painting/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.jespergarneij.com/2009/09/music-painting/&amp;title=Music+Painting" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.jespergarneij.com/2009/09/music-painting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2009/09/music-painting/</feedburner:origLink></item>
	</channel>
</rss>
