<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><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" version="2.0">

<channel>
	<title>Nito</title>
	
	<link>http://blog.pirelenito.org</link>
	<description>My name is Nito... Pirelenito!</description>
	<pubDate>Sun, 12 Oct 2008 16:53:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/pirelenito" type="application/rss+xml" /><item>
		<title>Java movie playback: JOGL + Fobs4JMF</title>
		<link>http://blog.pirelenito.org/2008/08/java-movie-playback-jogl-fobs4jmf/</link>
		<comments>http://blog.pirelenito.org/2008/08/java-movie-playback-jogl-fobs4jmf/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 23:37:45 +0000</pubDate>
		<dc:creator>nito</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[fast]]></category>

		<category><![CDATA[Fobs4JMF]]></category>

		<category><![CDATA[how to]]></category>

		<category><![CDATA[JMF]]></category>

		<category><![CDATA[JOGL]]></category>

		<category><![CDATA[OpenGL]]></category>

		<category><![CDATA[performance]]></category>

		<category><![CDATA[plugin]]></category>

		<category><![CDATA[RGB]]></category>

		<category><![CDATA[tutorial]]></category>

		<category><![CDATA[VideoRenderer]]></category>

		<guid isPermaLink="false">http://blog.pirelenito.org/?p=12</guid>
		<description><![CDATA[Recently I had to integrate video playback on my job&#8217;s Java OpenGL engine, which uses JOGL.
Java has a support to media playback through it&#8217;s Java Media Framework, which unfortunately, on it&#8217;s current version (2.1.1e) does not support many formats for video playback.
So I quickly looked for alternatives, including IBM Toolkit for mpeg4, that hadn&#8217;t a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://labs.pirelenito.org/experiments/svn/java/MovieGL/" title="SVN Repository" target="_blank"><img class="alignleft size-thumbnail wp-image-14" title="Movie on a Teapot" src="http://blog.pirelenito.org/wp-content/uploads/2008/08/picture-8-150x150.png" alt="" width="150" height="150" /></a>Recently I had to integrate <strong>video playback</strong> on my job&#8217;s <strong>Java OpenGL</strong> engine, which uses <a href="https://jogl.dev.java.net/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/jogl.dev.java.net');">JOGL</a>.</p>
<p>Java has a support to media playback through it&#8217;s <a href="http://java.sun.com/javase/technologies/desktop/media/jmf/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/java.sun.com');">Java Media Framework</a>, which unfortunately, on it&#8217;s current version (2.1.1e) does not support many <a href="http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/formats.html" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/java.sun.com');">formats for video playback</a>.</p>
<p>So I quickly looked for <strong>alternatives</strong>, including <a href="http://www.alphaworks.ibm.com/tech/tk4mpeg4" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/www.alphaworks.ibm.com');">IBM Toolkit for mpeg4</a>, that <strong>hadn&#8217;t a sufficient production performance</strong> I was looking for, and didn&#8217;t offer an easy option for frame grabbing or plugin extensions as JMF does.</p>
<p>Next was <a href="http://fobs.sourceforge.net/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/fobs.sourceforge.net');">Fobs4JMF</a>, which is <strong>JMF + ffmpeg</strong>. This solution was much more interesting, since it offers a <strong>wide variety of codecs</strong> (ogg, mp3, m4a, divx, xvid, h264, mov, etc) and is based on the solid ffmpeg solution to decode audio and video.</p>
<p>My implementation, uses the <strong>plug-in</strong> capabilities of JMF to extend a <strong>custom renderer</strong> that does a pixel type conversion and rendering to a texture:</p>
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/-zh6yDyasSo&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/-zh6yDyasSo&amp;hl=en&amp;fs=1" allowfullscreen="true"></embed></object></div>
<p><span id="more-12"></span></p>
<p>This custom renderer works with <strong>RGB textures</strong>, a type I seemed to make work on my two test machines:</p>
<ul>
<li>MacBook with a Integ GMA x3100 - Leopard;</li>
<li>PC with a Radeon x600 - Debian.</li>
</ul>
<p>You might wanna <strong>try different<em> pixel types</em></strong> to increase the performance for different target machines.</p>
<p>First, lets describe <strong>how the Renderer works:</strong></p>
<p>It got to be an <strong>implementation</strong> of a <em>javax.media.renderer.VideoRenderer</em> since it will be installed as a <strong>plugin on JMF</strong>.</p>
<p>For the different methods we need to implement, there are a few we need to take proper care of:</p>
<ul>
<li><strong>process</strong>: this is the method JMF calls passing the movie current frame buffer. Here we treat this buffer and leave it in a way we can latter render in OpenGL;</li>
<li><strong>getSupportedInputFormats</strong>: we return RGBFormat, our target texture format;</li>
<li><strong>setInputFormat</strong>: here we simply tell JMF that the format it chooses is the one we want. Since RGB was the only one we returned as supported there is not much to do here as well.</li>
<li><strong>getName</strong>: returns the renderer neat name!</li>
</ul>
<p>Next we need a <strong>way</strong> to <strong>access</strong> this <strong>render</strong> from the outside of the <em>JMF world</em>, we need the texture so that we can do <strong>GL calls</strong> with it (teapot). For this purpose our class must also be a <em>javax.media.Control</em>. Then we can easily get it through an <em>getControl</em> call as:</p>
<blockquote><p>player.getControl(&#8221;javax.media.renderer.VideoRenderer&#8221;);</p></blockquote>
<p>So we implement:</p>
<ul>
<li><strong>getControl</strong>: returns it&#8217;s instance;</li>
<li><strong>getControls</strong>: returns an array containing only it&#8217;s instance as a valid control.</li>
</ul>
<p>The renderer <strong>implementation</strong> is <em>org.pirelenito.multimedia.jmf.plugin.RGBGLTextureRenderer</em> that you can check on the <strong>source code </strong>attachment bellow.</p>
<p>And also, to make further development easy, there is an IGLTextureRenderer interface with the public methods called by the Canvas:</p>
<ul>
<li><strong>render</strong>: that plots the buffer on the texture surface;</li>
<li><strong>getTexture</strong>: to retrieve the texture instance.</li>
</ul>
<p>Last but not least important, you need to <strong>register the render</strong> on JMF using the <strong>JMFRegistry</strong> application. The easiest way to do start it is <strong>through Eclipse</strong>, since we will need our custom render on the <strong>class path</strong>:</p>
<ul>
<li> Create a new run configuration;</li>
<li>Set the main class as: JMFRegistry;</li>
<li>Start and go to the Plugins tab then Renderer;</li>
<li>Add the org.pirelenito.multimedia.jmf.plugin.RGBGLTextureRenderer;</li>
<li>Move it to the top of the list;</li>
<li>Push Commit and you are good to go!</li>
</ul>
<p>To test it out there is also a helper class to instantiate the movie player, and the Main class which is an OpenGL canvas, to render the teapot with the texture on its surface.</p>
<p>I am not very experienced with OpenGL, so there might be <strong>more effitient ways</strong> to do this using, for instance <strong>PBO</strong> (Pixel Buffer Object), if you have any question or suggestions on how to improve this, don&#8217;t hesitate on drooping a comment!</p>
<p><del datetime="2008-08-21T14:37:12+00:00">Here is the Eclipse project. You will need to download a few dependencies, check the Readme for more information.</del></p>
<p><strong>Update:</strong> I wasn&#8217;t properly initializing the Texture. and since I want to add support for more pixel formats, it is easy for you to checkout the updated Eclipse project at: <a href="http://labs.pirelenito.org/experiments/svn/java/MovieGL/">http://labs.pirelenito.org/experiments/svn/java/MovieGL/</a><del datetime="2008-08-21T20:34:00+00:00"> latter this afternoon</del> now.</p>
<p><strong>Update 2:</strong> Added the <a href="http://labs.pirelenito.org/experiments/svn/java/MovieGL/" target="_blank">repository link</a> on the image above.</p>
<p>Cheers! <img src='http://blog.pirelenito.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pirelenito.org/2008/08/java-movie-playback-jogl-fobs4jmf/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Joss Whedon’s “Dr. Horrible Sing Along Blog”</title>
		<link>http://blog.pirelenito.org/2008/07/joss-whedons-dr-horrible-sing-along-blog/</link>
		<comments>http://blog.pirelenito.org/2008/07/joss-whedons-dr-horrible-sing-along-blog/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 23:36:53 +0000</pubDate>
		<dc:creator>nito</dc:creator>
		
		<category><![CDATA[Movies]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[Dr Horrible]]></category>

		<category><![CDATA[indie]]></category>

		<category><![CDATA[Joss Whedon]]></category>

		<category><![CDATA[movie]]></category>

		<category><![CDATA[musical]]></category>

		<guid isPermaLink="false">http://blog.pirelenito.org/?p=13</guid>
		<description><![CDATA[Joss Whedon, creator of Firefly, Buffy, Angel&#8230; is intending to make some noise on the Internet, as he says
&#8221; It is time for us to change the face of Show Business as we know it.&#8221;
Dr. Horrible, a three act musical made by him and some friends will be broadcasted for free on the internet from [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.drhorrible.com" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/www.drhorrible.com');"><img class="alignleft" style="float: left;" src="http://www.drhorrible.com/images/banners/vertical.gif" alt="Dr. Horrible" width="120" height="240" /></a><a href="http://www.imdb.com/name/nm0923736/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/www.imdb.com');">Joss Whedon</a>, creator of Firefly, Buffy, Angel&#8230; is intending to make some <strong>noise</strong> on the <strong>Internet</strong>, as he says</p>
<p>&#8221; It is time for us to <strong>change</strong> the face of <strong>Show Business</strong> as we know it.&#8221;</p>
<p><strong>Dr. Horrible</strong>, a three act musical made by him and some friends will be <strong>broadcasted for free</strong> on the internet from today <strong>till the 20th of this month</strong> an then will be available for purchase :</p>
<p>&#8220;We intend to make it available for download soon after it’s published. This would be for a nominal fee, which we’re hoping people will embrace instead of getting all piratey.&#8221;</p>
<p>Kinda of an interesting method of marketing, you get to <strong>&#8220;taste&#8221; it,</strong> and if you like it, you can have it. <strong>Very indie</strong>, and pretty much <strong>mimics</strong> the way everyone <strong>whose is not in the industry</strong> do to get their work some <strong>attention</strong>, (despite the taking away of air part).</p>
<p>So if you wanna watch it for free, <a href="http://www.drhorrible.com" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/www.drhorrible.com');">check it out</a>:</p>
<ul>
<li>Act 1 is already up;</li>
<li>Act 2 &#8220;airs&#8221; tomorrow (17th July);</li>
<li>Act 3 &#8220;airs&#8221; Saturday (19th July)</li>
</ul>
<p>On the 20th it will be gone!</p>
<p>And let&#8217;s see how far this goes! <strong>Good luck Mr Whedon</strong>!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pirelenito.org/2008/07/joss-whedons-dr-horrible-sing-along-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fixing Wii noisy drive.</title>
		<link>http://blog.pirelenito.org/2008/07/fixing-wii-noisy-drive/</link>
		<comments>http://blog.pirelenito.org/2008/07/fixing-wii-noisy-drive/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 01:51:36 +0000</pubDate>
		<dc:creator>nito</dc:creator>
		
		<category><![CDATA[Hacks]]></category>

		<category><![CDATA[Wii]]></category>

		<category><![CDATA[disk drive]]></category>

		<category><![CDATA[fixed]]></category>

		<category><![CDATA[hack]]></category>

		<category><![CDATA[noisy]]></category>

		<guid isPermaLink="false">http://blog.pirelenito.org/?p=9</guid>
		<description><![CDATA[It&#8217;s been more than 6 months that my Wii was producing an awful lawn mower sound in the disk drive, and I finally decided to open it up and &#8220;try&#8221; to fix the problem.
Since I&#8217;ve seen other people with similar problems on YouTube, such as:

I decided to put my experience on how I fixed it.
You [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been more than 6 months that my <strong>Wii</strong> was producing an awful <a href="http://en.wikipedia.org/wiki/Lawn_mower" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/en.wikipedia.org');">lawn mower</a> sound in the <strong>disk drive</strong>, and I finally decided to <strong>open it up</strong> and &#8220;try&#8221; to <strong>fix</strong> the problem.</p>
<p>Since I&#8217;ve seen other people with <strong>similar problems</strong> on YouTube, such as:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/12-NW8SEnME&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/12-NW8SEnME&amp;hl=en&amp;fs=1" allowfullscreen="true"></embed></object></p>
<p>I decided to put my experience on how <strong>I fixed it</strong>.</p>
<p>You will need <strong>Nintendo screwdriver</strong>, which you can easily find on eBay.</p>
<p>I&#8217;ve used the following video as a guide during the <strong>disassembling</strong> of my console:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/g8epujddQTc&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/g8epujddQTc&amp;hl=en&amp;fs=1" allowfullscreen="true"></embed></object></p>
<p>Now how I did it:</p>
<p>There is <strong>one screw above your Wii&#8217;s drive</strong> that is right above the power button, <strong>loose it a little</strong> and <strong>stick something</strong> to level the plate a little bit up. You can <strong>test</strong> this with your Wii still opened until you <strong>don&#8217;t hear that noise</strong> anymore.</p>
<p>Here is a front picture of my fixed Wii (<a href="http://www.flickr.com/photos/pirelenito/2665570671/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.flickr.com');">follow the link to see the Flickr notes</a>):</p>
<p><a href="http://www.flickr.com/photos/pirelenito/2665570671/" title="Front of my Wii open. by pirelenito, on Flickr" onclick="javascript:pageTracker._trackPageview ('/outbound/www.flickr.com');"><img src="http://farm4.static.flickr.com/3114/2665570671_0d7dbdfe0b_m.jpg" alt="Front of my Wii open." width="240" height="180" /></a></p>
<p>I should have taken a picture from above, but I was too happy that the problem was gone, that I just remember to register how I did it after most of my Wii had been put back together already.</p>
<p>Hope it helps someone!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pirelenito.org/2008/07/fixing-wii-noisy-drive/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nokia 5200 + iSync</title>
		<link>http://blog.pirelenito.org/2008/07/nokia-5200-isync/</link>
		<comments>http://blog.pirelenito.org/2008/07/nokia-5200-isync/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 01:25:02 +0000</pubDate>
		<dc:creator>nito</dc:creator>
		
		<category><![CDATA[Hacks]]></category>

		<category><![CDATA[Mac]]></category>

		<category><![CDATA[hack]]></category>

		<category><![CDATA[iCal]]></category>

		<category><![CDATA[iSync]]></category>

		<category><![CDATA[leopard]]></category>

		<category><![CDATA[macos]]></category>

		<category><![CDATA[Nokia 5200]]></category>

		<guid isPermaLink="false">http://blog.pirelenito.org/?p=7</guid>
		<description><![CDATA[Finally I decided to Sync my Nokia 5200 with my Mac&#8217;s Calendar and Address Book software, the problem is that according to Nokia&#8217;s web site, there is no support for this device.
Being aware that this phone is basically a Series 60 device, I searched the web and find an easy hack, on how to get [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-8" title="iSync" src="http://blog.pirelenito.org/wp-content/uploads/2008/07/isync.png" alt="" width="128" height="128" />Finally I decided to <strong>Sync</strong> my <strong>Nokia 5200</strong> with my <strong>Mac</strong>&#8217;s <strong>Calendar</strong> and <strong>Address Book </strong>software, the problem is that according to Nokia&#8217;s web site, <a href="http://europe.nokia.com/A4299040" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/europe.nokia.com');">there is no support for this device</a>.</p>
<p>Being aware that this phone is basically a <strong>Series 60</strong> device, I searched the web and find <a href="http://discussions.europe.nokia.com/discussions/board/message?board.id=phones&amp;message.id=19457" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/discussions.europe.nokia.com');">an easy hack</a>, on how to get things working. Credits go to <a href="http://laiwebdejuan.50webs.com/" class="item-value item-value-link" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/laiwebdejuan.50webs.com');">http://laiwebdejuan.50webs.com</a>.</p>
<p>Here how it goes:</p>
<p>You will need to <strong>fake your phone as a 6131</strong> to the iSync software:</p>
<ul>
<li>Open a Finder window, then right clink on <strong>iSync&#8217;s package</strong> on the Applications folder and select &#8220;Show Package <strong>Contents</strong>&#8220;;</li>
<li>Then go to the folder: <em>Contents/PlugIns/ApplePhoneConduit.syncdevice/Contents/Plugins</em>;</li>
<li>Right click on the <em><strong>Nokia-6131.phoneplugin</strong></em> file and select &#8220;Show Package Contents&#8221;;</li>
<li>Then go to the folder: <em>Contents/Resources</em> and edit the file <em>MetaClasses.plist</em> with TextEdit;</li>
<li>Search and replace for all &#8220;6131&#8243; occurrences for &#8220;5200&#8243; and that is it.</li>
</ul>
<p>He also pointed that you can change the icon for the device by putting a .tiff file on that folder: <em>com.nokia.5200.tiff</em>.</p>
<p>Thanks <a href="http://discussions.europe.nokia.com/discussions/profile?user.id=41219" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/discussions.europe.nokia.com');">Juan</a> for that tip!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pirelenito.org/2008/07/nokia-5200-isync/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Vrummm!</title>
		<link>http://blog.pirelenito.org/2008/06/vrummm/</link>
		<comments>http://blog.pirelenito.org/2008/06/vrummm/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 03:15:48 +0000</pubDate>
		<dc:creator>nito</dc:creator>
		
		<category><![CDATA[Movies]]></category>

		<category><![CDATA[awesome]]></category>

		<category><![CDATA[movie]]></category>

		<category><![CDATA[review]]></category>

		<category><![CDATA[speed racer]]></category>

		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://blog.pirelenito.org/?p=4</guid>
		<description><![CDATA[Some time ago, I saw a movie&#8230; that blow away my mind, and kinda turn into an personal obsession for the past month&#8230; that movie is Speed Racer, brilliantly composed by the Wachowski Brothers.

I just thought maybe a review could wipe-away my friends preconceptions about this movie, which is truly a Live Action Anime. I [...]]]></description>
			<content:encoded><![CDATA[<p>Some time ago, I saw a movie&#8230; <strong>that blow away my mind</strong>, and kinda turn into an personal obsession for the past month&#8230; that movie is Speed Racer, <strong>brilliantly</strong> <strong>composed</strong> by the Wachowski Brothers.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/_vJlADxbv4U&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/_vJlADxbv4U&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>I just thought maybe a review could wipe-away my friends <strong>preconceptions</strong> about this movie, which is truly a <strong>Live Action Anime</strong>. I mean, if you like animes, there is no reason you would not like this movie.</p>
<p><span id="more-4"></span></p>
<p>I myself <strong>wasn&#8217;t believing</strong> in the movie in the first place, I guess mostly because of the <strong>Trailers</strong> used to promote it. My first impressions wore that the movie would going to be <strong>very good or very bad</strong>. Most people I guess took the second for granted and for no apparent reason decided to discredit the movie (before even watching it).</p>
<p>Another motivation on writing this review is also due to the amount of bad/mediocre movies I&#8217;ve watched in the past few days. The last, Get Smat, was a truly pain to watch.</p>
<p>Back to Speed Racer:</p>
<p>Visually the movie is <strong>gorgeous</strong>, a truly <strong>work of art</strong>, pop art I must say <img src='http://blog.pirelenito.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Also loved the way <strong>editing</strong> was done, <strong>mixing</strong> for instance time <strong>past and present</strong> while telling Rex Racer Story and Speed&#8217;s childhood with Speed&#8217;s win at Thunderhead. Stuff like that are very <strong>common on Animes</strong>!</p>
<p><strong>Chills provoking soundtrack</strong>, composed by <a href="http://www.last.fm/music/Michael+Giacchino" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/www.last.fm');">Michal Giancchino</a> (the guy responsible for &#8220;The Incridbles&#8221;), get it&#8217;s at it&#8217;s best on the last race (<strong>Reboot track</strong>). Buy it!!!</p>
<p>The movie sure is <strong>cheesy</strong>, but that is it&#8217;s purpose! Watching it took me back to my <strong>childhood</strong>, when I myself used to &#8220;act/play&#8221; japanese animes with my brother, just like Spritle and Chim-Chim.</p>
<p>Mostly a <strong>big boys movie</strong>, with great replay value (I mean, I watched 3 times) and <strong>outstanding visual effects</strong>&#8230; if you missed it&#8230; please at least get in HD!</p>
<p>Next, a fan video, that show how EPIC this movie is:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/iSvsCDUYGwQ&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/iSvsCDUYGwQ&amp;hl=en"></embed></object></p>
<p>Go Speed Racer Go! Vrummm!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pirelenito.org/2008/06/vrummm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blog blog blog! pirelenito.org!</title>
		<link>http://blog.pirelenito.org/2008/06/blog-blog-blog-pirelenitoorg/</link>
		<comments>http://blog.pirelenito.org/2008/06/blog-blog-blog-pirelenitoorg/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 03:10:35 +0000</pubDate>
		<dc:creator>nito</dc:creator>
		
		<category><![CDATA[Random thoughts]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[hello world]]></category>

		<guid isPermaLink="false">http://blog.pirelenito.org/?p=5</guid>
		<description><![CDATA[New blog&#8230; This is my third, now with a personal domain and a Linode, which I share with my friend from blog.tinsuke.com.
Hope to get some personal projects and random thoughts to be posted here! All on games, programing, movies, photography, chocolate and Coca Cola!
No big pretentious, just a place to dump my thoughts and to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>New blog</strong>&#8230; This is my third, now with a personal domain and a <a href="http://linode.com" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/linode.com');">Linode</a>, which I share with my friend from <a href="http://blog.tinsuke.com" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/blog.tinsuke.com');">blog.tinsuke.com</a>.</p>
<p>Hope to get some <strong>personal projects</strong> and random <strong>thoughts</strong> to be posted here! All on <strong>games</strong>, <strong>programing</strong>, <strong>movies</strong>, <strong>photography</strong>, chocolate and Coca Cola!</p>
<p>No big pretentious, just a place to <strong>dump my thoughts</strong> and to get eventually some <strong>discussion</strong>!</p>
<p>So, be my guest!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pirelenito.org/2008/06/blog-blog-blog-pirelenitoorg/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
