<?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>mindless ramblings &#187; Tech</title>
	<atom:link href="http://soowei.com/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://soowei.com</link>
	<description>There's only music so that there's new ringtones</description>
	<lastBuildDate>Thu, 27 Nov 2008 07:40:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Streaming mkv in Mediatomb to PS3</title>
		<link>http://soowei.com/2008/11/27/streaming-mkv-in-mediatomb-to-ps3/</link>
		<comments>http://soowei.com/2008/11/27/streaming-mkv-in-mediatomb-to-ps3/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 07:40:25 +0000</pubDate>
		<dc:creator>Soo Wei</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://soowei.com/?p=199</guid>
		<description><![CDATA[Mediatomb is a great UPnP server that generally works with the PS3. Regular AVIs seem to work but MKV support out of the box is not very good.
Here&#8217;s how I got MKVs transcoding in real time to the PS3 (with 5.1 passthrough!) on Ubuntu 8.10 Intrepid Ibex.

Install Mediatomb
Install ffmpeg
Make sure you are using the *-unstripped [...]]]></description>
			<content:encoded><![CDATA[<p>Mediatomb is a great UPnP server that generally works with the PS3. Regular AVIs seem to work but MKV support out of the box is not very good.</p>
<p>Here&#8217;s how I got MKVs transcoding in real time to the PS3 (with 5.1 passthrough!) on Ubuntu 8.10 Intrepid Ibex.</p>
<ul>
<li>Install Mediatomb</li>
<li>Install ffmpeg</li>
<li>Make sure you are using the *-unstripped libs as dependencies for ffmpeg (See <a href="https://bugs.launchpad.net/medibuntu/+bug/269997" target="_blank">here</a> for details)</li>
<li>Follow the instructions <a href="http://blog.sorenmunk.dk/2008/09/ps3-media-center-finally-working-with.html">here</a> and <a href="http://en.gentoo-wiki.com/wiki/MediaTomb">here</a> to setup basic support for the PS3.</li>
</ul>
<p>Edit /usr/bin/mediatomb-transcode-video with your favorite text editor. This is the script that I am using:</p>
<pre>#!/bin/bash</pre>
<pre>FFMPEG_PATH="/usr/bin/ffmpeg"
INPUT="$1"
OUTPUT="$2"
VIDEO_CODEC="mpeg2video"
VIDEO_BITRATE="4096k"
VIDEO_FRAMERATE="25"
AUDIO_CODEC="copy"
FORMAT="mpegts"</pre>
<pre>exec "${FFMPEG_PATH}" -i "${INPUT}" -vcodec ${VIDEO_CODEC} -b ${VIDEO_BITRATE} \
-r ${VIDEO_FRAMERATE} -acodec ${AUDIO_CODEC} -f ${FORMAT} - &gt; "${OUTPUT}"</pre>
<p>Notes:</p>
<ul>
<li>The audio codec is set to &#8220;copy&#8221;. This simply forwards whatever audio stream is present. This successfully forward Dolby Digital 5.1 to the PS3, through the TV and out to the speakers!</li>
<li>The format can one of several things. It was originally set to &#8220;dvd&#8221; but that caused buffer underflow errors to spew forth during transcoding. &#8220;mpegts&#8221; seems to maintain compatibility but without the errors.</li>
<li>I&#8217;m not sure if the framerate is truly neccessary.</li>
<li>I tried using 8192k as the bitrate but it didn&#8217;t seem to make a big difference.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://soowei.com/2008/11/27/streaming-mkv-in-mediatomb-to-ps3/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Concert tracking</title>
		<link>http://soowei.com/2007/04/03/concert-tracking/</link>
		<comments>http://soowei.com/2007/04/03/concert-tracking/#comments</comments>
		<pubDate>Tue, 03 Apr 2007 15:27:41 +0000</pubDate>
		<dc:creator>Soo Wei</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://soowei.com/2007/04/03/concert-tracking/</guid>
		<description><![CDATA[I was so annoyed by the fact that I have missed out on so many good acts that I turned to the good old Google. A quick search turns up this simple to use concert tracker called tourfilter. Just enter in the bands you want to see, and you&#8217;ll get emailed when something turns up [...]]]></description>
			<content:encoded><![CDATA[<p>I was so annoyed by the fact that I have missed out on so many good acts that I turned to the good old Google. A quick search turns up this simple to use concert tracker called <a href="http://vancouver.tourfilter.com/" title="tourfilter" target="_blank">tourfilter</a>. Just enter in the bands you want to see, and you&#8217;ll get emailed when something turns up (I think!). They do have an RSS feed too, so you can just subscribe to that and hopefully it gets updated.</p>
<p>Here&#8217;s <a href="http://vancouver.tourfilter.com/users/soowei" title="my tourfilter list" target="_blank">my list</a> if anyone is interested.</p>
]]></content:encoded>
			<wfw:commentRss>http://soowei.com/2007/04/03/concert-tracking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wii: Total costs incurred</title>
		<link>http://soowei.com/2007/02/08/wii-total-costs-incurred/</link>
		<comments>http://soowei.com/2007/02/08/wii-total-costs-incurred/#comments</comments>
		<pubDate>Fri, 09 Feb 2007 06:54:41 +0000</pubDate>
		<dc:creator>Soo Wei</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://soowei.com/2007/02/08/wii-total-costs-incurred/</guid>
		<description><![CDATA[EDIT: Added Guitar Hero 3
So it occurred to me that it might be useful to keep a running tab of how much I have spent on the Nintendo Wii so far&#8230; all prices are after tax.
As of January 23rd 2008, here are the items so far&#8230;

Console (Futureshop.ca) &#8211; $330
Wiimote (Nintendo Canada) &#8211; $50
Nunchuk (Wal Mart) [...]]]></description>
			<content:encoded><![CDATA[<p>EDIT: Added Guitar Hero 3</p>
<p>So it occurred to me that it might be useful to keep a running tab of how much I have spent on the Nintendo Wii so far&#8230; all prices are after tax.</p>
<p>As of January 23rd 2008, here are the items so far&#8230;</p>
<ol>
<li>Console (<a href="http://www.futureshop.ca/" target="_blank" title="Future Shop">Futureshop.ca</a>) &#8211; <strong>$330</strong></li>
<li>Wiimote (<a href="http://www.nintendo.ca/" target="_blank" title="Nintendo Canada">Nintendo Canada</a>) &#8211; <strong>$50</strong></li>
<li>Nunchuk (<a href="http://www.walmart.com/" target="_blank" title="Wal Mart">Wal Mart</a>) &#8211; <strong>$25 (USD$21)</strong></li>
<li>Zelda: Twilight Princess + Wario Ware (<a href="http://www.amazon.ca/" target="_blank" title="Amazon.ca">Amazon.ca</a>) &#8211; <strong>$122</strong></li>
<li>Linksys Wireless Router WRT54GL (<a href="http://www.ncix.com/" target="_blank" title="NCIX">NCIX</a>) &#8211; <strong>$65 after $20 MIR</strong></li>
<li>1GB OCZ SD card (<a href="http://www.ncix.com/" target="_blank" title="NCIX">NCIX</a>) &#8211; <strong>$7.50 after MIR</strong></li>
<li>Wii component cables (<a href="http://www.play-asia.com/" target="_blank" title="Play-Asia">Play-Asia</a>) &#8211; <strong>$16</strong></li>
<li>Guitar Hero 3 (<a href="http://www.bestbuy.ca">Bestbuy.ca</a>) &#8211; <strong>$102</strong></li>
</ol>
<p><strong>Grand Total: $615.50</strong></p>
<p>The total so far seems high, but when you compare with a PS3 at $699 right now, it really doesn&#8217;t seem that bad, considering I have 2 games and an extra controller already. The controllers are mightily expensive at $75 for a single set!</p>
]]></content:encoded>
			<wfw:commentRss>http://soowei.com/2007/02/08/wii-total-costs-incurred/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu 6.06 and VMware Workstation</title>
		<link>http://soowei.com/2006/06/02/ubuntu-606-and-vmware-workstation/</link>
		<comments>http://soowei.com/2006/06/02/ubuntu-606-and-vmware-workstation/#comments</comments>
		<pubDate>Fri, 02 Jun 2006 20:47:09 +0000</pubDate>
		<dc:creator>Soo Wei</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://soowei.com/2006/06/02/ubuntu-606-and-vmware-workstation/</guid>
		<description><![CDATA[After lots of tinkering around, I&#8217;ve finally got Ubuntu 6.06 (Dapper Drake)  to work more or less properly in VMware Workstation 5.5.1. The actual installation is quite easy, you just create a new virtual machine, allocate some space for it and off you go. It&#8217;s just like a real install on a physical system. [...]]]></description>
			<content:encoded><![CDATA[<p>After lots of tinkering around, I&#8217;ve finally got <a target="_blank" title="Ubuntu" href="http://www.google.ca/url?sa=U&#038;start=1&#038;q=http://www.ubuntu.com/&#038;e=9797">Ubuntu 6.06 (Dapper Drake)</a>  to work more or less properly in <a target="_blank" title="VMware Workstation" href="http://www.vmware.com/products/ws/">VMware Workstation 5.5.1</a>. The actual installation is quite easy, you just create a new virtual machine, allocate some space for it and off you go. It&#8217;s just like a real install on a physical system. I like the new install, you actually do it through the Live CD for the desktop edition so it&#8217;s all graphical. No command-line to scare people off here.</p>
<p>The difficult part is installing VMware Tools in order to take advantage of the features like Shared Folders and mouse movement between the physical and virtual OSes. The main problem is that VMware Tools only recognizes Xorg 6 and below. As Dapper uses Xorg 7, the installation is unable to detect the proper version and it&#8217;s not fully installed.</p>
<p>Thankfully, some searching on the Ubuntu forums led a method that works! It&#8217;s located <a target="_blank" title="VMware tools fix" href="http://www.clendenen.net/index.php?option=com_content&#038;task=view&#038;id=14&#038;Itemid=28">here</a> and although its actually written for Fedora Core 5, it should work for Ubuntu too since both use Xorg 7. Make sure you do the final step in order to enable auto-moving between OSes and mousewheel scrolling.<br />
Would I use it as my main desktop? I&#8217;m not sure. Ubuntu is secure, speedy and there are Linux versions of pretty much every Windows application so migrating is not a big issue. The main problem for me would be games. I could pretty much run Linux-everything except for games so I guess this method will have to suffice for me (or maybe dual-boot). I wouldn&#8217;t mind dual-booting actually but I&#8217;m just wary of losing all my data when repartitioning&#8230; cos that would be an unmitigated disaster!  <img src='http://soowei.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://soowei.com/2006/06/02/ubuntu-606-and-vmware-workstation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OMGWTFBBQ Youtube h4X0red?</title>
		<link>http://soowei.com/2006/06/01/omgwtfbbq-youtube-h4x0red/</link>
		<comments>http://soowei.com/2006/06/01/omgwtfbbq-youtube-h4x0red/#comments</comments>
		<pubDate>Fri, 02 Jun 2006 06:13:48 +0000</pubDate>
		<dc:creator>Soo Wei</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://soowei.com/2006/06/01/omgwtfbbq-youtube-h4x0red/</guid>
		<description><![CDATA[Tried to view some youtube videos just now but got this instead. The picture says it all really&#8230; but in case you don&#8217;t get it here&#8217;s some help. It gets better&#8230; checked back a couple of minutes later and it appears a lot of people have utterly no clue what&#8217;s going on, thus the 3 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://soowei.com/?pp_album=main&amp;pp_cat=misc&amp;pp_image=youtube.jpg" title="youtube"><img src="http://soowei.com/wp-content/photos/thumb_youtube.jpg" class="alignleft" alt="youtube" width="130" height="65" /></a><a href="http://soowei.com/?pp_album=main&amp;pp_cat=misc&amp;pp_image=youtube2.jpg" title="youtube2"><img src="http://soowei.com/wp-content/photos/thumb_youtube2.jpg" class="alignleft" alt="youtube2" width="130" height="46" /></a>Tried to view some <a target="_blank" title="youtube" href="http://www.youtube.com">youtube</a> videos just now but got this instead. The picture says it all really&#8230; but in case you don&#8217;t get it <a target="_blank" title="All your base are belong to us" href="http://en.wikipedia.org/wiki/All_your_base_are_belong_to_us">here&#8217;s some help</a>. It gets better&#8230; checked back a couple of minutes later and it appears a lot of people have utterly no clue what&#8217;s going on, thus the 3 updates. I suppose only the geeks would understand. Wait a minute that means I&#8217;m a geek!  <img src='http://soowei.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://soowei.com/2006/06/01/omgwtfbbq-youtube-h4x0red/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wal-Mart and DivX</title>
		<link>http://soowei.com/2006/05/31/wal-mart-and-divx/</link>
		<comments>http://soowei.com/2006/05/31/wal-mart-and-divx/#comments</comments>
		<pubDate>Wed, 31 May 2006 08:06:44 +0000</pubDate>
		<dc:creator>Soo Wei</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://soowei.com/2006/05/31/wal-mart-and-divx/</guid>
		<description><![CDATA[I was shopping with my parents at Wal-Mart this afternoon and I noticed that their newest generic Diamond Vision DVD player supports DivX! The model number is DVDV816X (or DVD V816X) and it&#8217;s a slim black unit. It comes with the regular outputs like component/s-video/RCA for the video, and coaxial/RCA for the sound. Not bad [...]]]></description>
			<content:encoded><![CDATA[<p>I was shopping with my parents at Wal-Mart this afternoon and I noticed that their newest generic Diamond Vision DVD player supports <a title="DivX" target="_blank" href="http://www.divx.com/">DivX</a>! The model number is DVDV816X (or DVD V816X) and it&#8217;s a slim black unit. It comes with the regular outputs like component/s-video/RCA for the video, and coaxial/RCA for the sound. Not bad for $39!</p>
<p><strong>General Playback</strong><br />
The player appears to use a Sunplus chipset which is not flashable (damn!), but the DivX support seems good, the couple of videos I tried (<a title="Top Gear" target="_blank" href="http://www.google.ca/url?sa=U&#038;start=1&#038;q=http://www.topgear.com/&#038;e=9797">Top Gear</a>, <a title="Wedding Crashers (IMDB)" target="_blank" href="http://www.google.ca/url?sa=U&#038;start=1&#038;q=http://www.imdb.com/title/tt0396269/&#038;e=9797">Wedding Crashers</a>, <a title="Bourne Identity (IMDB)" target="_blank" href="http://www.google.ca/url?sa=U&#038;start=1&#038;q=http://www.imdb.com/title/tt0258463/&#038;e=9797">Bourne Identity</a>) all worked great, although sometimes it would display a corrupted image during Top Gear playback. No idea if it was a bad burn or an error by the player but not a big deal.</p>
<p><strong>Subtitle support</strong><br />
.idx + .sub files don&#8217;t seem to work. Although .srt files work, they are a pain to work with anyway if you converting from .sub as you have to run through an long process of <a target="_blank" title="Optical character recognition" href="http://en.wikipedia.org/wiki/Optical_character_recognition">OCR</a> using <a target="_blank" title="VobSub" href="http://www.free-codecs.com/download/VobSub.htm">SubResync</a> or <a target="_blank" title="SubRip" href="http://zuggy.wz.cz/dvd.php">SubRip</a>. The only option I can think of is to hardcode the subs into the .avi file.</p>
<p>They had a Philips player nearby which was on sale for $59 (down from $79). This might be a better deal for $20 more, especially since you can get firmware upgrades from Philips and modified ones off websites. I&#8217;m pretty happy with this though, if I could get subtitle support to work right it would be perfect!</p>
<p class="alert"><strong>UPDATE:</strong> Almost a month into ownership and it&#8217;s not going so well. It&#8217;s having huge problems reading certain DVDs that I burnt. The DVDs skip every few seconds and sometimes it just plain stops. DVDs containing .avi files do just as badly, with some files refusing to even play. The same DVDs (good quality Taiyo Yudens BTW) work great on my older dying DVD player and the PC so I guess it&#8217;s the fault of the player. Gonna return it and get the Philips instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://soowei.com/2006/05/31/wal-mart-and-divx/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Google Maps Japan &gt; All other Google Maps</title>
		<link>http://soowei.com/2006/05/27/google-maps-japan-all-other-google-maps/</link>
		<comments>http://soowei.com/2006/05/27/google-maps-japan-all-other-google-maps/#comments</comments>
		<pubDate>Sun, 28 May 2006 00:57:17 +0000</pubDate>
		<dc:creator>Soo Wei</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://soowei.com/2006/05/27/google-maps-japan-all-other-google-maps/</guid>
		<description><![CDATA[I was just fooling around on Google Maps just now and I decided to pop over to Japan to see if they have a local version and they do! Not only that, it&#8217;s way cooler than the North American and European versions. It appears that they have building outlines for pretty much every building, as [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://soowei.com/?pp_album=main&amp;pp_cat=misc&amp;pp_image=google_maps_japan.jpg" title="google maps japan"><img src="http://soowei.com/wp-content/photos/thumb_google_maps_japan.jpg" class="alignleft" alt="google maps japan" width="130" height="97" /></a>I was just fooling around on <a title="Google Maps" target="_blank" href="http://maps.google.com/">Google Maps</a> just now and I decided to pop over to Japan to see if they have a local version and they do! Not only that, it&#8217;s way cooler than the North American and European versions. It appears that they have building outlines for pretty much every building, as well as little icons for 7-11s, McDonalds, information stands and traffic junctions. Even walkways and pedestrian overpasses between buildings are shown! Moreoever, this data isn&#8217;t restricted to just Tokyo (where the screenshot was taken). A quick scroll to a random city provides much of the same data, albeit on a slightly less complete level. The satellite imagery isn&#8217;t as good though, with the drawn maps actually being of a higher quality. I can&#8217;t wait for the local version to get as good as this (if ever)!</p>
]]></content:encoded>
			<wfw:commentRss>http://soowei.com/2006/05/27/google-maps-japan-all-other-google-maps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Emulating yesteryear</title>
		<link>http://soowei.com/2006/05/11/emulating-yesteryear/</link>
		<comments>http://soowei.com/2006/05/11/emulating-yesteryear/#comments</comments>
		<pubDate>Fri, 12 May 2006 05:50:47 +0000</pubDate>
		<dc:creator>Soo Wei</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://soowei.com/2006/05/09/emulating-yesteryear/</guid>
		<description><![CDATA[Every once in a while, I seem to get into this nostalgic mode and yearn for those awesome games I played when I was younger. Thankfully, with the help with the internet, it is all too easy to find emulators to relive those moments.
Sega Genesis/Mega Drive
I spent much of my youth in front of the [...]]]></description>
			<content:encoded><![CDATA[<p>Every once in a while, I seem to get into this nostalgic mode and yearn for those awesome games I played when I was younger. Thankfully, with the help with the internet, it is all too easy to find emulators to relive those moments.</p>
<p><strong>Sega Genesis/Mega Drive</strong><br />
I spent much of my youth in front of the TV, mashing away furiously at my Mega Drive controller. Thus it is only natural that the vast majority of my games now are for the Mega Drive. The easiest way to get into Mega Drive emulation is probably to use a PC based emulator like <a target="_blank" title="Gens" href="http://gens.consolemul.com/">Gens</a>. For maximum pleasure you&#8217;ll definitely want to pick up a gamepad. Contorting your fingers on the keyboard is a good way to get <a title="Carpal tunnel syndrome" target="_blank" href="http://en.wikipedia.org/wiki/Carpal_tunnel_syndrome">carpal tunnel syndrome</a>. An excellent alternative is to run emulators written for current generation consoles, both the XBox and PS2 have Genesis emulators. I personally use <a title="PGen" target="_blank" href="http://pgen.gamebase.ca/">PGen</a> for the PS2. The graphics are even better than the Genesis as the PS2 is connected using component video inputs and optical output for sound.</p>
<p>Need games? Well I can&#8217;t help you there but <a title="Google" target="_blank" href="http://www.google.com/">Google</a> might. <img src='http://soowei.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><strong>Nintendo Entertainment System</strong><br />
The NES was my first console back in the 80s. Games like <a title="Mario" target="_blank" href="http://en.wikipedia.org/wiki/Mario">the Mario series</a>, <a title="Donkey Kong" target="_blank" href="http://en.wikipedia.org/wiki/Donkey_kong">Donkey Kong</a> and <a title="The Legend of Zelda" target="_blank" href="http://en.wikipedia.org/wiki/The_Legend_of_Zelda_series">Zelda</a> have really shaped the way games are made today. <a title="Nesticle" target="_blank" href="http://bloodlust.zophar.net/NESticle/nes.html">Nesticle</a> used to be the emulatore of choice for me, but it&#8217;s really old and hasn&#8217;t been updated in ages. A more recent alternative is <a title="FCE Ultra" target="_blank" href="http://fceultra.sourceforge.net/">FCE Ultra</a>. It runs on most desktop platforms (Windows, Mac, Linux) and game compatibility is supposedly very high. A PS2 emulator called <a target="_blank" title="It Might Be NES" href="http://imbnes.gamebase.ca/">It Might Be NES</a> exists, but I couldn&#8217;t get it to work on my PS2. Your mileage may vary!</p>
<p><strong>Good Tools</strong><br />
Now that you have emulators and games ready to go, you&#8217;ll need to organise them if you are to maintain any semblance of order. THE tool to use in this situation is actually a series of utilities called <a target="_blank" title="Good Utils Guide" href="http://www.mameworld.net/easyemu/gtguide.htm">Good Utilities</a>. These utilities scan your ROMs and rename them to the proper names, as as well help you do housekeeping. Unfortunately, the tools are all command-line based, which definitely is a pain to master. Thankfully there is an excellent GUI for all the Good tools. <a target="_blank" title="GoodGUI download" href="http://www.zophar.net/utilities/goodutil.html">GoodGUI</a> is written in C#, runs on the .NET platform and definitely easier to pick up than the command-line.</p>
<p>If you want emulators for other systems, <a target="_blank" title="Zophar's Domain" href="http://www.zophar.net/">Zophar&#8217;s Domain</a> has a huge listing of emulators for everything from the <a target="_blank" title="Commodore 64" href="http://en.wikipedia.org/wiki/Commodore_64">Commodore 64</a> to <a target="_blank" title="Neo Geo" href="http://en.wikipedia.org/wiki/Neo_Geo">Neo Geo</a>. If the arcades are your thing, then <a target="_blank" title="MAME" href="http://www.mame.net/">MAME</a> is for you! With all these applications at your disposal, reliving your childhood has never been easier!</p>
]]></content:encoded>
			<wfw:commentRss>http://soowei.com/2006/05/11/emulating-yesteryear/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New batteries&#8230; for cheap!</title>
		<link>http://soowei.com/2006/03/17/new-batteries-for-cheap/</link>
		<comments>http://soowei.com/2006/03/17/new-batteries-for-cheap/#comments</comments>
		<pubDate>Sat, 18 Mar 2006 06:46:29 +0000</pubDate>
		<dc:creator>Soo Wei</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Vancouver]]></category>

		<guid isPermaLink="false">http://soowei.com/2006/03/17/new-batteries-for-cheap/</guid>
		<description><![CDATA[The Dell deals returned at a good time for me, as they had a pack of 4 Sony 2500mAh NiMH rechargable AA batteries for just $10! The total came up to $11.40 with tax, and shipping was free too! My experience with Purolator was much better this time, at least I didn&#8217;t have to wait [...]]]></description>
			<content:encoded><![CDATA[<p>The <a target="_blank" title="Dell Days of Deals" href="http://www1.ca.dell.com/content/topics/segtopic.aspx/days_of_deals?c=ca&#038;cs=CADHS1&#038;l=en&#038;s=dhs">Dell deals</a> returned at a good time for me, as they had a pack of 4 Sony 2500mAh NiMH rechargable AA batteries for just $10! The total came up to $11.40 with tax, and shipping was free too! My experience with Purolator was much better this time, at least I didn&#8217;t have to wait forever like <a target="_blank" href="http://www1.ca.dell.com/content/topics/segtopic.aspx/days_of_deals?c=ca&#038;cs=CADHS1&#038;l=en&#038;s=dhs">last time</a>! Moreover, this item shipped from their Richmond location, so it basically got shipped 10 mins away to the Purolator store for my pickup!</p>
<p>As for the Dell deals so far, the usual suspects have been appearing, like the the popular widescreen 2005FPW and 2405FPW LCD monitors. They do have some interesting items though, like a <a target="_blank" title="Creative Prodikeys PC-MIDI" href="http://www.creative.com/products/product.asp?category=8&#038;subcategory=234&#038;product=14118">MIDI keyboard combo thing from Creative</a>, and a <a target="_blank" title="Logitech Wireless Music System" href="http://www.logitech.com/index.cfm/products/details/US/EN,CRID=2416,CONTENTID=10855">wireless music system from Logitech</a>. Not that I need them, but I&#8217;m sure some people do, and these deals really deliver a great bargain. There&#8217;s still 9 days left to go&#8230; check the Dell website for more details every morning!</p>
]]></content:encoded>
			<wfw:commentRss>http://soowei.com/2006/03/17/new-batteries-for-cheap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My camera is no more&#8230; or is it?</title>
		<link>http://soowei.com/2006/03/12/my-camera-is-no-more-or-is-it/</link>
		<comments>http://soowei.com/2006/03/12/my-camera-is-no-more-or-is-it/#comments</comments>
		<pubDate>Mon, 13 Mar 2006 03:58:48 +0000</pubDate>
		<dc:creator>Soo Wei</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Vancouver]]></category>

		<guid isPermaLink="false">http://soowei.com/2006/03/12/my-camera-is-no-more-or-is-it/</guid>
		<description><![CDATA[I thought my Canon Powershot A70 finally gave up the ghost when I brought it to Go Fish last week. After taking 2 pictures, it refused to retract (or extend) the lens mechanism. I had a sneaking suspicion that it might be due to the cold but I was prepared for the worst. My camera [...]]]></description>
			<content:encoded><![CDATA[<p>I thought my <a target="_blank" href="http://www.dpreview.com/reviews/canona70/">Canon Powershot A70</a> finally gave up the ghost when I brought it to <a target="_blank" href="http://soowei.com/2006/03/11/go-fish/">Go Fish</a> last week. After taking 2 pictures, it refused to retract (or extend) the lens mechanism. I had a sneaking suspicion that it might be due to the cold but I was prepared for the worst. My camera doesn&#8217;t do too well in the cold, the battery life goes down amazingly fast (the amount of power stored in batteries goes down in cold temperatures) and it often has trouble trying to auto-focus a shot.</p>
<p>Thankfully, it works great now once it is back to room temperature. It still has issues trying to focus, but my trusty sidekick has taken over 6000 pictures for me over three and a half years&#8230; too bad most of the pictures come out crappy! I wish I had the ability to compose better pictures, but somehow I end up with something wrong most of the time. I think one of the biggest drawbacks to a point-and-shoot camera is the inability to create substantial depth of field. Everything is always in focus, and it&#8217;s tough to focus attention on your subject when everything is razor sharp. I would love to pick up a used <a target="_blank" href="http://www.dpreview.com/reviews/canoneos300d/">Digital Rebel</a> DSLR but that is quite low on the list of priorities at the moment!</p>
<p>BTW if anyone is looking for an awesome way to organise your photos, <a target="_blank" href="http://picasa.google.com/">Picasa</a> rocks! I moved from <a target="_blank" href="http://www.acdsystems.com/">ACDSee</a> (which has more features) to Picasa and I have no regrets. It&#8217;s just much more intuitive and user friendly, especially with their Googlesque I&#8217;m Feeling Lucky button, which auto corrects brightness, contrast and colour temperatures with 1 click. Try it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://soowei.com/2006/03/12/my-camera-is-no-more-or-is-it/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
