<?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>Mon, 25 Jul 2011 08:59:07 +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>4</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>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 <del datetime="2011-07-25T08:45:06+00:00">Sweden, Norway, Finland, the UK, France and Spain</del> a select number of countries 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>34</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2010/05/who-needs-a-spotify-invite/</feedburner:origLink></item>
		<item>
		<title>Testing Panasonic Lumix DMC-FX35 HD Video</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/q5eTirAiBM0/</link>
		<comments>http://www.jespergarneij.com/2009/09/testing-panasonic-lumix-dmc-fx35-hd-video/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 11:39:56 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Camera]]></category>
		<category><![CDATA[Compact]]></category>
		<category><![CDATA[Digital]]></category>
		<category><![CDATA[DMC-FX35]]></category>
		<category><![CDATA[HD]]></category>
		<category><![CDATA[Lumix]]></category>
		<category><![CDATA[Panasonic]]></category>
		<category><![CDATA[Quality]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://blog.jespergarneij.com/?p=622</guid>
		<description><![CDATA[
I decided to try and upload an HD video file...]]></description>
			<content:encoded><![CDATA[<p><object width="720" height="430"><param name="movie" value="http://www.youtube.com/v/r3al6nCVsIk&#038;hl=en&#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/r3al6nCVsIk&#038;hl=en&#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>I decided to try and upload an HD video file shot with my Lumix a while back, see how uploading the original video file would look like on YouTube. Decent quality for a compact digital photo camera I suppose. Can only record 8 or so minutes per clip in full HD though.</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/testing-panasonic-lumix-dmc-fx35-hd-video/&amp;t=Testing+Panasonic+Lumix+DMC-FX35+HD+Video" 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=Testing+Panasonic+Lumix+DMC-FX35+HD+Video+-+http://sl.ly/bd676&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Testing%20Panasonic%20Lumix%20DMC-FX35%20HD%20Video%22&amp;body=Link: http://www.jespergarneij.com/2009/09/testing-panasonic-lumix-dmc-fx35-hd-video/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AI%20decided%20to%20try%20and%20upload%20an%20HD%20video%20file%20shot%20with%20my%20Lumix%20a%20while%20back%2C%20see%20how%20uploading%20the%20original%20video%20file%20would%20look%20like%20on%20YouTube.%20Decent%20quality%20for%20a%20compact%20digital%20photo%20camera%20I%20suppose.%20Can%20only%20record%208%20or%20so%20minutes%20per%20clip%20in%20full%20HD%20though." 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/testing-panasonic-lumix-dmc-fx35-hd-video/&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/testing-panasonic-lumix-dmc-fx35-hd-video/&amp;title=Testing+Panasonic+Lumix+DMC-FX35+HD+Video" 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/testing-panasonic-lumix-dmc-fx35-hd-video/&amp;title=Testing+Panasonic+Lumix+DMC-FX35+HD+Video" 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/testing-panasonic-lumix-dmc-fx35-hd-video/&amp;title=Testing+Panasonic+Lumix+DMC-FX35+HD+Video" 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/testing-panasonic-lumix-dmc-fx35-hd-video/" 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/testing-panasonic-lumix-dmc-fx35-hd-video/&amp;title=Testing+Panasonic+Lumix+DMC-FX35+HD+Video" 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/testing-panasonic-lumix-dmc-fx35-hd-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2009/09/testing-panasonic-lumix-dmc-fx35-hd-video/</feedburner:origLink></item>
		<item>
		<title>Apple iPod Shuffle</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/QGI0lYi8eA8/</link>
		<comments>http://www.jespergarneij.com/2009/09/apple-ipod-shuffle/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 20:05:32 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[Heaphones]]></category>
		<category><![CDATA[Mic]]></category>
		<category><![CDATA[Remote]]></category>
		<category><![CDATA[Shuffle]]></category>

		<guid isPermaLink="false">http://blog.jespergarneij.com/?p=568</guid>
		<description><![CDATA[
I purchased the iPod Shuffle and the Apple In-Ear buds...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jespergarneij.com/media/2009/09/apple-ipod-shuffle-and-in-ear-headphones-w-mic-and-remote.jpg" title="Apple iPod Shuffle and In-Ear Headphones with Mic and Remote" width="720" rel="lightbox[Apple iPod Shuffle and In-Ear Headphones with Mic and Remote]"><img src="http://www.jespergarneij.com/media/2009/09/apple-ipod-shuffle-and-in-ear-headphones-w-mic-and-remote-720x405.jpg" alt="Apple iPod Shuffle and In-Ear Headphones with Mic and Remote" /></a></p>
<p>I purchased the iPod Shuffle and the Apple In-Ear buds a while back and I am not impressed by the audio. I somehow imagined the In-Ear Headphones would offer a much deeper sound, but I&#8217;m the fool in this drama. Also, when walking outside with them, the wind makes this whistling sound in my ears, incredibly annoying. Not sure why, perhaps they stick out a tad more from my ears than other headphones, and they just catch the wind.</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/apple-ipod-shuffle/&amp;t=Apple+iPod+Shuffle" 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=Apple+iPod+Shuffle+-+http://sl.ly/ed24c&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Apple%20iPod%20Shuffle%22&amp;body=Link: http://www.jespergarneij.com/2009/09/apple-ipod-shuffle/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AI%20purchased%20the%20iPod%20Shuffle%20and%20the%20Apple%20In-Ear%20buds%20a%20while%20back%20and%20I%20am%20not%20impressed%20by%20the%20audio.%20I%20somehow%20imagined%20the%20In-Ear%20Headphones%20would%20offer%20a%20much%20deeper%20sound%2C%20but%20I%27m%20the%20fool%20in%20this%20drama.%20Also%2C%20when%20walking%20outside%20with%20them%2C%20the%20wind%20makes%20this%20whistling%20sound%20in%20my%20ears%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/2009/09/apple-ipod-shuffle/&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/apple-ipod-shuffle/&amp;title=Apple+iPod+Shuffle" 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/apple-ipod-shuffle/&amp;title=Apple+iPod+Shuffle" 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/apple-ipod-shuffle/&amp;title=Apple+iPod+Shuffle" 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/apple-ipod-shuffle/" 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/apple-ipod-shuffle/&amp;title=Apple+iPod+Shuffle" 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/apple-ipod-shuffle/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2009/09/apple-ipod-shuffle/</feedburner:origLink></item>
		<item>
		<title>Finally, Wordpress for iPhone Apache fix</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/2duXL2sTnHI/</link>
		<comments>http://www.jespergarneij.com/2009/07/finally-wordpress-for-iphone-apache-fix/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 02:58:49 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Jesper Garneij]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.jespergarneij.com/?p=537</guid>
		<description><![CDATA[
Oh hot dang! It even supports landscape typing. Damn, my...]]></description>
			<content:encoded><![CDATA[<p class="f_l"><a href="http://www.jespergarneij.com/media/2009/07/p_1600_1200_F7B9BBAD-85C6-4FB6-8E43-B917E8357C62.jpeg" rel="lightbox[Cutie Cat]" title="Cutie Cat"><img src="http://www.jespergarneij.com/media/2009/07/p_1600_1200_F7B9BBAD-85C6-4FB6-8E43-B917E8357C62.jpeg" alt="" width="225" height="300" /></a></p>
<p>Oh hot dang! It even supports landscape typing. Damn, my blogging just got a little more sweetness to it, though it has been suffering from non-activity for a while now. Too bad image handling isn&#8217;t better. Would be nice to be able to place it somewhere other than at the bottom of the post.</p>
<p>Or heck, custom fields or post image thumbnail would be sweet. Hey WordPress, hear that?  Awesome app guys, so happy it finally works.</p>
<p>See how happy Björns cat is? Sputnik, Ping Pong, Ding Dong, whatever his name was. Cute he is nonetheless.</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/07/finally-wordpress-for-iphone-apache-fix/&amp;t=Finally%2C+Wordpress+for+iPhone+Apache+fix" 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=Finally%2C+Wordpress+for+iPhone+Apache+fix+-+http://sl.ly/10a2e&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Finally%2C%20Wordpress%20for%20iPhone%20Apache%20fix%22&amp;body=Link: http://www.jespergarneij.com/2009/07/finally-wordpress-for-iphone-apache-fix/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AOh%20hot%20dang%21%20It%20even%20supports%20landscape%20typing.%20Damn%2C%20my%20blogging%20just%20got%20a%20little%20more%20sweetness%20to%20it%2C%20though%20it%20has%20been%20suffering%20from%20non-activity%20for%20a%20while%20now.%20Too%20bad%20image%20handling%20isn%27t%20better.%20Would%20be%20nice%20to%20be%20able%20to%20place%20it%20somewhere%20other%20than%20at%20the%20bottom%20of%20the%20post.%0D%0A%0D%0AO" 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/07/finally-wordpress-for-iphone-apache-fix/&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/07/finally-wordpress-for-iphone-apache-fix/&amp;title=Finally%2C+Wordpress+for+iPhone+Apache+fix" 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/07/finally-wordpress-for-iphone-apache-fix/&amp;title=Finally%2C+Wordpress+for+iPhone+Apache+fix" 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/07/finally-wordpress-for-iphone-apache-fix/&amp;title=Finally%2C+Wordpress+for+iPhone+Apache+fix" 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/07/finally-wordpress-for-iphone-apache-fix/" 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/07/finally-wordpress-for-iphone-apache-fix/&amp;title=Finally%2C+Wordpress+for+iPhone+Apache+fix" 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/07/finally-wordpress-for-iphone-apache-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2009/07/finally-wordpress-for-iphone-apache-fix/</feedburner:origLink></item>
		<item>
		<title>WPtouch – Wordpress on iPhone</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/SsJH6VUozG8/</link>
		<comments>http://www.jespergarneij.com/2009/02/wptouch-wordpress-on-iphone/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 13:56:35 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.jespergarneij.com/2009/02/11/wptouch-wordpress-on-iphone/</guid>
		<description><![CDATA[I just installed this plugin for this Wordpress blog called...]]></description>
			<content:encoded><![CDATA[<p>I just installed this plugin for this Wordpress blog called WPtouch, which basically automatically transforms my blog to an iPhone application-style blog. If you have an iPhone, check it out, it&#8217;s pretty damn awesome.</p>
<p>I haven&#8217;t done any customizations yet, but I will when I get the chance to. This installation was for research purposes only, but I still need to research customization at some point.</p>
<p>Good work by the developers at BraveNewCode!</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/02/wptouch-wordpress-on-iphone/&amp;t=WPtouch+-+Wordpress+on+iPhone" 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=WPtouch+-+Wordpress+on+iPhone+-+http://sl.ly/a7b96&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22WPtouch%20-%20Wordpress%20on%20iPhone%22&amp;body=Link: http://www.jespergarneij.com/2009/02/wptouch-wordpress-on-iphone/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20just%20installed%20this%20plugin%20for%20this%20Wordpress%20blog%20called%20WPtouch%2C%20which%20basically%20automatically%20transforms%20my%20blog%20to%20an%20iPhone%20application-style%20blog.%20If%20you%20have%20an%20iPhone%2C%20check%20it%20out%2C%20it%27s%20pretty%20damn%20awesome.I%20haven%27t%20done%20any%20customizations%20yet%2C%20but%20I%20will%20when%20I%20get%20the%20chance%20to.%20This%20in" 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/02/wptouch-wordpress-on-iphone/&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/02/wptouch-wordpress-on-iphone/&amp;title=WPtouch+-+Wordpress+on+iPhone" 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/02/wptouch-wordpress-on-iphone/&amp;title=WPtouch+-+Wordpress+on+iPhone" 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/02/wptouch-wordpress-on-iphone/&amp;title=WPtouch+-+Wordpress+on+iPhone" 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/02/wptouch-wordpress-on-iphone/" 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/02/wptouch-wordpress-on-iphone/&amp;title=WPtouch+-+Wordpress+on+iPhone" 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/02/wptouch-wordpress-on-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2009/02/wptouch-wordpress-on-iphone/</feedburner:origLink></item>
		<item>
		<title>Wordpress app on iPhone</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/4H9nBtlqmak/</link>
		<comments>http://www.jespergarneij.com/2009/02/wordpress-app-on-iphone/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 00:34:58 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.jespergarneij.com/2009/02/08/wordpress-app-on-iphone/</guid>
		<description><![CDATA[I can&#8217;t believe the wordpress app from wordpress themselves doesn&#8217;t...]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t believe the wordpress app from wordpress themselves doesn&#8217;t work but this one does. I can&#8217;t seem to get the other one to work. This one is a bit too simple, but hey&#8230; It works. Shame.</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/02/wordpress-app-on-iphone/&amp;t=Wordpress+app+on+iPhone" 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=Wordpress+app+on+iPhone+-+http://sl.ly/3cfb8&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Wordpress%20app%20on%20iPhone%22&amp;body=Link: http://www.jespergarneij.com/2009/02/wordpress-app-on-iphone/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20can%27t%20believe%20the%20wordpress%20app%20from%20wordpress%20themselves%20doesn%27t%20work%20but%20this%20one%20does.%20I%20can%27t%20seem%20to%20get%20the%20other%20one%20to%20work.%20This%20one%20is%20a%20bit%20too%20simple%2C%20but%20hey...%20It%20works.%20Shame." 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/02/wordpress-app-on-iphone/&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/02/wordpress-app-on-iphone/&amp;title=Wordpress+app+on+iPhone" 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/02/wordpress-app-on-iphone/&amp;title=Wordpress+app+on+iPhone" 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/02/wordpress-app-on-iphone/&amp;title=Wordpress+app+on+iPhone" 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/02/wordpress-app-on-iphone/" 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/02/wordpress-app-on-iphone/&amp;title=Wordpress+app+on+iPhone" 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/02/wordpress-app-on-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2009/02/wordpress-app-on-iphone/</feedburner:origLink></item>
		<item>
		<title>Good info on WWDC 2008 and the iPhone</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/bIN-t_XvW9w/</link>
		<comments>http://www.jespergarneij.com/2008/06/good-info-on-wwdc-2008-and-the-iphone/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 10:48:25 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://analogism.org/?p=517</guid>
		<description><![CDATA[Just wanted to share a tip on how to get...]]></description>
			<content:encoded><![CDATA[<p>Just wanted to share a tip on how to get decent and fun information about the ongoing Apple WWDC (Worldwide Developer Conference) 2008, and of course all the yummy details on the iPhone 3G they revealed yesterday. Check out <a href="http://www.youtube.com/results?search_query=wwdc&#038;partner=1" title="http://www.youtube.com/results?search_query=wwdc&#038;partner=1">this link on YouTube</a>, where I&#8217;ve searched for WWDC and filtered by YouTube partner videos, to get some real info rather than all those BS videos and rumors and what not.</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/2008/06/good-info-on-wwdc-2008-and-the-iphone/&amp;t=Good+info+on+WWDC+2008+and+the+iPhone" 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=Good+info+on+WWDC+2008+and+the+iPhone+-+http://sl.ly/8b85&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Good%20info%20on%20WWDC%202008%20and%20the%20iPhone%22&amp;body=Link: http://www.jespergarneij.com/2008/06/good-info-on-wwdc-2008-and-the-iphone/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Just%20wanted%20to%20share%20a%20tip%20on%20how%20to%20get%20decent%20and%20fun%20information%20about%20the%20ongoing%20Apple%20WWDC%20%28Worldwide%20Developer%20Conference%29%202008%2C%20and%20of%20course%20all%20the%20yummy%20details%20on%20the%20iPhone%203G%20they%20revealed%20yesterday.%20Check%20out%20this%20link%20on%20YouTube%2C%20where%20I%27ve%20searched%20for%20WWDC%20and%20filtered%20by%20YouTube%20p" 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/2008/06/good-info-on-wwdc-2008-and-the-iphone/&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/2008/06/good-info-on-wwdc-2008-and-the-iphone/&amp;title=Good+info+on+WWDC+2008+and+the+iPhone" 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/2008/06/good-info-on-wwdc-2008-and-the-iphone/&amp;title=Good+info+on+WWDC+2008+and+the+iPhone" 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/2008/06/good-info-on-wwdc-2008-and-the-iphone/&amp;title=Good+info+on+WWDC+2008+and+the+iPhone" 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/2008/06/good-info-on-wwdc-2008-and-the-iphone/" 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/2008/06/good-info-on-wwdc-2008-and-the-iphone/&amp;title=Good+info+on+WWDC+2008+and+the+iPhone" 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/2008/06/good-info-on-wwdc-2008-and-the-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2008/06/good-info-on-wwdc-2008-and-the-iphone/</feedburner:origLink></item>
		<item>
		<title>Batch extract RAR archives with Par-N-Rar</title>
		<link>http://feedproxy.google.com/~r/jespergarneij-blog/~3/tOxDpEYJGDk/</link>
		<comments>http://www.jespergarneij.com/2008/06/batch-extract-rar-archives-with-par-n-rar/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 14:48:05 +0000</pubDate>
		<dc:creator>Jesper Garneij</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://analogism.org/?p=515</guid>
		<description><![CDATA[
I just wanted to mention this free piece of software...]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.jespergarneij.com/media/photo/2008/06/080603-par_n_rar.jpg" alt="Screenshot of Par-N-Rar" /></p>
<p>I just wanted to mention this free piece of software called <a href="http://www.milow.net/public/projects/parnrar.html" title="http://www.milow.net/public/projects/parnrar.html">Par-N-Rar</a> for Windows XP that I tried out today. I was looking to uncompress a large number of RAR archives, located in different folders and to extract the files into their original folder, and finally delete the RAR files. This is what this application does, among other things.</p>
<p>You can also have it idling in the background and uncompress any archives you might add to the location you are monitoring, including all its subfolders, and set an update interval for how often you want it to search for updates in the folder structure. Nifty say I.</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/2008/06/batch-extract-rar-archives-with-par-n-rar/&amp;t=Batch+extract+RAR+archives+with+Par-N-Rar" 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=Batch+extract+RAR+archives+with+Par-N-Rar+-+http://sl.ly/f0de6&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Batch%20extract%20RAR%20archives%20with%20Par-N-Rar%22&amp;body=Link: http://www.jespergarneij.com/2008/06/batch-extract-rar-archives-with-par-n-rar/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0AI%20just%20wanted%20to%20mention%20this%20free%20piece%20of%20software%20called%20Par-N-Rar%20for%20Windows%20XP%20that%20I%20tried%20out%20today.%20I%20was%20looking%20to%20uncompress%20a%20large%20number%20of%20RAR%20archives%2C%20located%20in%20different%20folders%20and%20to%20extract%20the%20files%20into%20their%20original%20folder%2C%20and%20finally%20delete%20the%20RAR%20files.%20This%20is%20what%20t" 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/2008/06/batch-extract-rar-archives-with-par-n-rar/&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/2008/06/batch-extract-rar-archives-with-par-n-rar/&amp;title=Batch+extract+RAR+archives+with+Par-N-Rar" 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/2008/06/batch-extract-rar-archives-with-par-n-rar/&amp;title=Batch+extract+RAR+archives+with+Par-N-Rar" 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/2008/06/batch-extract-rar-archives-with-par-n-rar/&amp;title=Batch+extract+RAR+archives+with+Par-N-Rar" 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/2008/06/batch-extract-rar-archives-with-par-n-rar/" 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/2008/06/batch-extract-rar-archives-with-par-n-rar/&amp;title=Batch+extract+RAR+archives+with+Par-N-Rar" 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/2008/06/batch-extract-rar-archives-with-par-n-rar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.jespergarneij.com/2008/06/batch-extract-rar-archives-with-par-n-rar/</feedburner:origLink></item>
	</channel>
</rss>

