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

<channel>
	<title>SCANFF.COM</title>
	<atom:link href="http://scanff.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://scanff.com/wordpress</link>
	<description>- Scanff&#039;s development site</description>
	<lastBuildDate>Mon, 20 Feb 2012 09:11:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>The smallest C program possible</title>
		<link>http://scanff.com/wordpress/2012/02/the-smallest-c-program-possible/</link>
		<comments>http://scanff.com/wordpress/2012/02/the-smallest-c-program-possible/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 00:16:49 +0000</pubDate>
		<dc:creator>scanff</dc:creator>
				<category><![CDATA[Random Discussion]]></category>
		<category><![CDATA[Windows C++ Programming]]></category>

		<guid isPermaLink="false">http://scanff.com/wordpress/?p=299</guid>
		<description><![CDATA[Interestingly the smallest C program you can write in windows is. int main[] = {0xC3}; Basically the same as. #include int main() { return 0; } Also I&#8217;m assuming you are using a X86 processor and the 0xC3 is just a return (RET).]]></description>
			<content:encoded><![CDATA[<p>Interestingly the smallest C program you can write in windows is.</p>
<p><code>int main[] = {0xC3};</code></p>
<p>Basically the same as.</p>
<p><code><br />
#include <stdlib.h></p>
<p>int main()<br />
{<br />
  return 0;<br />
}</code></p>
<p>Also I&#8217;m assuming you are using a X86 processor and the 0xC3 is just a return (RET).</p>
<div class="plus-one-wrap"><g:plusone href="http://scanff.com/wordpress/2012/02/the-smallest-c-program-possible/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://scanff.com/wordpress/2012/02/the-smallest-c-program-possible/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Years of development? Free up your HD!</title>
		<link>http://scanff.com/wordpress/2012/02/years-of-development-free-up-your-hd/</link>
		<comments>http://scanff.com/wordpress/2012/02/years-of-development-free-up-your-hd/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 21:00:18 +0000</pubDate>
		<dc:creator>scanff</dc:creator>
				<category><![CDATA[Random Development]]></category>
		<category><![CDATA[Disk Cleanup]]></category>
		<category><![CDATA[Dos]]></category>

		<guid isPermaLink="false">http://scanff.com/wordpress/?p=285</guid>
		<description><![CDATA[Here&#8217;s a really simple tip for any windows developer frustrated by the clutter created by their old code projects. Use this information at your own risk, if you delete something important don&#8217;t blame me :/ I take no responsibility for any loss! I tend to back up my code by grabbing the folder and dumping [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Here&#8217;s a really simple tip for any windows developer frustrated by the clutter created by their old code projects.  Use this information at your own risk, if you delete something important don&#8217;t blame me :/  I take no responsibility for any loss!</strong></p>
<p>I tend to back up my code by grabbing the folder and dumping it on my backup drive. Unless you&#8217;re a very organized person you may have duplicates of the same project all containing a mega amount of build, object, compiler and other junk files. This was getting a little ridiculous my &#8220;code dump&#8221; folder was over 10GB &#8211; surely source files aren&#8217;t that big!</p>
<p>After browsing around I noticed that the majority of the space was taken up by object, build and the IDE internal files.  I noticed the biggest offender to be Visual Studio, it creates .sdf and .ndb file that can be hundreds of megabytes.  I attempted to manually delete these files but after a few minutes decided to make a tiny little old school DOS script to do the work.</p>
<p>Create a text file with the following script and give it the extension .bat.  Replace %WHEREYOUWANTTOCLEAN% with the location the script needs to start, i.e. <strong>c:\mycode</strong></p>
<p><code><br />
#assume c drive, change if you are cleaning another drive<br />
c:<br />
cd %WHEREYOUWANTTOCLEAN%<br />
del *.sdf /S<br />
del *.obj /S<br />
del *.o /S<br />
del *.d /S<br />
del *.tmp /S<br />
del *.pdb /S<br />
del *.ilk /S<br />
del *.ndb /S<br />
</code></p>
<p>What are these files? Okay here&#8217;s what you&#8217;re deleting :-</p>
<p><strong>.sdf</strong> &#8211; Used and created by Visual Studio this looks like an internal DB file.  The .sdf format is described as.</p>
<p>Compact relational database developed by Microsoft, also known the SQL Server Compact (SQL CE) format; designed for applications that run on mobile devices and desktops; contains the complete database contents and can be up to 4GB in size.</p>
<p>** NOT very &#8220;compact&#8221; though, many I found were 50MB large :/</p>
<p><strong>.obj</strong> &#8211; Compiled Object File</p>
<p>Usually created by Visual Studio, it&#8217;s the binary representation of your source file.  Deleting will just require the project to rebuild it the next time you run.</p>
<p><strong>.o</strong> &#8211; Compiled Object File</p>
<p>Usually created by gcc/mingw, it&#8217;s the binary representation of your source file.  Deleting will just require the project to rebuild it the next time you run.</p>
<p><strong>.d</strong> &#8211; Compiled Object File</p>
<p>Usually created by gcc/mingw, it&#8217;s the binary representation of your source file.  Deleting will just require the project to rebuild it the next time you run.</p>
<p><strong>.tmp</strong> &#8211; temporary files</p>
<p>You should know what these are!</p>
<p><strong>.pdb</strong> &#8211; Program database</p>
<p>This file contains information used when debugging and can get very large.<br />
<strong><br />
ilk</strong> &#8211; Incremental Linking File</p>
<p>Used by Visual Studio when linking the project.  </p>
<p><strong>.ndb</strong> &#8211; Another Visual Studio database file</p>
<p>This looks like another internal database file used by Visual Studio and can get very large.<br />
</em></p>
<p>After deleting these files I recovered 4GB on my hard drive <img src='http://scanff.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I&#8217;m sure there are a bunch of other files that can be safely removed, feel free to comment if you know of any.</p>
<div class="plus-one-wrap"><g:plusone href="http://scanff.com/wordpress/2012/02/years-of-development-free-up-your-hd/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://scanff.com/wordpress/2012/02/years-of-development-free-up-your-hd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FINALLY!!! Here&#8217;s WiiRadio 0.7</title>
		<link>http://scanff.com/wordpress/2011/05/finally-heres-wiiradio-0-7/</link>
		<comments>http://scanff.com/wordpress/2011/05/finally-heres-wiiradio-0-7/#comments</comments>
		<pubDate>Mon, 02 May 2011 18:53:49 +0000</pubDate>
		<dc:creator>scanff</dc:creator>
				<category><![CDATA[WiiRadio]]></category>

		<guid isPermaLink="false">http://scanff.com/wordpress/?p=244</guid>
		<description><![CDATA[It&#8217;s finally here! After months of being sidetracked I&#8217;ve completed version 0.7 which turned into a total code rewrite of WiiRadio. Not to bore everyone with the techie geek talk I&#8217;ll just list all the new features and slap in a video I threw together. It&#8217;s hard to point at the Wii while watching the [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s finally here! After months of being sidetracked I&#8217;ve completed version 0.7 which turned into a total code rewrite of WiiRadio.  Not to bore everyone with the techie geek talk I&#8217;ll just list all the new features and slap in a video I threw together. It&#8217;s hard to point at the Wii while watching the video on a laptop.  I guess I need to invest in some video splitter cables <img src='http://scanff.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>So&#8230;..here are all the goodies!!!</strong></p>
<ul>
<li>Stream searching is now working again</li>
<li>Stream ripping</li>
<li>Basic local playback (SD/USB) of mp3 files ** Currently only FAT partitions</li>
<li>Album Art if the local file has it</li>
<li>Clean up of visuals and a new mix mode</li>
<li>ProjectM Visuals</li>
<li>New skin and skin design allowing lua scripting</li>
<li>And more &#8230;.</li>
</ul>
<p><a href="http://wiiradio.googlecode.com/files/wiiradio_07.zip"><strong>Download Here from google code </strong></a></p>
<p><strong>And here&#8217;s the highly crappy video I put together</strong></p>
<p><object style="height: 265px; width: 425px;"><param name="movie" value="http://www.youtube.com/v/01lo_lZwo24?version=3" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><embed type="application/x-shockwave-flash" width="425" height="265" src="http://www.youtube.com/v/01lo_lZwo24?version=3" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<div class="plus-one-wrap"><g:plusone href="http://scanff.com/wordpress/2011/05/finally-heres-wiiradio-0-7/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://scanff.com/wordpress/2011/05/finally-heres-wiiradio-0-7/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>WiiRadio v0.7 Early Preview Video</title>
		<link>http://scanff.com/wordpress/2010/12/wiiradio-v0-7-early-preview-video/</link>
		<comments>http://scanff.com/wordpress/2010/12/wiiradio-v0-7-early-preview-video/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 19:48:06 +0000</pubDate>
		<dc:creator>scanff</dc:creator>
				<category><![CDATA[WiiRadio]]></category>

		<guid isPermaLink="false">http://scanff.com/wordpress/?p=199</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/wns2pgP4np4?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/wns2pgP4np4?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<div class="plus-one-wrap"><g:plusone href="http://scanff.com/wordpress/2010/12/wiiradio-v0-7-early-preview-video/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://scanff.com/wordpress/2010/12/wiiradio-v0-7-early-preview-video/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WiiRadio 0.7 Update</title>
		<link>http://scanff.com/wordpress/2010/11/wiiradio-0-7-update/</link>
		<comments>http://scanff.com/wordpress/2010/11/wiiradio-0-7-update/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 23:59:45 +0000</pubDate>
		<dc:creator>scanff</dc:creator>
				<category><![CDATA[WiiRadio]]></category>

		<guid isPermaLink="false">http://scanff.com/wordpress/?p=191</guid>
		<description><![CDATA[It&#8217;s been quite a while since I&#8217;ve officially released a version of WiiRadio. Fear not I&#8217;ve been hard at work and should have a new version out before Christmas. New features in the forthcoming version will include: Stream Ripping Local playback of MP3 (seems necessary if we now rip) Local Media Browser for USB/SD New [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been quite a while since I&#8217;ve officially released a version of WiiRadio.  Fear not I&#8217;ve been hard at work and should have a new version out before Christmas.</p>
<p>New features in the forthcoming version will include:
</p>
<ul>
<li>Stream Ripping</li>
<li>Local playback of MP3 (seems necessary if we now rip)</li>
<li>Local Media Browser for USB/SD</li>
<li>New visuals and support for 3rd party visuals</li>
<li>Updated skins with scripting support</li>
<li>Album art</li>
<li>Official Releases for Windows, Linux and possibly Mac (Please contact me if you could help with a Mac build)</li>
<li>A whole bunch of smaller changes you&#8217;ll notice</li>
</ul>
<div id="attachment_192" class="wp-caption aligncenter" style="width: 310px"><a href="http://scanff.com/wordpress/wp-content/uploads/2010/11/wiiradio07.jpg"><img src="http://scanff.com/wordpress/wp-content/uploads/2010/11/wiiradio07-300x225.jpg" alt="wiiradio 0.7 Preview" title="wiiradio 0.7 Preview" width="300" height="225" class="size-medium wp-image-192" /></a><p class="wp-caption-text">wiiradio 0.7 Preview</p></div>
<div class="plus-one-wrap"><g:plusone href="http://scanff.com/wordpress/2010/11/wiiradio-0-7-update/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://scanff.com/wordpress/2010/11/wiiradio-0-7-update/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>PAX Day 2 &#8211;  2010</title>
		<link>http://scanff.com/wordpress/2010/09/pax-day-2-2010/</link>
		<comments>http://scanff.com/wordpress/2010/09/pax-day-2-2010/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 06:16:50 +0000</pubDate>
		<dc:creator>scanff</dc:creator>
				<category><![CDATA[Random Discussion]]></category>

		<guid isPermaLink="false">http://scanff.com/wordpress/?p=116</guid>
		<description><![CDATA[PAX Seattle photo montage 9/4/10 Random pictures from PAX 2010&#8230;.]]></description>
			<content:encoded><![CDATA[<p>PAX Seattle photo montage 9/4/10 </p>
<p>Random pictures from PAX 2010&#8230;.</p>

<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/img_0768-2/' title='Mario &#039;n Friends'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/IMG_07681-150x150.jpg" class="attachment-thumbnail" alt="Mario &#039;n Friends" title="Mario &#039;n Friends" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/image1/' title='Woah'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/Image1-150x150.jpg" class="attachment-thumbnail" alt="Woah" title="Woah" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/attachment/7/' title='Hot equipment ;)'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/7-150x150.jpg" class="attachment-thumbnail" alt="Hot equipment ;)" title="Hot equipment ;)" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/9-4/' title='Don&#039;t Shoot'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/93-150x150.jpg" class="attachment-thumbnail" alt="Don&#039;t Shoot" title="Don&#039;t Shoot" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/attachment/5/' title='Sheppard and Tali&#039;Zorah Nar Rayya'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/5-150x150.jpg" class="attachment-thumbnail" alt="Sheppard and Tali&#039;Zorah Nar Rayya" title="Sheppard and Tali&#039;Zorah Nar Rayya" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/attachment/8/' title='Ears are hot!'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/8-150x150.jpg" class="attachment-thumbnail" alt="Ears are hot!" title="Ears are hot!" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/img_0770-3/' title='Kick some ass!!'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/Img_0770-150x150.jpg" class="attachment-thumbnail" alt="Kick some ass!!" title="Kick some ass!!" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/attachment/4/' title='Ryu'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/4-150x150.jpg" class="attachment-thumbnail" alt="Ryu" title="Ryu" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/img_0763-2/' title='meeow'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/IMG_07631-150x150.jpg" class="attachment-thumbnail" alt="meeow" title="meeow" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/attachment/6/' title='Link'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/6-150x150.jpg" class="attachment-thumbnail" alt="Link playing a shooter !!!" title="Link" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/img_0747-2/' title='Cool'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/IMG_07471-150x150.jpg" class="attachment-thumbnail" alt="Cool" title="Cool" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/attachment/3/' title='Fallout'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/3-150x150.jpg" class="attachment-thumbnail" alt="Fallout, what&#039;s with the T-Rex ?" title="Fallout" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/sw/' title='star wars'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/sw-150x150.jpg" class="attachment-thumbnail" alt="Looks like a big flop. noone was interested in it." title="star wars" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/image2/' title='Microsoft crap'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/Image2-150x150.jpg" class="attachment-thumbnail" alt="Microsoft crap" title="Microsoft crap" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/attachment/10/' title='WTH?'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/10-150x150.jpg" class="attachment-thumbnail" alt="WTH?" title="WTH?" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/img_0749-2/' title='more'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/IMG_07491-150x150.jpg" class="attachment-thumbnail" alt="more" title="more" /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/img_0748-2/' title='more...'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/IMG_07481-150x150.jpg" class="attachment-thumbnail" alt="more..." title="more..." /></a>
<a href='http://scanff.com/wordpress/2010/09/pax-day-2-2010/img_0746-2/' title='More random'><img width="150" height="150" src="http://scanff.com/wordpress/wp-content/uploads/2010/09/IMG_07461-150x150.jpg" class="attachment-thumbnail" alt="More random" title="More random" /></a>

<div class="plus-one-wrap"><g:plusone href="http://scanff.com/wordpress/2010/09/pax-day-2-2010/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://scanff.com/wordpress/2010/09/pax-day-2-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WiiRadio 0.6 Released</title>
		<link>http://scanff.com/wordpress/2010/06/wiiradio-0-6-released/</link>
		<comments>http://scanff.com/wordpress/2010/06/wiiradio-0-6-released/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 07:01:29 +0000</pubDate>
		<dc:creator>scanff</dc:creator>
				<category><![CDATA[WiiRadio]]></category>

		<guid isPermaLink="false">http://scanff.com/wordpress/?p=109</guid>
		<description><![CDATA[I&#8217;ve just released a new version of WiiRadio:- Version 0.6 * More Visuals * Added Icecast Support * Search on stations * Connection to a stream address * Booting from USB support * Widescreen setting * Added ability for user to select visual mix mode or single mode * Bug Fixes Download URL :- http://code.google.com/p/wiiradio/downloads/list]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://wiibrew.org/w/images/4/43/Wiiradio_img.png" title="WiiRadio Logo" class="aligncenter" width="128" height="48" /></p>
<p>I&#8217;ve just released a new version of WiiRadio:-</p>
<p>Version 0.6</p>
<p>    * More Visuals<br />
    * Added Icecast Support<br />
    * Search on stations<br />
    * Connection to a stream address<br />
    * Booting from USB support<br />
    * Widescreen setting<br />
    * Added ability for user to select visual mix mode or single mode<br />
    * Bug Fixes</p>
<p>Download URL :- <a href="http://code.google.com/p/wiiradio/downloads/list">http://code.google.com/p/wiiradio/downloads/list</a></p>
<div class="plus-one-wrap"><g:plusone href="http://scanff.com/wordpress/2010/06/wiiradio-0-6-released/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://scanff.com/wordpress/2010/06/wiiradio-0-6-released/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Progress &#8211; WiiRadio v0.6</title>
		<link>http://scanff.com/wordpress/2010/03/progress-wiiradio-06/</link>
		<comments>http://scanff.com/wordpress/2010/03/progress-wiiradio-06/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 07:15:46 +0000</pubDate>
		<dc:creator>scanff</dc:creator>
				<category><![CDATA[WiiRadio]]></category>

		<guid isPermaLink="false">http://scanff.com/wordpress/?p=100</guid>
		<description><![CDATA[I&#8217;m hoping to get another version of WiiRadio (v0.6) released in the next few weeks. Here&#8217;s a quick summary of the improvements :- .:: Icecast support in browser. ::. .:: Widescreen option ::. .:: Search improvements &#8211; can search for genre, playing song, station or connect to any stream via IP or web address ::.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m hoping to get another version of WiiRadio (v0.6) released in the next few weeks.  Here&#8217;s a quick summary of the improvements :-</p>
<p>.:: Icecast support in browser. ::.<br />
.:: Widescreen option ::.<br />
.:: Search improvements &#8211; can search for genre, playing song, station or connect to any stream via IP or web address ::.</p>
<div class="plus-one-wrap"><g:plusone href="http://scanff.com/wordpress/2010/03/progress-wiiradio-06/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://scanff.com/wordpress/2010/03/progress-wiiradio-06/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>WiiRadio v0.5 Released</title>
		<link>http://scanff.com/wordpress/2010/03/wiiradio-v05-released/</link>
		<comments>http://scanff.com/wordpress/2010/03/wiiradio-v05-released/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 21:20:45 +0000</pubDate>
		<dc:creator>scanff</dc:creator>
				<category><![CDATA[WiiRadio]]></category>

		<guid isPermaLink="false">http://scanff.com/wordpress/?p=96</guid>
		<description><![CDATA[Finally I&#8217;ve put out another version of WiiRadio. Here&#8217;s a list of updates :- Version 0.5 * Skins * Languages * Genre Searching * New visual system * Bug Fixes]]></description>
			<content:encoded><![CDATA[<p>Finally I&#8217;ve put out another version of WiiRadio. Here&#8217;s a list of updates :-</p>
<p>Version 0.5</p>
<p>    * Skins<br />
    * Languages<br />
    * Genre Searching<br />
    * New visual system<br />
    * Bug Fixes </p>
<div class="plus-one-wrap"><g:plusone href="http://scanff.com/wordpress/2010/03/wiiradio-v05-released/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://scanff.com/wordpress/2010/03/wiiradio-v05-released/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>More On WiiRadio v0.5</title>
		<link>http://scanff.com/wordpress/2010/03/more-on-wiiradio-v05/</link>
		<comments>http://scanff.com/wordpress/2010/03/more-on-wiiradio-v05/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 16:32:29 +0000</pubDate>
		<dc:creator>scanff</dc:creator>
				<category><![CDATA[WiiRadio]]></category>

		<guid isPermaLink="false">http://scanff.com/wordpress/?p=93</guid>
		<description><![CDATA[Here&#8217;s a preview of v0.5 which will be out in the next few weeks, The video is focusing on the new visual engine that will be in v0.5.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a preview of v0.5 which will be out in the next few weeks,  The video is focusing on the new visual engine that will be in v0.5.</p>
<p><object style="height: 344px; width: 425px"><param name="movie" value="http://www.youtube.com/v/eF_qhKqPWVc"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/eF_qhKqPWVc" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></object></p>
<div class="plus-one-wrap"><g:plusone href="http://scanff.com/wordpress/2010/03/more-on-wiiradio-v05/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://scanff.com/wordpress/2010/03/more-on-wiiradio-v05/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

