<?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>ss &#124; blog &#187; General Tech</title>
	<atom:link href="http://blog.siansiew.com/category/generaltech/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.siansiew.com</link>
	<description>Geeky (and non-geeky) ramblings.</description>
	<lastBuildDate>Fri, 07 Oct 2011 06:44:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ubuntu 11.04 fsck/MOTD bug/issue</title>
		<link>http://blog.siansiew.com/2011/10/07/ubuntu-11-04-fsckmotd-bug/</link>
		<comments>http://blog.siansiew.com/2011/10/07/ubuntu-11-04-fsckmotd-bug/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 06:43:39 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[Coding/Development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[fsck]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MOTD]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu 11.04]]></category>

		<guid isPermaLink="false">http://blog.siansiew.com/?p=308</guid>
		<description><![CDATA[Recently this message popped up on the MOTD of the Ubuntu servers on EC2: *** /dev/xvda1 will be checked for errors at next reboot *** After proceeding to do a fsck and restarting, the message still kept appearing. After some debugging with wk, it apparently was due to a stale fsck-at-reboot file left around causing [...]]]></description>
			<content:encoded><![CDATA[<p>Recently this message popped up on the MOTD of the Ubuntu servers on EC2:</p>
<p><code>*** /dev/xvda1 will be checked for errors at next reboot ***</code></p>
<p>After proceeding to do a fsck and restarting, the message still kept appearing. After some debugging with wk, it apparently was due to a stale fsck-at-reboot file left around causing the message to keep popping up.</p>
<p>Here are the steps I used to make sure they stopped popping up again:</p>
<p><code>sudo touch /forcefsck<br />
sudo shutdown -r now<br />
sudo rm /var/lib/update-notifier/fsck-at-reboot<br />
cd /usr/lib/update-notifier/<br />
sudo ./update-motd-fsck-at-reboot<br />
sudo rm /forcefsck</code></p>
<p>Thanks wk!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2011/10/07/ubuntu-11-04-fsckmotd-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing MySQL 5.5 on Ubuntu 11.04 (Natty)</title>
		<link>http://blog.siansiew.com/2011/08/30/installing-mysql-5-5-on-ubuntu-11-04-natty/</link>
		<comments>http://blog.siansiew.com/2011/08/30/installing-mysql-5-5-on-ubuntu-11-04-natty/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 09:22:43 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[Coding/Development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[mysql 5.5]]></category>
		<category><![CDATA[natty]]></category>
		<category><![CDATA[ubuntu 11.04]]></category>

		<guid isPermaLink="false">http://blog.siansiew.com/?p=299</guid>
		<description><![CDATA[Steps I used to get MySQL 5.5 working on Ubuntu 11.04 AMD64 (behind Aptitude&#8217;s back sadly since it&#8217;s still not packaged up due to copyright statuses..): Download the following from here. mysql-common_5.5.13-2_all.deb libmysqlclient18_5.5.13-2_amd64.deb libmysqlclient-dev_5.5.13-2_amd64.deb mysql-client-5.5_5.5.13-2_amd64.deb libmysqld-dev_5.5.13-2_amd64.deb libmysqld-pic_5.5.13-2_amd64.deb mysql-server-core-5.5_5.5.13-2_amd64.deb mysql-server-5.5_5.5.13-2_amd64.deb Run the following to remove older versions of MySQL client/server: sudo aptitude remove mysql-client mysql-client-5.1 mysql-client-core-5.1 [...]]]></description>
			<content:encoded><![CDATA[<p>Steps I used to get MySQL 5.5 working on Ubuntu 11.04 AMD64 (behind Aptitude&#8217;s back sadly since it&#8217;s still not packaged up due to <a href="https://bugs.launchpad.net/ubuntu/+source/mysql-5.1/+bug/690925" target="_blank">copyright statuses</a>..):</p>
<ul>
<li>Download the following from <a href="http://people.debian.org/~nobse/mysql-5.5/" target="_blank">here</a>.</li>
</ul>
<blockquote><p>mysql-common_5.5.13-2_all.deb<br />
libmysqlclient18_5.5.13-2_amd64.deb<br />
libmysqlclient-dev_5.5.13-2_amd64.deb<br />
mysql-client-5.5_5.5.13-2_amd64.deb<br />
libmysqld-dev_5.5.13-2_amd64.deb<br />
libmysqld-pic_5.5.13-2_amd64.deb<br />
mysql-server-core-5.5_5.5.13-2_amd64.deb<br />
mysql-server-5.5_5.5.13-2_amd64.deb</p></blockquote>
<ul>
<li>Run the following to remove older versions of MySQL client/server:</li>
</ul>
<blockquote>
<pre>sudo aptitude remove mysql-client mysql-client-5.1 mysql-client-core-5.1 mysql-common mysql-server mysql-server-5.1 mysql-server-core-5.1</pre>
</blockquote>
<ul>
<li>From the directory you downloaded the files above to:</li>
</ul>
<blockquote>
<pre>sudo aptitude install libmysqld-dev
sudo dpkg -i mysql-common_5.5.13-2_all.deb
sudo dpkg -i libmysqlclient18_5.5.13-2_amd64.deb
sudo aptitude install zlib1g-dev
sudo dpkg -i libmysqlclient-dev_5.5.13-2_amd64.deb
sudo aptitude install libdbi-perl libdbd-mysql-perl
sudo dpkg -i mysql-client-5.5_5.5.13-2_amd64.deb
sudo dpkg -i libmysqld-dev_5.5.13-2_amd64.deb
sudo dpkg -i libmysqld-pic_5.5.13-2_amd64.deb
sudo dpkg -i mysql-server-core-5.5_5.5.13-2_amd64.deb
sudo dpkg -i mysql-server-5.5_5.5.13-2_amd64.deb</pre>
</blockquote>
<p>Took me awhile of messing around to get the sequence right, hope this helps!</p>
<p>Reference/links from blog post/comments <a href="http://geek.co.il/wp/2011/03/02/mysql-5-5-on-ubuntu-10-10">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2011/08/30/installing-mysql-5-5-on-ubuntu-11-04-natty/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>SSD tweak utility for Windows</title>
		<link>http://blog.siansiew.com/2011/08/28/ssd-tweak-utility-for-windows/</link>
		<comments>http://blog.siansiew.com/2011/08/28/ssd-tweak-utility-for-windows/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 01:21:35 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.siansiew.com/?p=285</guid>
		<description><![CDATA[All machines I regularly use are now using SSDs (60GB/120GB OCZ Vertex 2E), and this handy utility has done all the tweaks for me: SSD Tweaker More info on it here and here.]]></description>
			<content:encoded><![CDATA[<p>All machines I regularly use are now using SSDs (60GB/120GB OCZ Vertex 2E), and this handy utility has done all the tweaks for me: <a href="http://elpamsoft.com/Downloads.aspx?Name=SSD%20Tweaker" target="_blank">SSD Tweaker</a></p>
<p>More info on it <a href="http://www.ocztechnologyforum.com/forum/showthread.php?49779-SSD-Tweak-Utility" target="_blank">here</a> and <a href="http://www.tweaktown.com/articles/3116/tweaktown_s_solid_state_drive_optimization_guide/index5.html" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2011/08/28/ssd-tweak-utility-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4GB of RAM on a 32bit Windows OS</title>
		<link>http://blog.siansiew.com/2009/07/27/4gb-of-ram-on-a-32bit-windows-os/</link>
		<comments>http://blog.siansiew.com/2009/07/27/4gb-of-ram-on-a-32bit-windows-os/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 11:36:49 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[General Tech]]></category>

		<guid isPermaLink="false">http://siansiew.com/?p=260</guid>
		<description><![CDATA[Most machines now configured with 4GB of RAM but continue to be bundled with the 32-bit version of Windows. You might&#8217;ve noticed that in this situation it does not fully utilise all of it, but here&#8217;s a simple fix to work around this issue instead of putting a 64-bit OS instead: To enable PAE mode, [...]]]></description>
			<content:encoded><![CDATA[<p>Most machines now configured with 4GB of RAM but continue to be bundled with the 32-bit version of Windows. You might&#8217;ve noticed that in this situation it does not fully utilise all of it, but here&#8217;s a simple fix to work around this issue instead of putting a 64-bit OS instead:</p>
<blockquote><p>To enable PAE mode, you have to add PAE to the boot entry in the BCD file. Open an elevated command prompt. Type <span>BCDEDIT /SET PAE ForceEnable</span>.</p></blockquote>
<p>via: <a href="http://support.microsoft.com/kb/929580" target="_blank">Microsoft&#8217;s help article</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2009/07/27/4gb-of-ram-on-a-32bit-windows-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ipfilter (blocklist) update</title>
		<link>http://blog.siansiew.com/2009/07/26/ipfilter-blocklist-update/</link>
		<comments>http://blog.siansiew.com/2009/07/26/ipfilter-blocklist-update/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 08:18:21 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[BitTorrent]]></category>
		<category><![CDATA[General Tech]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[blocklist]]></category>
		<category><![CDATA[ipfilter]]></category>

		<guid isPermaLink="false">http://siansiew.com/?p=252</guid>
		<description><![CDATA[There has been update to the ipfilter.dat source which I posted up before (have just updated that post). The previous source was from BISS but the people who maintain the blocklists now publish it at this site. Whether or not the blocklists are of any use is up for debate, and definitely not something I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>There has been update to the ipfilter.dat source which I <a href="http://siansiew.com/2006/08/14/blocking-bad-data-and-peers-in-bittorrent/" target="_blank">posted up before</a> (have just updated that post). The previous source was from <a href="http://www.bluetack.co.uk/forums/index.php" target="_blank">BISS</a> but the people who maintain the blocklists now publish it at <a href="http://tbg.iblocklist.com/" target="_blank">this site</a>.</p>
<p>Whether or not the blocklists are of any use is up for debate, and definitely not something I&#8217;m going to go into in this post..</p>
<p>via <a href="http://forums.phoenixlabs.org/showthread.php?t=17291" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2009/07/26/ipfilter-blocklist-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Let me google that for you</title>
		<link>http://blog.siansiew.com/2008/12/01/let-me-google-that-for-you/</link>
		<comments>http://blog.siansiew.com/2008/12/01/let-me-google-that-for-you/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 03:30:16 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[Humour]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://siansiew.com/?p=237</guid>
		<description><![CDATA[If you participate in online forums or groups, you would realise that a majority of queries could be answered simply by googling. Colleague sent this site around today which potentially could help those whom are in need of guidance: Let me google that for you Type in the phrase in the search box. Hit Google [...]]]></description>
			<content:encoded><![CDATA[<p>If you participate in online forums or groups, you would realise that a majority of queries could be answered simply by googling. Colleague sent <a href="http://www.letmegooglethatforyou.com/" target="_blank">this site</a> around today which potentially could help those whom are in need of guidance: <a href="http://www.letmegooglethatforyou.com/" target="_blank">Let me google that for you</a></p>
<ol>
<li>Type in the phrase in the search box.</li>
<li>Hit Google Search.</li>
<li>Copy and paste the link to the person who requires guidance.</li>
</ol>
<p>For e.g., click <a href="http://www.letmegooglethatforyou.com/?q=optus+3g+is+the+worst" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2008/12/01/let-me-google-that-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes 100% CPU on closing</title>
		<link>http://blog.siansiew.com/2008/10/12/itunes-100-cpu-on-closing/</link>
		<comments>http://blog.siansiew.com/2008/10/12/itunes-100-cpu-on-closing/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 02:32:12 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[100% cpu]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[nod32]]></category>

		<guid isPermaLink="false">http://siansiew.com/?p=226</guid>
		<description><![CDATA[After I got my iPhone 3G a couple about 2 months ago, I had no other choice but to use iTunes for all the syncing, backups, music etc as Apple wants total control of what you can or can&#8217;t do with its devices (was using YamiPod previously, writeup here). :&#124; My loathing for it got [...]]]></description>
			<content:encoded><![CDATA[<p>After I got my <a href="http://www.apple.com/iphone/" target="_blank">iPhone 3G</a> a couple about 2 months ago, I had no other choice but to use <a href="http://www.apple.com/itunes/" target="_blank">iTunes</a> for all the syncing, backups, music etc as Apple wants total control of what you can or can&#8217;t do with its devices (was using YamiPod previously, writeup <a href="http://spherebox.com/2007/07/09/yamipod-yet-another-ipod-manager/" target="_blank">here</a>). :|</p>
<p>My loathing for it got worse as it didn&#8217;t seem to be closing gracefully on quitting besides causing software restores which all ended up with iTunes.exe taking up 100% CPU. I decided to stop swearing at it and search around for the root cause as this behaviour wasn&#8217;t replicated on my work machine and on colleague&#8217;s variety of machines.</p>
<p>Turns out it wasn&#8217;t iTunes, but the antivirus (<a href="http://www.eset.com/" target="_blank">NOD32</a> 2.7) which wasn&#8217;t playing nice. After adding various iTunes paths to AMON/IMON exclusion lists, there has not been crashes or 100% CPU since (instructions on how to do this <a href="http://training.eset.com/kb/index.php?option=com_kb&amp;Itemid=29&amp;page=articles&amp;articleid=760" target="_blank">here</a>). Guess I was cursing the wrong software but anyhow..</p>
<p>Just a note, this is a fairly belated post as I was having this issue with iTunes 7.x and have since upgraded to 8.0.1 which may no longer require this workaround. ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2008/10/12/itunes-100-cpu-on-closing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3 is out</title>
		<link>http://blog.siansiew.com/2008/06/18/firefox-3-is-out/</link>
		<comments>http://blog.siansiew.com/2008/06/18/firefox-3-is-out/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 13:51:25 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Humour]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://siansiew.com/?p=220</guid>
		<description><![CDATA[After trying it out for the past 24 hours, I must say I&#8217;m very impressed by the improvements over version 2. For starters, it has not hogged up to 500+MB of memory after a couple of hours, no crashes thus far too. Besides that, the new location bar (a.k.a. AwesomeBar) is simply fantastic. Most extensions [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="float: left;" src="http://siansiew.com/wp-content/uploads/2006/09/firefox-logo-64x64.png" alt="" width="64" height="64" /> After trying it out for the past 24 hours, I must say I&#8217;m very impressed by the improvements over version 2. For starters, it has not hogged up to 500+MB of memory after a couple of hours, no crashes thus far too. Besides that, the new <a href="http://www.mozilla-europe.org/en/firefox/features/#location-bar" target="_blank">location bar</a> (a.k.a. AwesomeBar) is simply fantastic. Most extensions have been updated to work with the latest version but you may have to switch to different ones if they aren&#8217;t updated anymore (or do some workarounds). Go get your copy of Firefox 3 <a href="http://www.mozilla.com/firefox/" target="_blank">here</a>.</p>
<p>While on the subject of Firefox 3, BBspot has an article on it <a href="http://www.bbspot.com/News/2008/06/microsoft-abandons-internet-explorer-8.html" target="_blank">here</a>. And before you go about saying &#8216;about time!&#8217;, BBspot is a satire news site. :P</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2008/06/18/firefox-3-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Google Reader shared items</title>
		<link>http://blog.siansiew.com/2008/06/17/my-google-reader-shared-items/</link>
		<comments>http://blog.siansiew.com/2008/06/17/my-google-reader-shared-items/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 16:35:37 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[General Tech]]></category>

		<guid isPermaLink="false">http://siansiew.com/?p=219</guid>
		<description><![CDATA[I subscribe to a considerable amount of feeds (which occasionally can get tiresome to clear, removed Digg as the volume was way too great) and I have a filtered list/feed available here which are items from feeds which I think is noteworthy. It can be added to any RSS reader if you wish to be [...]]]></description>
			<content:encoded><![CDATA[<p>I subscribe to a considerable amount of feeds (which occasionally can get tiresome to clear, removed <a href="http://digg.com/" target="_blank">Digg</a> as the volume was way too great) and I have a filtered list/feed available <a href="http://www.google.com/reader/shared/09170114779792585135" target="_blank">here</a> which are items from feeds which I think is noteworthy.</p>
<p>It can be added to any <a href="http://siansiew.com/category/generaltech/rss-feeds/" target="_blank">RSS</a> reader if you wish to be kept updated of the items which I share. ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2008/06/17/my-google-reader-shared-items/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross street in Google Maps</title>
		<link>http://blog.siansiew.com/2008/06/16/cross-street-in-google-maps/</link>
		<comments>http://blog.siansiew.com/2008/06/16/cross-street-in-google-maps/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 16:29:06 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[General Tech]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://siansiew.com/?p=217</guid>
		<description><![CDATA[I decided to find out if cross streets (intersections) can be easily searched via Google Maps rather than searching for one street and just scrolling around to find the intersection with the other recently, and realised there was a keyword to do that. For e.g., typing a very frequently used rendezvous point into Google Maps: [...]]]></description>
			<content:encoded><![CDATA[<p>I decided to find out if cross streets (intersections) can be easily searched via Google Maps rather than searching for one street and just scrolling around to find the intersection with the other recently, and realised there was a keyword to do that.</p>
<p>For e.g., typing a very frequently used rendezvous point into Google Maps:</p>
<blockquote><p>Swanston St at Bourke St VIC 3000</p></blockquote>
<p>Would give you the intersection of Swanston St and Bourke St (ex-Nike Melbourne). Link to the page <a href="http://maps.google.com.au/maps?f=q&amp;hl=en&amp;geocode=&amp;q=swanston+st+at+bourke+st+vic+3000" target="_blank">here</a>.</p>
<p><a href="http://siansiew.com/wp-content/uploads/2008/06/cross-street.png"><img class="alignnone size-thumbnail wp-image-218" title="Google Maps cross street" src="http://siansiew.com/wp-content/uploads/2008/06/cross-street-150x150.png" alt="" width="150" height="150" /></a></p>
<p>Pretty nifty since it&#8217;s common place for shop lot locations to be listed as &#8216;corner X road and Y road&#8217;.</p>
<p><em>via <a href="http://malektips.com/google_maps_0003.html" target="_blank">MalekTips</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2008/06/16/cross-street-in-google-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
