<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>enrii.blog</title>
	
	<link>http://blog.enrii.com</link>
	<description>A passionate programmer's findings in the world of internet.</description>
	<lastBuildDate>Tue, 13 Nov 2012 13:49:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/enriiblog" /><feedburner:info uri="enriiblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
		<title>Configure WEP Wireless on XBian (XBMC)</title>
		<link>http://feedproxy.google.com/~r/enriiblog/~3/93WuvRNrbjA/</link>
		<comments>http://blog.enrii.com/2012/11/13/configure-wep-wireless-on-xbian-xbmc/#comments</comments>
		<pubDate>Tue, 13 Nov 2012 13:48:59 +0000</pubDate>
		<dc:creator>EngLee</dc:creator>
				<category><![CDATA[Computer hardwares]]></category>

		<guid isPermaLink="false">http://blog.enrii.com/?p=487</guid>
		<description><![CDATA[This could be something extremely easy for the pro, but it took me hours to set this up. I'm using an old TP-Link wireless adapter. After installing the latest XBian (1.0 alpha 2) on my Raspberry Pi, I found no way to get myself to the terminal, even after pressing "Exit" from XBMC screen. I [...]]]></description>
			<content:encoded><![CDATA[<p>This could be something extremely easy for the pro, but it took me hours to set this up. I'm using an old TP-Link wireless adapter. After installing the latest XBian (1.0 alpha 2) on my Raspberry Pi, I found no way to get myself to the terminal, even after pressing "Exit" from XBMC screen.</p>
<p>I had to plug in a network cable and ssh into it. For this version, the login details are:</p>
<p>user: xbian<br />
password: raspberry</p>
<p>Whenever you run sudo, the password is "raspberry" too.</p>
<p>Once logged in, exit the blue setup screen. Then run the following command:</p>
<p><code>/sbin/ifconfig</code></p>
<p>You should see a new "wlan0" on top of the existing "eth0" and "lo" entries, if the wireless adapter was detected and installed correctly. I'm not sure what to do if it's not!</p>
<p>Run the following command to install the wireless tool.</p>
<p><code>sudo apt-get install wireless-tools</code></p>
<p>Then run the following command to set your WEP settings.</p>
<p><code>sudo /sbin/iwconfig wlan0 essid &lt;ssid&gt;<br />
sudo /sbin/iwconfig wlan0 key &lt;key&gt;<br />
sudo ifup wlan0</code></p>
<p>You should get your WEP wifi working by now. Alternatively, you can configure by editing your /etc/network/interfaces to something similar to the following:</p>
<p><code>auto lo</p>
<p>iface lo inet loopback<br />
iface eth0 inet dhcp</p>
<p>allow-hotplug wlan0<br />
iface wlan0 inet dhcp<br />
 wireless-essid &lt;ssid&gt;<br />
 wireless-key &lt;password&gt;</p>
<p>#wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf<br />
wireless-power off<br />
iface default inet dhcp</code></p>
<p>Hope somebody would find this helpful. Do note that WEP is not secure enough for your wifi, always go for WPA2 whenever possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.enrii.com/2012/11/13/configure-wep-wireless-on-xbian-xbmc/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://blog.enrii.com/2012/11/13/configure-wep-wireless-on-xbian-xbmc/</feedburner:origLink></item>
		<item>
		<title>Using wget for Server Migration</title>
		<link>http://feedproxy.google.com/~r/enriiblog/~3/P3hQJ2oZOlI/</link>
		<comments>http://blog.enrii.com/2012/01/19/using-wget-for-server-migration/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 02:29:44 +0000</pubDate>
		<dc:creator>EngLee</dc:creator>
				<category><![CDATA[Web Server Administration]]></category>

		<guid isPermaLink="false">http://blog.enrii.com/?p=483</guid>
		<description><![CDATA[I thought wget is solely good for downloading stuff when you ssh to your server, it can also be used to access FTP account and recursively pull everything over! wget -r -l 100 ftp://login:password@domain.com/public_html -r for recursive -l 100 for 100 level of depth, wget has a default depth of 5 levels only I learned [...]]]></description>
			<content:encoded><![CDATA[<p>I thought wget is solely good for downloading stuff when you ssh to your server, it can also be used to access FTP account and recursively pull everything over!</p>
<p><code>wget -r -l 100 ftp://login:password@domain.com/public_html</code></p>
<p><code>-r</code> for recursive<br />
<code>-l 100</code> for 100 level of depth, wget has a default depth of 5 levels only</p>
<p>I learned about this from <a href="http://josh.st/2006/02/07/wget-rsync-server-migration-tool/">this site</a>, but he didn't mentioned about depth. I have to redo the whole process and my client had to wait longer.</p>
<p>Hope you find this useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.enrii.com/2012/01/19/using-wget-for-server-migration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.enrii.com/2012/01/19/using-wget-for-server-migration/</feedburner:origLink></item>
		<item>
		<title>Redirect a Directory to New Location using .htaccess</title>
		<link>http://feedproxy.google.com/~r/enriiblog/~3/Xiew1pASKBg/</link>
		<comments>http://blog.enrii.com/2011/10/19/redirect-a-directory-to-new-location-using-htaccess/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 14:42:18 +0000</pubDate>
		<dc:creator>EngLee</dc:creator>
				<category><![CDATA[Software and tools]]></category>

		<guid isPermaLink="false">http://blog.enrii.com/?p=478</guid>
		<description><![CDATA[After migrating system from temporary server to a new server, we will have to request all users to go to the new site. I am not an expert in Apache rewrite rules, but finally found this way to redirect everything from a specific directory to a new location. RedirectMatch 301 / http://blog.enrii.com Save the file [...]]]></description>
			<content:encoded><![CDATA[<p>After migrating system from temporary server to a new server, we will have to request all users to go to the new site.</p>
<p>I am not an expert in Apache rewrite rules, but finally found this way to redirect everything from a specific directory to a new location.</p>
<p><code>RedirectMatch 301 / http://blog.enrii.com</code></p>
<p>Save the file as .htaccess, then put the file into the folder you want to redirect (should be somewhere inside your htdocs folder). Replace <code>http://blog.enrii.com</code> with the new site that you want to redirect.</p>
<p>In case it doesn't work, see if the following line in httpd.conf is commented:</p>
<p><code>LoadModule rewrite_module modules/mod_rewrite.so</code></p>
<p>Un-comment it if necessary.</p>
<p>That's how I finally got it working. Please let me know if I am not doing it correctly.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.enrii.com/2011/10/19/redirect-a-directory-to-new-location-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.enrii.com/2011/10/19/redirect-a-directory-to-new-location-using-htaccess/</feedburner:origLink></item>
		<item>
		<title>Mac OS X Lion</title>
		<link>http://feedproxy.google.com/~r/enriiblog/~3/S18RWlYwaMs/</link>
		<comments>http://blog.enrii.com/2011/09/11/mac-os-x-lion/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 14:26:40 +0000</pubDate>
		<dc:creator>EngLee</dc:creator>
				<category><![CDATA[Exploring Mac]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Lion]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://blog.enrii.com/?p=471</guid>
		<description><![CDATA[One Apple product after another. Just upgraded to Lion from Snow Leopard on my Macbook Air. Postponed the upgrade for until now due to limited space on my 64GB SSD, also partly due to new process spawned in my personal life. Although most of the new features are exciting, I find some features in Lion [...]]]></description>
			<content:encoded><![CDATA[<p>One Apple product after another. Just upgraded to Lion from Snow Leopard on my Macbook Air. Postponed the upgrade for until now due to limited space on my 64GB SSD, also partly due to <a href="http://englee.blogspot.com/2011/08/becoming-father.html">new process spawned in my personal life</a>.</p>
<p>Although most of the new features are exciting, I find some features in Lion annoying. Apple likes to make decision and thinks that everyone would be happy with their product, either they like or they will have to get use to it then like it. I agree that this approach is the only way to keep things simple and nice.</p>
<p>One such annoying feature would be "Reopen windows when logging back in". I have heard about Mac users who never shuts down the machine because they want to keep their halfway work. This feature will be a great addition for these people. It's not for me, I always like to turn off everything and shut down at the end of day and start from fresh the next day. This feature does not allow me to do something as simple as this!</p>
<p><img class="image-center" src="http://blog.enrii.com/wp-content/uploads/lion-shut-down.png" alt="" title="Mac OS X Lion Shut Down Screen" width="420" height="192" class="alignnone size-full wp-image-472" /></p>
<p>I will have to untick the checkbox on every shut down. I really need Mac to remember my last input during previous shut down.</p>
<p>As for the good, one main exciting feature for me would be the enhancement to Mail.app that made it works like a real email client.</p>
<p>Other notable feature would be the "natural" scrolling. It actually feels very unnatural in the beginning. Only after you recall how iPad works, it feels much more natural. But scrolling backwards with a mouse doesn't feel natural at all. Had to get the free <a href="http://pilotmoon.com/scrollreverser/">Scroll Reverser</a> to reverse mouse scroll.</p>
<p>So, was it worth my USD29.90? Maybe. At some point I think Apple is charging more than Microsoft because this is merely increment of 0.1 version instead of a whole new version.</p>
<p>Would be very interested to know what is the conversion ratio from Snow Leopard!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.enrii.com/2011/09/11/mac-os-x-lion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.enrii.com/2011/09/11/mac-os-x-lion/</feedburner:origLink></item>
		<item>
		<title>iPad from Singapore</title>
		<link>http://feedproxy.google.com/~r/enriiblog/~3/J2tTGJ00mU4/</link>
		<comments>http://blog.enrii.com/2010/09/06/ipad-from-singapore/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 07:06:05 +0000</pubDate>
		<dc:creator>EngLee</dc:creator>
				<category><![CDATA[Exploring Mac]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPad]]></category>

		<guid isPermaLink="false">http://blog.enrii.com/?p=461</guid>
		<description><![CDATA[Apple products are really tempting. I can't imagine myself being one of those geeks who would travel all the way to another country to purchase an Apple product just because I couldn't get it in my country. Before I left for Singapore 2 days ago, we (my wife and I) have decided not to get [...]]]></description>
			<content:encoded><![CDATA[<p><img class="image-center" src="http://blog.enrii.com/wp-content/uploads/ipad.png" alt="Apple iPad" title="Apple iPad" width="425" height="240" /></p>
<p>Apple products are really tempting. I can't imagine myself being one of those geeks who would travel all the way to another country to purchase an Apple product just because I couldn't get it in my country.</p>
<p>Before I left for Singapore 2 days ago, we (my wife and I) have decided not to get iPad, reasons being:</p>
<ol>
<li>The first version of everything could potentially has undetected flaws. As a developer myself, I always believe end user testing would be the best testing, and iPad has not been in the market long enough and I don't want to be white rat.</li>
<li>There are much more iPad competitors coming up very soon, mainly the <a href="http://galaxytab.samsungmobile.com/">Samsung Galaxy Tab</a> that runs on less restricted <a href="http://www.android.com/">Android</a> platform.</li>
<li>There are also rumours saying Apple is going to launch a <a href="http://www.slashgear.com/mini-ipad-coming-q1-2011-for-sub-400-insists-analyst-0880847/">mini iPad</a> which could be much more convenient to bring around.</li>
<li>There is no reason to get an brand new device and jailbreak it the second day, then lose it warranty. I have subscribed to home broadband, office broadband and BlackBerry unlimited packages, and I will need to get another 3G broadband for my iPad. I need to get iPad to tether with BlackBerry and that is not possible unless you jailbreak it.</li>
<li>There are also rumours saying iPad will be in Malaysian Apple store very soon. Why the hassle?</li>
</ol>
<p>There are much more reasons for not getting iPad at this moment.</p>
<p>All the reasons suddenly dismissed from our mind when we saw the Singaporeans travelling in MRTs surfing net with iPad. We saw some GeekCamp attendees surf net with iPad.</p>
<p>We also thought it wouldn't be easy to find iPad as it could have been wiped out by the Singaporeans, especially the entry level 16GB wifi units.</p>
<p>However, we really can't deny our luck when we found it at the fourth Apple store, and we <strong>have</strong> to get ourselves the iPad which damaged us SGD729. Not too expensive but not cheap too.</p>
<p>After owning it for less than 48 hours, I have a mixed feeling with the device.</p>
<p>It really changed the way people uses computer. Apple has done it again. It makes me feel like laptops will not stay for long, or the market share of laptop will drop tremendously.</p>
<p>I believe there are more than 50% of the users who are using computers solely for internet (or Facebook). Big portion of this user group will definitely go for iPad or similar device if they did not fall for netbooks earlier when it hit the market a year ago.</p>
<p>The only <strong>downside</strong> of the device, is the touch screen keyboard which I was unable to get used to it yet. Although it's hard to type on screen and I keep on getting typos, can see that the iPad is working hard to help me correct the spelling as I type. If much more effort were to be put on typo corrections, users will definitely enjoy the device more.</p>
<p>With all that being said, I don't think it suits me. The problem is not the device, <strong>the problem is me</strong>.</p>
<p>I do not see it replacing my BlackBerry or MacBook Pro. I'd still prefer to read on my BlackBerry while I commute on public transport because it's not small enough to be carried around. I will still have to use my MacBook to get my work done. There is no point adding a third device into my already heavy bag.</p>
<p>It shall only serve as a device for some light surfing at night, or for some urgent work in the shopping mall, on a non-working day. It's much more for my wife (for her favourite <a href="http://www.rovio.com/index.php?page=angry-birds">Angry Bird</a> game) than myself.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.enrii.com/2010/09/06/ipad-from-singapore/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.enrii.com/2010/09/06/ipad-from-singapore/</feedburner:origLink></item>
		<item>
		<title>Windows XP: Troubleshooting Blue Screen (c0000218)</title>
		<link>http://feedproxy.google.com/~r/enriiblog/~3/C-cuXi_LIfY/</link>
		<comments>http://blog.enrii.com/2010/09/02/windows-xp-troubleshooting-blue-screen-c0000218/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 09:00:39 +0000</pubDate>
		<dc:creator>EngLee</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://blog.enrii.com/?p=456</guid>
		<description><![CDATA[If you work as computer support at any place, blue screen is inevitable. Haven't seen any blue screens on Windows 7 yet, but having more than ten Windows XP's in the company, I'm keep getting complaint calls. The initial problem reported: The computer cannot go past the Windows start up logo screen, then it restarts [...]]]></description>
			<content:encoded><![CDATA[<p>If you work as computer support at any place, blue screen is inevitable. Haven't seen any blue screens on Windows 7 yet, but having more than ten Windows XP's in the company, I'm keep getting complaint calls.</p>
<p><strong>The initial problem reported:</strong></p>
<p>The computer cannot go past the Windows start up logo screen, then it restarts automatically. After restart, the computer asks whether to go into Safe Mode or to start computer normally.</p>
<p>In my case, the computer hangs or reboots automatically no matter which option I choose.</p>
<p><strong>To get actual problem:</strong></p>
<p>Keep pressing F8 on start up to get into Windows Advanced Options Menu. Then select Disable automatic restart on system failure.</p>
<p>By doing so, the computer will continue to load until the blue screen shows up. That's the place where you could get the error message.</p>
<p><strong>The error I found:</strong></p>
<blockquote><p>Stop: c0000218 {Registry File Failure} The registry cannot load the hive (file): \SystemRoot\System32\Config\SOFTWARE or its log or alternate </p></blockquote>
<p><strong>The solution for all kinds of registry problem, in short:</strong></p>
<p>Format the damned PC.</p>
<p><strong>The solution for registry recovery, in long:</strong></p>
<p>The five registry files to be recovered are:</p>
<ul>
<li>system</li>
<li>software</li>
<li>sam</li>
<li>security</li>
<li>default</li>
</ul>
<p>Procedures to copy all registry files from C:\windows\repair\ folder to C:\windows\system32\config\ folder:</p>
<ol>
<li>Using Windows XP installation CD, get into Recovery Mode.</li>
<li>Go to C:\windows\system32\config folder.</li>
<li>Backup the 5 registry files to a temporary folder.</li>
<li>Copy the 5 registry files from C:\windows\repair\ folder to C:\windows\system32\config folder.</li>
<li>Enter exit to restart to computer.</li>
</ol>
<p>Procedures to get into Safe Mode to copy last known good registry files to be restored:</p>
<ol>
<li>Upon start up, press F8 and select Safe Mode to get into Windows Safe Mode.</li>
<li>Get into C:\System Volume Information\_restore{XXXX}\RPXX\snapshot\ (Rule: Check the properties of the folder to get the date of the backup. Always take the latest version.)</li>
<li>You will find these files:
<ol>
<li>_REGISTRY_USER_.DEFAULT</li>
<li>_REGISTRY_MACHINE_SECURITY</li>
<li>_REGISTRY_MACHINE_SOFTWARE</li>
<li>_REGISTRY_MACHINE_SYSTEM</li>
<li>_REGISTRY_MACHINE_SAM</li>
</ol>
</li>
<li>Copy the files to another temporary folder, preferably to be in C:\Windows folder.</li>
<li>Rename all the 5 files to its original name, e.g. 	_REGISTRY_USER_.DEFAULT to default.</li>
</ol>
<p>Finally, get back to Recovery Mode to replace the files you have found from System Volume Information to registry original folder (C:\windows\system32\config).</p>
<p>Done. You should now be able to start your computer normally.</p>
<p>This same procedure will help you recover all kinds of registry corrupted problem that you ever get.</p>
<p>I am trying to keep this guide simple and short, for myself, because I found that the guide provided by Microsoft is too lengthy. You may refer to the <a href="http://support.microsoft.com/kb/307545">Knowledge Base</a> page if this guide does not make any sense.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.enrii.com/2010/09/02/windows-xp-troubleshooting-blue-screen-c0000218/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.enrii.com/2010/09/02/windows-xp-troubleshooting-blue-screen-c0000218/</feedburner:origLink></item>
		<item>
		<title>Digi Blackberry on Mac</title>
		<link>http://feedproxy.google.com/~r/enriiblog/~3/3yb6h8QSdHI/</link>
		<comments>http://blog.enrii.com/2010/08/04/digi-blackberry-on-mac/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 10:08:37 +0000</pubDate>
		<dc:creator>EngLee</dc:creator>
				<category><![CDATA[Exploring Mac]]></category>
		<category><![CDATA[BlackBerry]]></category>
		<category><![CDATA[Digi]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Maxis]]></category>

		<guid isPermaLink="false">http://blog.enrii.com/?p=452</guid>
		<description><![CDATA[I remember it took some time to setup my Maxis Blackberry on my Mac. But for Digi, I didn't expect it to be so tough, probably Digi is considered new comer in BlackBerry market, I was unable to find any resources online. After installing the BlackBerry Desktop Software for Mac and connected your BlackBerry to [...]]]></description>
			<content:encoded><![CDATA[<p>I remember it took some time to setup my <a href="http://www.maxis.com.my/personal/blackberry/index.asp">Maxis Blackberry</a> on <a href="http://blog.enrii.com/2010/05/29/on-my-new-macbook/">my Mac</a>. But for <a href="http://www.digi.com.my/">Digi</a>, I didn't expect it to be so tough, probably Digi is considered new comer in BlackBerry market, I was unable to find any resources online.</p>
<p>After installing the <a href="http://na.blackberry.com/eng/services/desktop/desktop_mac.jsp">BlackBerry Desktop Software for Mac</a> and connected your BlackBerry to your Mac with an USB cable (cable is preferred than Bluetooth to keep your BB alive), you need to do some configuration in Network settings in System Preferences.</p>
<p>First, you will see a new device detected as RIM Composite Device. Then, these are the things that you'll need to enter:</p>
<ul>
<li>Telephone Number: *99#</li>
<li>Account Name: digi</li>
<li>Password: digi</li>
</ul>
<p>Go to the "Advanced..." settings, and set the APN to diginet.</p>
<p>These are the configurations that you will need, which you can't find even in the Digi's FAQ or anywhere (as of posting date). I spent more than 30 minutes talking to different Digi support guys and still they are unable to provide me with these configurations.</p>
<p>As for Maxis, though you can find it elsewhere, these are what I have configured:</p>
<ul>
<li>Telephone Number: *99#</li>
<li>Account Name: maxis</li>
<li>Password: wap</li>
<li>APN: internet.com</li>
</ul>
<p>Hope these configurations work for you. Make sure you have subscribed to unlimited data package before you do this. You might end up paying big sum of bill because some software on your Mac doing some updates.</p>
<p>Have plans to switch to Digi soon and I could save at least 50% of bill per month.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.enrii.com/2010/08/04/digi-blackberry-on-mac/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.enrii.com/2010/08/04/digi-blackberry-on-mac/</feedburner:origLink></item>
		<item>
		<title>Notice to Upgrade WordPress</title>
		<link>http://feedproxy.google.com/~r/enriiblog/~3/EG38AG1pWVo/</link>
		<comments>http://blog.enrii.com/2010/07/26/notice-to-upgrade-wordpress/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 14:59:04 +0000</pubDate>
		<dc:creator>EngLee</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.enrii.com/?p=449</guid>
		<description><![CDATA[Today, I received an email, a very weird email, titled with a single word "blog", from a very weird person, with the following message in the email: please update your wordpress installation. it's not secure. Whoever that is, thanks for reminding. Wanted to do it long time ago, but too busy. Although you sounded like [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I received an email, a very weird email, titled with a single word "blog", from a very weird person, with the following message in the email:</p>
<blockquote><p>please update your wordpress installation. it's not secure.</p></blockquote>
<p>Whoever that is, thanks for reminding. Wanted to do it long time ago, but too busy. Although you sounded like a hacker who would hack my blog if I don't upgrade, but anyway, thanks again.</p>
<p>Upgraded to version 3.0 now, but didn't notice much changes in the user interface from back-end. Shall spend some time to explore soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.enrii.com/2010/07/26/notice-to-upgrade-wordpress/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://blog.enrii.com/2010/07/26/notice-to-upgrade-wordpress/</feedburner:origLink></item>
		<item>
		<title>On My New Macbook</title>
		<link>http://feedproxy.google.com/~r/enriiblog/~3/7CyMyBrD7QA/</link>
		<comments>http://blog.enrii.com/2010/05/29/on-my-new-macbook/#comments</comments>
		<pubDate>Sat, 29 May 2010 08:43:15 +0000</pubDate>
		<dc:creator>EngLee</dc:creator>
				<category><![CDATA[Exploring Mac]]></category>

		<guid isPermaLink="false">http://blog.enrii.com/?p=443</guid>
		<description><![CDATA[After spending few weeks with Macbook Pro, there's so much to share about it. Managed to migrate everything over from PC/Windows and able to do everything I normally do in Windows. I must say, it's a struggle in the beginning. There's a point of time that I almost feel like dumping it and get another [...]]]></description>
			<content:encoded><![CDATA[<p>After spending few weeks with Macbook Pro, there's so much to share about it. Managed to migrate everything over from PC/Windows and able to do everything I normally do in Windows. I must say, it's a struggle in the beginning. There's a point of time that I almost feel like dumping it and get another PC, instead of wasting time with this piece of junk.</p>
<p>It's not as "advanced" and user-friendly as it was advertised. I still feel that it's strictly for geeks, unless you are using that machine like a netbook, then it wouldn't be much problem for you.</p>
<p>As a programmer with some 3 years working in Red Hat terminal, still I need some time to get use to the file structure as the things are not placed exactly what it were in Red Hat.</p>
<p>Since I normally prefer to get use to the software that comes with the OS, I find that Finder (or you may call it file explorer) is the hardest thing you need to get use to. Many in the web would suggest you to use alternatives, but some how, I managed to adapt to it already.</p>
<p>Switching from Ctrl key to the Command key is the worst part of the whole migration process. Using Windows for more than a decade, why would anyone press Win Key + C to copy a thing?!</p>
<p>However, with all those complaints, it's not really that bad actually. I managed to adapt to the "damn" machine in less than a month. More than 10 years of working in Windows, and I could adapt myself to Mac in less than a month.</p>
<p>My praise for the machine is mainly on the hardware. It's really stable. There's once when some metal accidentally went into the USB port and caused a spark. The Snow Leopard just tell you gracefully that the USB port uses more power than it should be, then it automatically disable to port.</p>
<p>When you are in Windows, it only tells you that you can't remove your pendrive because something is still using it, but in Mac, it tells you exactly what needs to be closed so you could remove your pendrive.</p>
<p>I must say that Apple have put much effort on the little things, and it is these little things that makes them grow to what they are today.</p>
<p>The exterior of the machine, the screen, the keyboard. It all look so perfect that you would always try to protect it, even the power adapter. Apple put so much effort to every small things, like the magnet of the power adapter that suck itself to the port, the sensitivity of the touchpad.</p>
<p>The endurance of the battery is perfect. I have a feeling like using a phone which you would normally charge for a few hours at night and using it for one whole day on the second day. Did you ever bring your phone adapter with you on a normal working day? It almost achieve that, with at least 6 hours of wireless productivity, compared to my last AMD laptop that only runs for at most 2 hours.</p>
<p>I highly recommend people to switch to it, if you don't mind to spend a struggling month to adapt, but once that's over, it's really a great machine to work on. The price of owning one is no longer that high, compared to few years back.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.enrii.com/2010/05/29/on-my-new-macbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.enrii.com/2010/05/29/on-my-new-macbook/</feedburner:origLink></item>
		<item>
		<title>Switching to Mac</title>
		<link>http://feedproxy.google.com/~r/enriiblog/~3/-pgrVbnMUcM/</link>
		<comments>http://blog.enrii.com/2010/05/07/switching-to-mac/#comments</comments>
		<pubDate>Thu, 06 May 2010 18:18:47 +0000</pubDate>
		<dc:creator>EngLee</dc:creator>
				<category><![CDATA[Exploring Mac]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://blog.enrii.com/?p=439</guid>
		<description><![CDATA[Have been looking at Apple products for months, but couldn't make up my mind until now. Finally got myself an entry level 13-inch Macbook Pro. I must say it's not a cheap deal at the price of RM3,899, but comparing it to high-end Sony, Fujitsu or Lenovo laptops, it's still acceptable. After spending few hours [...]]]></description>
			<content:encoded><![CDATA[<p>Have been looking at Apple products for months, but couldn't make up my mind until now. Finally got myself an entry level 13-inch Macbook Pro.</p>
<p>I must say it's not a cheap deal at the price of RM3,899, but comparing it to high-end Sony, Fujitsu or Lenovo laptops, it's still acceptable.</p>
<p>After spending few hours with it, I think I barely know anything about Mac.  Even something as easy as opening command prompt (or it's called Terminal in Mac) requires a google search.</p>
<p>I didn't expect that setting up my Blackberry to work with Snow Leopard would took me almost an hour.  Had to explore everything from scratch again.  Luckily I had 3 years experience with Red Hat and vi.</p>
<p>Hopefully the Mac would make me revive this blog again, writing some post as a log to remind myself on how to configure my new machine to fit my needs (in case I format this machine some day).</p>
<p>Share with me in the comments (or laugh at me), if you find me posting anything wrong. I'm surely a noob in this new world..</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.enrii.com/2010/05/07/switching-to-mac/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.enrii.com/2010/05/07/switching-to-mac/</feedburner:origLink></item>
	</channel>
</rss>
