<?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; Open Source</title>
	<atom:link href="http://blog.siansiew.com/category/generaltech/open-source/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>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>YamiPod write up</title>
		<link>http://blog.siansiew.com/2007/07/09/yamipod-write-up/</link>
		<comments>http://blog.siansiew.com/2007/07/09/yamipod-write-up/#comments</comments>
		<pubDate>Mon, 09 Jul 2007 12:32:02 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[General Tech]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://siansiew.com/2007/07/09/yamipod-write-up/</guid>
		<description><![CDATA[Just posted a write up on YamiPod (Yet another iPod manager) which is an alternative iPod management software to iTunes here.]]></description>
			<content:encoded><![CDATA[<p>Just posted a write up on YamiPod (Yet another iPod manager) which is an alternative iPod management software to iTunes <a href="http://spherebox.com/2007/07/09/yamipod/" aiotitle="here" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2007/07/09/yamipod-write-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove truncation of feed feature after more tag in WordPress 2.1</title>
		<link>http://blog.siansiew.com/2007/05/13/remove-truncation-of-feed-feature-after-more-tag-in-wordpress-21/</link>
		<comments>http://blog.siansiew.com/2007/05/13/remove-truncation-of-feed-feature-after-more-tag-in-wordpress-21/#comments</comments>
		<pubDate>Sat, 12 May 2007 14:27:27 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://siansiew.com/2007/05/13/remove-truncation-of-feed-feature-after-more-tag-in-wordpress-21/</guid>
		<description><![CDATA[If you have already upgraded to WordPress 2.1 and have the syndication feeds options set to &#8216;full text&#8217;, you might&#8217;ve noticed that the RSS feed for your blog post gets truncated after the use of the &#60;!â€“â€“moreâ€“â€“&#62; tag. This is a change in behaviour as compared to previous version of WordPress (2.0 and below) which [...]]]></description>
			<content:encoded><![CDATA[<p>If you have already upgraded to <a href="http://wordpress.org/" target="_blank">WordPress</a> 2.1 and have the syndication feeds options set to &#8216;full text&#8217;, you might&#8217;ve noticed that the <a href="http://en.wikipedia.org/wiki/RSS" target="_blank">RSS</a> feed for your blog post gets truncated after the use of the &lt;!â€“â€“moreâ€“â€“&gt; tag. This is a change in behaviour as compared to previous version of WordPress (2.0 and below) which would show the whole post in an RSS feed if the feed option was set to full text.</p>
<p>Without going into the debate of <a href="http://www.google.com.au/search?hl=en&amp;q=full+text+vs+summary+feeds&amp;btnG=Google+Search&amp;meta=" target="_blank">full vs. partial feeds</a> (I&#8217;m on the full feeds side though ;)), there&#8217;s a WordPress plugin which does not require any additional configuration apart from just dropping it into your WordPress&#8217;s plugins directory and activating it. Get it from <a href="http://cavemonkey50.com/code/full-feed/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2007/05/13/remove-truncation-of-feed-feature-after-more-tag-in-wordpress-21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Combating comment spam</title>
		<link>http://blog.siansiew.com/2007/02/04/combating-comment-spam/</link>
		<comments>http://blog.siansiew.com/2007/02/04/combating-comment-spam/#comments</comments>
		<pubDate>Sun, 04 Feb 2007 11:05:39 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://siansiew.com/2007/02/04/combating-comment-spam/</guid>
		<description><![CDATA[After the major upgrade by my webhost, there was a sudden surge in spam on the blogs on spherebox, with a lot bypassing Akismet&#8216;s filtering. Apparently he did not configure the ModSecurity Apache module (which did an excellent job previously) and was too lazy to do so as the new version he had installed had [...]]]></description>
			<content:encoded><![CDATA[<p align="left">After the <a href="http://siansiew.com/2006/12/31/server-issues/" target="_blank">major upgrade</a> by my webhost, there was a sudden surge in spam on the blogs on <a href="http://spherebox.com/" target="_blank">spherebox</a>, with a lot bypassing <a href="http://akismet.com/" target="_blank">Akismet</a>&#8216;s filtering. Apparently he did not configure the <a href="http://www.modsecurity.org/" target="_blank">ModSecurity</a> <a href="http://apache.org/" target="_blank">Apache</a> module (which did an excellent job previously) and was too lazy to do so as the new version he had installed had supposedly different configuration settings. :(</p>
<p>Since I got sick of getting the incessant email notifications of spam held in moderation queue, I decided to go looking around for fixes and came across <a href="http://codex.wordpress.org/Combating_Comment_Spam/Denying_Access#Deny_Access_to_No_Referrer_Requests" target="_blank">this</a> at <a href="http://codex.wordpress.org/Main_Page" target="_blank">WordPress&#8217;s Codex</a> which helped cut down the crazy amount of spam that kept going through by heaps. Basically it adds rules to the <a href="http://en.wikipedia.org/wiki/Htaccess" target="_blank">.htaccess</a> file which will check that any comments being submitted to wp-comments-post.php come from the comments page of the WordPress installation and not directly injected by spam bots.</p>
<p>Note that this did not stop the spam completely, but managed to reduce the volume enough so that Akismet could block it off appropriately.</p>
<p>If you&#8217;re encountering the same issue as I did, try it out. The instructions are fairly simple and requires few modifications. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2007/02/04/combating-comment-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sites upgraded to WordPress 2.1</title>
		<link>http://blog.siansiew.com/2007/02/03/sites-upgraded-to-wordpress-21/</link>
		<comments>http://blog.siansiew.com/2007/02/03/sites-upgraded-to-wordpress-21/#comments</comments>
		<pubDate>Sat, 03 Feb 2007 05:55:09 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Site Updates]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://siansiew.com/2007/02/03/sites-upgraded-to-wordpress-21/</guid>
		<description><![CDATA[It&#8217;s been a while since my last post, unfortunately have been extremely busy with all kinds of things lately. :( Had some time this weekend, so WordPress 2.1 has been deployed to all hosted sites. Unfortunately, there are some plugins which still have not been fixed to work with 2.1 (e.g. video embedding).]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since my last post, unfortunately have been extremely busy with all kinds of things lately. :( Had some time this weekend, so <a href="http://wordpress.org/development/2007/01/ella-21/" target="_blank">WordPress 2.1</a> has been deployed to all hosted sites. Unfortunately, there are some plugins which still have not been fixed to work with 2.1 (e.g. video embedding).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2007/02/03/sites-upgraded-to-wordpress-21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sites upgraded to WordPress 2.0.6</title>
		<link>http://blog.siansiew.com/2007/01/07/sites-upgraded-to-wordpress-206/</link>
		<comments>http://blog.siansiew.com/2007/01/07/sites-upgraded-to-wordpress-206/#comments</comments>
		<pubDate>Sun, 07 Jan 2007 12:56:10 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Site Updates]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://siansiew.com/2007/01/07/sites-upgraded-to-wordpress-206/</guid>
		<description><![CDATA[Have just upgraded all WordPress installs across spherebox sites with the latest version. :) Get the latest zip or tar.gz from here, or if you want just the changes files and/or diff, have a look here.]]></description>
			<content:encoded><![CDATA[<p>Have just upgraded all <a target="_blank" href="http://wordpress.org/">WordPress</a> installs across <a target="_blank" href="http://spherebox.com/">spherebox</a> sites with the latest version. :)</p>
<p>Get the latest zip or tar.gz from <a target="_blank" href="http://wordpress.org/download/">here</a>, or if you want just the changes files and/or diff, have a look <a target="_blank" href="http://markjaquith.wordpress.com/2007/01/06/wordpress-206-upgrade-changed-files-zip-changes-diff-changed-files-list/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2007/01/07/sites-upgraded-to-wordpress-206/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 2 built-in dictionary</title>
		<link>http://blog.siansiew.com/2006/11/26/firefox-2-built-in-dictionary/</link>
		<comments>http://blog.siansiew.com/2006/11/26/firefox-2-built-in-dictionary/#comments</comments>
		<pubDate>Sun, 26 Nov 2006 06:18:20 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://siansiew.com/2006/11/26/firefox-2-built-in-dictionary/</guid>
		<description><![CDATA[You probably would&#8217;ve noticed the dotted underlined red lines under misspelt words which are typed into text boxes/forms/fields. To me, it&#8217;s a rather welcomed feature since I use web applications and services quite a fair bit (I don&#8217;t misspell a lot, but automated checking is a bonus I guess ;)), but by default, the bundled [...]]]></description>
			<content:encoded><![CDATA[<p><img align="left" alt="Mozilla Firefox" title="Mozilla Firefox" src="http://siansiew.com/wp-content/uploads/2006/09/firefox-logo-64x64.png" />You probably would&#8217;ve noticed the dotted underlined red lines under misspelt words which are typed into text boxes/forms/fields. To me, it&#8217;s a rather welcomed feature since I use web applications and services quite a fair bit (I don&#8217;t misspell a lot, but automated checking is a bonus I guess ;)), but by default, the bundled dictionary is for the US locale which would complain when you spell &#8216;<em>favour</em>&#8216; instead of &#8216;<em>favor</em>&#8216;.</p>
<p>Fortunately, it&#8217;s a rather easy to get around this, which is just to select and install the appropriate dictionary from <a target="_blank" href="https://addons.mozilla.org/firefox/dictionaries/?lang=en-GB">here</a>. Once that&#8217;s done, just right-click on any text box/field/form and you should be able to select the dictionary you want to use (screenshot below):</p>
<p><img alt="Firefox 2 dictionary selection" id="image145" src="http://siansiew.com/wp-content/uploads/2006/11/firefox2-dictionary.png" /></p>
<p>Once that&#8217;s done, you&#8217;re all set! :)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2006/11/26/firefox-2-built-in-dictionary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Firefox 2 tweaks</title>
		<link>http://blog.siansiew.com/2006/10/30/more-firefox-2-tweaks/</link>
		<comments>http://blog.siansiew.com/2006/10/30/more-firefox-2-tweaks/#comments</comments>
		<pubDate>Sun, 29 Oct 2006 14:01:27 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://siansiew.com/2006/10/30/more-firefox-2-tweaks/</guid>
		<description><![CDATA[Apparently it&#8217;s now officially called Firefox 2 and not two-point-o (2.0), so I&#8217;ve dropped the .0 from the title. :P I usually use the shortcut keys ALT+I, ALT+B rather frequently at a forum I visit to get highlighted text in the post box to be italicised or bolded, but in Firefox 2, this shortcut keys [...]]]></description>
			<content:encoded><![CDATA[<p>Apparently it&#8217;s now officially called <a target="_blank" href="http://www.mozilla.com/firefox/">Firefox 2</a> and <a target="_blank" href="http://weblogs.mozillazine.org/asa/archives/2006/10/coupla_quick_hi.html">not two-point-o</a> (2.0), so I&#8217;ve dropped the .0 from the title. :P</p>
<p>I usually use the shortcut keys ALT+I, ALT+B rather frequently at a forum I visit to get highlighted text in the post box to be italicised or bolded, but in Firefox 2, this shortcut keys no longer work by default. You now have to add the SHIFT key into the mix, so it goes ALT+SHIFT+I instead. If you don&#8217;t want to use the SHIFT key, you can edit two values in about:config (like for the close tab button previously):</p>
<blockquote><p>Change:<br />
ui.key.chromeAccess to 5<br />
ui.key.contentAccess to 4</p></blockquote>
<p><em>Taken from <a target="_blank" href="http://forums.mozillazine.org/viewtopic.php?t=446830">MozillaZine forum</a>.</em></p>
<p>As for other about:config tweaks, head over to <a target="_blank" href="http://www.lifehacker.com/software/firefox-2/geek-to-live--top-firefox-2-config-tweaks-209941.php">this page</a> and for other Firefox tweaks, check <a target="_blank" href="http://www.tweakguides.com/Firefox_1.html">this guide</a> out. ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.siansiew.com/2006/10/30/more-firefox-2-tweaks/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! -->
