<?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>Mister Fahrenheit&#039;s Guide</title>
	<atom:link href="http://www.misterfahrenheit.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.misterfahrenheit.com</link>
	<description>Blogs on computers, mobile devices, hardwares, life and many more!</description>
	<lastBuildDate>Fri, 17 Feb 2012 17:02:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Easy Way To Set-up Bind9 and Squid3 on Debian.</title>
		<link>http://www.misterfahrenheit.com/2012/02/10/easy-way-to-set-up-bind9-and-squid3-on-debian/</link>
		<comments>http://www.misterfahrenheit.com/2012/02/10/easy-way-to-set-up-bind9-and-squid3-on-debian/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 11:33:23 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Browser]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Unix/Linux]]></category>

		<guid isPermaLink="false">http://www.misterfahrenheit.com/?p=449</guid>
		<description><![CDATA[<p>Running your own Bind9 and Squid3 server is a pretty cool. For one, it can enhance browsing experience. Let get started:</p>
<p>1. Install necessary softwares</p>
<p>sudo apt-get install bind9 dnsutils squid3</p>
<p>2. Configure bind9-editing resolv.conf</p>
<p>gedit  /etc/resolv.conf</p>
<p>3. Add new line on top of the line</p>
<p>nameserver 127.0.0.1</p>
<p>4. Save file and restart bind9 service</p>
<p>/etc/init.d/rsyslog restart; /etc/init.d/bind9 start</p>
<p>5. Run these commands to verify <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.misterfahrenheit.com/2012/02/10/easy-way-to-set-up-bind9-and-squid3-on-debian/">Easy Way To Set-up Bind9 and Squid3 on Debian.</a></span>]]></description>
			<content:encoded><![CDATA[<p>Running your own Bind9 and Squid3 server is a pretty cool. For one, it can enhance browsing experience. Let get started:</p>
<p><strong>1. Install necessary softwares</strong></p>
<blockquote><p>sudo apt-get install bind9 dnsutils squid3</p></blockquote>
<p><strong>2. Configure bind9-editing resolv.conf</strong></p>
<blockquote><p>gedit  /etc/resolv.conf</p></blockquote>
<p><strong>3. Add new line on top of the line</strong></p>
<blockquote><p>nameserver 127.0.0.1</p></blockquote>
<p><strong>4. Save file and restart bind9 service</strong></p>
<blockquote><p>/etc/init.d/rsyslog restart; /etc/init.d/bind9 start</p></blockquote>
<p><strong>5. Run these commands to verify its functionality. Observe the query time when the dig command is issued the second time. You will see 0msec when it is properly configured.</strong></p>
<blockquote><p>dig www.yahoo.com</p></blockquote>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* banner_mrfa */
google_ad_slot = "6279916715";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><strong>7. Now on to configuring Squid3</strong></p>
<blockquote><p>gedit /etc/squid3/squid.conf</p></blockquote>
<p><strong>8. Clear all and paste the following code.</strong></p>
<blockquote><p>acl manager proto cache_object<br />
acl localhost src 127.0.0.1/32<br />
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32<br />
acl SSL_ports port 443<br />
acl Safe_ports port 80 # http<br />
acl Safe_ports port 21 # ftp<br />
acl Safe_ports port 443 # https<br />
acl Safe_ports port 70 # gopher<br />
acl Safe_ports port 210 # wais<br />
acl Safe_ports port 1025-65535 # unregistered ports<br />
acl Safe_ports port 280 # http-mgmt<br />
acl Safe_ports port 488 # gss-http<br />
acl Safe_ports port 591 # filemaker<br />
acl Safe_ports port 777 # multiling http<br />
acl CONNECT method CONNECT<br />
http_access allow manager localhost<br />
http_access deny manager<br />
http_access deny !Safe_ports<br />
http_access deny CONNECT !SSL_ports<br />
http_access allow localhost<br />
http_access deny all<br />
http_port 3128<br />
hierarchy_stoplist cgi-bin ?<br />
cache_mem 128 MB<br />
maximum_object_size_in_memory 512 KB<br />
memory_replacement_policy heap LFUDA<br />
coredump_dir /var/spool/squid3<br />
refresh_pattern ^ftp: 1440 20% 10080<br />
refresh_pattern ^gopher: 1440 0% 1440<br />
refresh_pattern -i (/cgi-bin/|\?) 0 0% 0<br />
refresh_pattern . 0 20% 4320</p>
<p>## disk cache stuff if you want<br />
#cache_replacement_policy heap LFUDA<br />
#cache_dir aufs /var/spool/squid 4096 16 256<br />
#minimum_object_size 0 KB<br />
#maximum_object_size 4096 KB<br />
#cache_swap_low 90<br />
#cache_swap_high 95</p>
<p>## disable all logging for better performance<br />
access_log none<br />
cache_store_log none<br />
cache_log /dev/null</p></blockquote>
<p>&nbsp;</p>
<p><strong>9. Save file and restart squid3 by typing</strong></p>
<blockquote><p>sudo squid3 restart</p></blockquote>
<p><strong>10. Now configure your iceweasel browser to use your own proxy server  &#8211; Edit &gt; Preferences&gt;Advanced&gt;Network&gt;Connection&gt;Settings&gt;Manual Proxy Configuration&gt;Enter 127.0.0.1 and the port is 3128.</strong></p>
<p><strong>11. Test your proxy server by typing www.google.com. Now type www.google.comss and you will get a nice squid3 message.</strong></p>
<p><strong><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* Bigsquare_mrfa */
google_ad_slot = "4257197840";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
</strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.misterfahrenheit.com/2012/02/10/easy-way-to-set-up-bind9-and-squid3-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Setup a DNS server with BIND on Windows 7 (Part 2)</title>
		<link>http://www.misterfahrenheit.com/2011/09/04/how-to-setup-a-dns-server-with-bind-on-windows-7-part-2/</link>
		<comments>http://www.misterfahrenheit.com/2011/09/04/how-to-setup-a-dns-server-with-bind-on-windows-7-part-2/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 14:06:03 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.misterfahrenheit.com/?p=378</guid>
		<description><![CDATA[<p>


</p>
<p>..continued from Part 1.</p>
<p>&#160;</p>
<p>Setup</p>
<p>&#160;</p>
<p>Configuration Files</p>
<p>1 . Now this is the hardest part of the tutorial. Firstly download file called named.root from</p>
<p>ftp://ftp.internic.net/domain/</p>
<p>2 . Copy the downloaded file to the DNS\etc folder.Depending on your Windows version, for 32 bit the location is</p>
<p>C:\Windows\System32\dns\etc</p>
<p>and for Windows 64 bit</p>
<p>C:\Windows\SysWOW64\dns\etc</p>
<p>3 . We will generate a BIND key by running:</p>
<p>rndc-confgen -a</p>
<p>4 . Next <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.misterfahrenheit.com/2011/09/04/how-to-setup-a-dns-server-with-bind-on-windows-7-part-2/">How to Setup a DNS server with BIND on Windows 7 (Part 2)</a></span>]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* banner_mrfa */
google_ad_slot = "6279916715";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><em>..continued from Part 1.</em></p>
<p>&nbsp;</p>
<p><strong>Setup</strong></p>
<p>&nbsp;</p>
<p><strong>Configuration Files</strong></p>
<p>1 . Now this is the hardest part of the tutorial. Firstly download file called named.root from</p>
<p>ftp://ftp.internic.net/domain/</p>
<p>2 . Copy the downloaded file to the DNS\etc folder.Depending on your Windows version, for 32 bit the location is</p>
<p>C:\Windows\System32\dns\etc</p>
<p>and for Windows 64 bit</p>
<p>C:\Windows\SysWOW64\dns\etc</p>
<p>3 . We will generate a BIND key by running:</p>
<p>rndc-confgen -a</p>
<p>4 . Next will generate a file called rndc.conf by runnning:</p>
<p>rndc-confgen &gt; C:\Windows\SysWOW64\dns\etc\rndc.conf</p>
<p>(depending on the Windows version)</p>
<p>5 . We will open the file rndc.conf using notepad+ and copy the highlighted lines</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/rndc.png"><img class="alignnone size-full wp-image-383" title="rndc" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/rndc.png" alt="" width="677" height="506" /></a></p>
<p>and close the file.</p>
<p>6 . With notepad+ create a file called named.conf and paste the lines into the file.</p>
<p>7 . At the top of the line, type:</p>
<p><em>options {</em><br />
<em>    directory &#8220;C:\Windows\SysWOW64\dns\etc&#8221;;</em><br />
<em>};</em></p>
<p>8 . Uncomment the lines by removing the # sign as in the picture.</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/named.png"><img class="alignnone size-full wp-image-384" title="named" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/named.png" alt="" width="692" height="396" /></a></p>
<p>and save file.</p>
<p>9 .  Create another file called resolv.conf and type 127.0.0.1 at the top of the file. Type your DNS server from your ISP to the next two nameserver. For my machine, I use google dns address which is 8.8.8.8 and 8.8.4.4. Press enter at the end of the lines. Save the file.</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/resolv.png"><img class="alignnone size-full wp-image-385" title="resolv" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/resolv.png" alt="" width="448" height="221" /></a></p>
<p>&nbsp;</p>
<p><strong>Windows Service</strong></p>
<p>1 . Click Start button and type &#8221; services.msc &#8221; inside the box.</p>
<p>2 . Locate ISC BIND and double click. Go to Logon Tab and please select &#8220;Local System Account&#8221; and check the box under it.</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/services.png"><img class="alignnone size-full wp-image-386" title="services" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/services.png" alt="" width="648" height="633" /></a></p>
<p>3 . Go to general tab and click Start button. The service should start or check the log if it fails to start.Click ok and close the window.</p>
<p>&nbsp;</p>
<p><strong>Network Configuration</strong></p>
<p>1 . Click Start button and type Network Connections inside the box.</p>
<p>2 . Choose your internet adapter, right click and select properties.</p>
<p>3 . Look for Internet Protocol Version 4 and double click.</p>
<p>4 . Now select &#8221; Use the following DNS server addresses&#8221; and type 127.0.0.1 in the first box. Click Ok and close then box.</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/network.png"><img class="alignnone size-full wp-image-387" title="network" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/network.png" alt="" width="811" height="429" /></a></p>
<p>That&#8217;s it!</p>
<p>&nbsp;</p>
<p><strong>Results</strong></p>
<p>We have to verify the functionality of the DNS server. Fire up Command Prompt box and type</p>
<p><em>host websiteaddress.com</em></p>
<p>and verify the details.</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/cmdhost.png"><img class="alignnone size-full wp-image-391" title="cmdhost" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/cmdhost.png" alt="" width="675" height="63" /></a></p>
<p>&nbsp;</p>
<p>Next, run these commands</p>
<p><em>dig websiteaddress.com</em></p>
<p>and observe the Query time.</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/cmddig.png"><img class="alignnone size-full wp-image-392" title="cmddig" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/cmddig.png" alt="" width="676" height="349" /></a></p>
<p>&nbsp;</p>
<p>Now run the command again and you will see a much lower query time. Repeat with other website to see how much time you can shave with BIND.</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/cmddig2.png"><img class="alignnone size-full wp-image-393" title="cmddig2" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/cmddig2.png" alt="" width="676" height="396" /></a></p>
<p>&nbsp;</p>
<p><strong>Summary</strong></p>
<p>This guide does not promise a faster internet experience for all user. While the improvement of speed in browsing may be increased by a small percentage, the fun is in knowing that you have managed to run your own DNS server. How cool is that <img src='http://www.misterfahrenheit.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* Bigsquare_mrfa */
google_ad_slot = "4257197840";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.misterfahrenheit.com/2011/09/04/how-to-setup-a-dns-server-with-bind-on-windows-7-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url='http://www.misterfahrenheit.com/wp-content/uploads/2011/09/rndc.png' length ='22718'  type='image/jpg' />	</item>
		<item>
		<title>How to Setup a DNS server with BIND on Windows 7 (Part 1)</title>
		<link>http://www.misterfahrenheit.com/2011/09/04/how-to-setup-a-dns-server-with-bind-on-windows-7-part-1/</link>
		<comments>http://www.misterfahrenheit.com/2011/09/04/how-to-setup-a-dns-server-with-bind-on-windows-7-part-1/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 14:05:04 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.misterfahrenheit.com/?p=371</guid>
		<description><![CDATA[<p>Content</p>

Introduction
Objective
Checklist / Item required
Steps
Result
Conclusion

<p> </p>
<p>Introduction</p>
<p>BIND is also open source software that implements the Domain Name System (DNS) protocols. You can run your own DNS server for your own purpose or for enhancing your internet experience.</p>
<p>&#160;</p>
<p>Objective</p>
<p>At the end of this howto, you will be able to host your own DNS server on which you can use to speedup <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.misterfahrenheit.com/2011/09/04/how-to-setup-a-dns-server-with-bind-on-windows-7-part-1/">How to Setup a DNS server with BIND on Windows 7 (Part 1)</a></span>]]></description>
			<content:encoded><![CDATA[<p><strong>Content</strong></p>
<ul>
<li><strong>Introduction</strong></li>
<li><strong>Objective</strong></li>
<li><strong>Checklist / Item required</strong></li>
<li><strong>Steps</strong></li>
<li><strong>Result</strong></li>
<li><strong>Conclusion</strong></li>
</ul>
<p><strong></strong> </p>
<p><strong>Introduction</strong></p>
<p>BIND is also open source software that implements the Domain Name System (DNS) protocols. You can run your own DNS server for your own purpose or for enhancing your internet experience.</p>
<p>&nbsp;</p>
<p><strong>Objective</strong></p>
<p>At the end of this howto, you will be able to host your own DNS server on which you can use to speedup the internet of the host computer or other machines connected to it.</p>
<p><strong></strong> </p>
<p><strong>Checklist / Item required</strong></p>
<ol>
<li>Notepad+ installed.</li>
<li>Bind9 software.</li>
<li>Windows 7 with UAC disabled.</li>
</ol>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* banner_mrfa */
google_ad_slot = "6279916715";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>&nbsp;</p>
<p><strong></strong> </p>
<p><strong>Steps</strong></p>
<p><strong>BIND installation</strong></p>
<p>1 . Download latest version of Bind from http://www.isc.org/software/bind</p>
<p>2 . Extract the zip files to any location.</p>
<p>3 . Now open the folder and run BINDInstall.exe. Under &#8220;Service Account Name&#8221; put your windows username. Then put your password in the next two box like in the picture below. Click Install.</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/installer.png"><img class="size-full wp-image-374 aligncenter" title="installer" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/installer.png" alt="" width="335" height="545" /></a></p>
<p>&nbsp;</p>
<p><strong>Windows 7</strong></p>
<p>1 . Click Start button and type &#8220;advanced system properties&#8221; inside the box.</p>
<p>2 . Click Environment Variables.</p>
<p>3 . Now under System Variables look for Path, highlight Path and click Edit.</p>
<p>4 . Under Variable Value, put at the end of line:</p>
<p><em>%SystemRoot%\sysWOW64\dns\bin</em></p>
<p>and click ok on everything to close all the windows.</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/envi.png"><img class="alignnone size-full wp-image-375" title="Environment Variables" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/09/envi.png" alt="" width="658" height="485" /></a></p>
<p>&nbsp;</p>
<p>Continued to part 2..</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* Bigsquare_mrfa */
google_ad_slot = "4257197840";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.misterfahrenheit.com/2011/09/04/how-to-setup-a-dns-server-with-bind-on-windows-7-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url='http://www.misterfahrenheit.com/wp-content/uploads/2011/09/installer.png' length ='30749'  type='image/jpg' />	</item>
		<item>
		<title>My experience with Malaysia wireless broadband</title>
		<link>http://www.misterfahrenheit.com/2011/08/06/experiences-with-malaysia-wireless-broadband/</link>
		<comments>http://www.misterfahrenheit.com/2011/08/06/experiences-with-malaysia-wireless-broadband/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 22:02:41 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.misterfahrenheit.com/?p=351</guid>
		<description><![CDATA[<p>


</p>
<p>I wanted to share my personal experiences with reader on three of Malaysia&#8217;s major telco provider. Let&#8217;s start with number one.</p>
<p>Celcom broadband</p>
<p>I have been using Celcom broadband for the longest time, from 2008-2010. It was a costly move from me having spend RM400 for the 3g modem alone. The speed if I&#8217;m not mistaken is 512 <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.misterfahrenheit.com/2011/08/06/experiences-with-malaysia-wireless-broadband/">My experience with Malaysia wireless broadband</a></span>]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* banner_mrfa */
google_ad_slot = "6279916715";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>I wanted to share my personal experiences with reader on three of Malaysia&#8217;s major telco provider. Let&#8217;s start with number one.</p>
<p><strong>Celcom broadband</strong></p>
<p>I have been using Celcom broadband for the longest time, from 2008-2010. It was a costly move from me having spend RM400 for the 3g modem alone. The speed if I&#8217;m not mistaken is 512 kbps and download speed was never above 60kbps. The allocated data volume is 3GB and after that you will still be able to surf at slow slow speed. It was a painful experience because when the bandwidth throttling is active, it will hit you hard. Youtube rarely loads smoothly with celcom and sometime it makes Facebook look like Picasso.</p>
<p><strong>Maxis broadband</strong></p>
<p>Maxis broadband offers the same package setup as Celcom which suits me well. It was tempting because it comes with free modem made ZTE. Plus the usage is free for the first month. For a moment I had a blast because it was so fast and i am very enjoying it so much. The speed is achievable as advertised but in the end of second month it stopped working! Apparently I hit the 3GB quota mark and when I open browser, it keeps asking for me to buy some data volume. And I thought my package is uncapped! I could be wrong with the package selection but at least Maxis should allow me to surf a capped speed. I don&#8217;t understand what is wrong and thus I dropped Maxis name from my list.</p>
<p><strong>Digi Broadband</strong></p>
<p>I have seen this short advertisement about Digi Discovery Day broadband package. It is really cheap -RM38 and so I thought it would make no harm for me to try. The caveat is that at nighttime, the speed will be capped. Honestly, I could not feel any difference in day and night. It&#8217;s also as fast as Maxis but more consistency. Followed by this, i have switched completely to Digi by subscribing to Digi Smartplan package.  It is the perfect plan ever, RM68 commitment+what ever you use for sms and calling. Like Maxis and Celcom, it also got some problem on its own and I have to compensate for it.  There is not enough Digi 3G cell tower for coverage in Malaysia. For instance when I am at Jitra Kedah, there is no 3G line at all and even EDGE is not used in GSM <img src='http://www.misterfahrenheit.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p>So there you have, my short stint with Malaysian telco company for the last three years. I would recommend Digi to the reader if you are looking into wireless broadband. I&#8217;m sure in the future all our telco will improve in service.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* Bigsquare_mrfa */
google_ad_slot = "4257197840";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.misterfahrenheit.com/2011/08/06/experiences-with-malaysia-wireless-broadband/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xperia X8 battery capacity tweak</title>
		<link>http://www.misterfahrenheit.com/2011/07/26/xperia-x8-battery-capacity-tweak/</link>
		<comments>http://www.misterfahrenheit.com/2011/07/26/xperia-x8-battery-capacity-tweak/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 01:24:40 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Gadgets]]></category>

		<guid isPermaLink="false">http://www.misterfahrenheit.com/?p=345</guid>
		<description><![CDATA[<p>Introduction</p>
<p>I have been inspecting the Xperia X8 build.prop file when I realize that the battery capacity parameter was not the same as my hardware listed.</p>
<p>The build.prop has  been changed after the Eclair update and SE developer may have change the value for compatibility among all region handset. In Android 1.6 version, the battery capacity was set <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.misterfahrenheit.com/2011/07/26/xperia-x8-battery-capacity-tweak/">Xperia X8 battery capacity tweak</a></span>]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>I have been inspecting the Xperia X8 build.prop file when I realize that the battery capacity parameter was not the same as my hardware listed.</p>
<p>The build.prop has  been changed after the Eclair update and SE developer <strong>may</strong> have change the value for compatibility among all region handset. In Android 1.6 version, the battery capacity was set 1200mAH which is correct for my hardware, however in the latest update the battery capacity has been changed to 950mAH. So I decided to change back the value.</p>
<p>&nbsp;</p>
<p><strong>Requirement</strong></p>
<ul>
<li>Rooted device</li>
<li>Root explorer android application</li>
<li>Android ADB</li>
<li>Notepad+ windows application</li>
</ul>
<p>&nbsp;</p>
<p><strong>Procedure</strong></p>
<p>&nbsp;</p>
<p>1. Connect your device, turn on debug mode on your android and run this command in italic.</p>
<p><em>adb pull /system/build.prop  C:\        </em></p>
<p>This will fetch file called build.prop from your android and store it at root of C: drive.</p>
<p>&nbsp;</p>
<p>2. Open your case back and read the battery capacity. Mine is showing 1200mAh.</p>
<p>&nbsp;</p>
<p>3. Now edit the build.prop using Notepad+ and change the parameter:</p>
<p><em>ro.semc.batt.capacity=1200</em></p>
<p>Change from 950 to the capacity of your battery.</p>
<p>&nbsp;</p>
<p>4. Open Root Explorer and mount the /system folder to read-write (rw)</p>
<p>&nbsp;</p>
<p>5. Store the build.prop file back to the X8 by running command:</p>
<p><em>adb push C:\build.prop /system</em></p>
<p>&nbsp;</p>
<p>6. Reboot your X8 and see if you can get a better life.</p>
<p>Comment or improvement please use the form below.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* Bigsquare_mrfa */
google_ad_slot = "4257197840";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.misterfahrenheit.com/2011/07/26/xperia-x8-battery-capacity-tweak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to increase LCD density in Xperia X8</title>
		<link>http://www.misterfahrenheit.com/2011/07/26/how-to-increase-lcd-density-in-xperia-x8/</link>
		<comments>http://www.misterfahrenheit.com/2011/07/26/how-to-increase-lcd-density-in-xperia-x8/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 01:07:15 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Gadgets]]></category>

		<guid isPermaLink="false">http://www.misterfahrenheit.com/?p=341</guid>
		<description><![CDATA[<p>Introduction</p>
<p>In other word, increasing the screen resolution of your android screen. The advantage is that more text can be viewed on the screen and less scrolling is needed. I find that the LCD Density of 140 works best for X8, instead of the original 160.</p>
<p>&#160;</p>
<p>Requirement</p>

Rooted device
Root explorer android application
Android ADB
Notepad+ windows application

<p>&#160;</p>
<p>Procedure</p>
<p>&#160;</p>
<p>1. Connect your device, turn <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.misterfahrenheit.com/2011/07/26/how-to-increase-lcd-density-in-xperia-x8/">How to increase LCD density in Xperia X8</a></span>]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>In other word, increasing the screen resolution of your android screen. The advantage is that more text can be viewed on the screen and less scrolling is needed. I find that the LCD Density of 140 works best for X8, instead of the original 160.</p>
<p>&nbsp;</p>
<p><strong>Requirement</strong></p>
<ul>
<li>Rooted device</li>
<li>Root explorer android application</li>
<li>Android ADB</li>
<li>Notepad+ windows application</li>
</ul>
<p>&nbsp;</p>
<p><strong>Procedure</strong></p>
<p>&nbsp;</p>
<p>1. Connect your device, turn on debug mode on your android and run this command in italic.</p>
<p><em>adb pull /system/build.prop  C:\        </em></p>
<p>This will fetch file called build.prop from your android and store it at root of C: drive.</p>
<p>&nbsp;</p>
<p>2. Now edit the build.prop using Notepad+ and change the parameter:</p>
<p><em>ro.sf.lcd_density=140</em></p>
<p>Change from 160 to 140.</p>
<p>&nbsp;</p>
<p>3. Open Root Explorer and mount the /system folder to read-write (rw)</p>
<p>&nbsp;</p>
<p>4. Store the build.prop file back to the X8 by running command:</p>
<p><em>adb push C:\build.prop /system</em></p>
<p>&nbsp;</p>
<p>5. Reboot your X8 and enjoy the new screen size <img src='http://www.misterfahrenheit.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Comment or improvement please say it below.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* Bigsquare_mrfa */
google_ad_slot = "4257197840";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><em></em></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.misterfahrenheit.com/2011/07/26/how-to-increase-lcd-density-in-xperia-x8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to back up windows user profile the easy way.</title>
		<link>http://www.misterfahrenheit.com/2011/07/19/how-to-back-up-windows-user-profile-the-easy-way/</link>
		<comments>http://www.misterfahrenheit.com/2011/07/19/how-to-back-up-windows-user-profile-the-easy-way/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 02:19:13 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.misterfahrenheit.com/?p=326</guid>
		<description><![CDATA[<p>Introduction</p>
<p>It is always a good idea to back up your windows user profiles just in case your computer stopped working. Much better if you can store it off site and this will make restoring the system painless. In windows 7, the user profiles is stored in C:\Users\username.</p>
<p>&#160;</p>
<p>How it works</p>
<p>Best summarize in a diagram below.</p>
<p>&#124; user profile <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.misterfahrenheit.com/2011/07/19/how-to-back-up-windows-user-profile-the-easy-way/">How to back up windows user profile the easy way.</a></span>]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>It is always a good idea to back up your windows user profiles just in case your computer stopped working. Much better if you can store it off site and this will make restoring the system painless. In windows 7, the user profiles is stored in C:\Users\username.</p>
<p>&nbsp;</p>
<p><strong>How it works</strong></p>
<p>Best summarize in a diagram below.</p>
<p>| user profile | &lt;&#8212;&#8212;&#8212;-synchronize&#8212;&#8212;&#8212;&#8212;&gt; |external backup|</p>
<p>&nbsp;</p>
<p><strong>Advantages</strong></p>
<p>Why should we care? There are many benefits  of doing a systematically user profile backup, for instance:</p>
<ul>
<li>Easily restores your files, bookmarks, favorites, images,etc on a fresh windows installation.</li>
<li>Automatically eradicate duplicate files.</li>
<li>Clever way to update your files and avoid rewritings.</li>
<li>Fast back up time.</li>
<li>It costs nothing (except for the external drive) because we&#8217;ll be  using Open Source app.</li>
</ul>
<p>&nbsp;</p>
<p><strong>Item Checklist</strong></p>
<ol>
<li>External harddisk, space are cheap nowadays. Get 1TB for god sake.</li>
<li><a title="Free File Sync" href="http://sourceforge.net/projects/freefilesync/" target="_blank">Free File Sync</a></li>
</ol>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* banner_mrfa */
google_ad_slot = "6279916715";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>&nbsp;</p>
<p><strong>Steps</strong></p>
<p>1 . Install Free File Sync software.</p>
<p>2. Connect your external drive.</p>
<p>3. Now launch the Free File Sync software. On the left side will be your user profile location. Click browse button and point it to your user profile.</p>
<div id="attachment_330" class="wp-caption alignnone" style="width: 681px"><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/users.png"><img class="size-full wp-image-330" title="User profile" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/users.png" alt="User profile" width="671" height="859" /></a><p class="wp-caption-text">User profile</p></div>
<p>&nbsp;</p>
<p>The right side will be the location of your external back up drive. Click browse and point it to your drive.</p>
<div id="attachment_331" class="wp-caption alignnone" style="width: 627px"><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/F.png"><img class="size-full wp-image-331" title="Back up drive" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/F.png" alt="Back up drive" width="617" height="719" /></a><p class="wp-caption-text">Back up drive</p></div>
<p>&nbsp;</p>
<p>4. Next click the synchronize button to start the process. For initial synchronization process, it will take quite a long time to run. For the next backup session its really quick. Well, that depends on the back up size alright.</p>
<div id="attachment_332" class="wp-caption alignnone" style="width: 286px"><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/sync.png"><img class="size-full wp-image-332" title="Synchronize" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/sync.png" alt="Synchronize" width="276" height="74" /></a><p class="wp-caption-text">Synchronize</p></div>
<p>&nbsp;</p>
<p>and after doing some calculations, it will show the diagram below. Click start.</p>
<div id="attachment_333" class="wp-caption alignnone" style="width: 293px"><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/startsync.png"><img class="size-full wp-image-333" title="Start sync" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/startsync.png" alt="Start sync" width="283" height="310" /></a><p class="wp-caption-text">Start sync</p></div>
<p>&nbsp;</p>
<p>5 .If you got an error dialog pop ups, most of the time it is harmless, please tick Ignore and click ignore button.</p>
<div id="attachment_334" class="wp-caption alignnone" style="width: 471px"><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/errorcopy.png"><img class="size-full wp-image-334" title="Its safe to click ignore" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/errorcopy.png" alt="Its safe to click ignore" width="461" height="252" /></a><p class="wp-caption-text">Its safe to click ignore</p></div>
<p>&nbsp;</p>
<p>6. At the end of the process you will get:</p>
<div id="attachment_335" class="wp-caption alignnone" style="width: 798px"><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/completed.png"><img class="size-full wp-image-335" title="Completed" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/completed.png" alt="Completed" width="788" height="534" /></a><p class="wp-caption-text">Completed</p></div>
<p>&nbsp;</p>
<p>Click ok and have your mind at rest now <img src='http://www.misterfahrenheit.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p><strong>Summary</strong></p>
<p>This guide may not be suitable for everyone. Hopefully some of you will find it useful and if you have other better method to do this, please share it on the comment box below. Thank you!</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* Bigsquare_mrfa */
google_ad_slot = "4257197840";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.misterfahrenheit.com/2011/07/19/how-to-back-up-windows-user-profile-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url='http://www.misterfahrenheit.com/wp-content/uploads/2011/07/users.png' length ='82418'  type='image/jpg' />	</item>
		<item>
		<title>Optimize Your AMD Raid Array for Speed and Stability.</title>
		<link>http://www.misterfahrenheit.com/2011/07/18/optimize-your-amd-raid-array-for-speed-and-stability/</link>
		<comments>http://www.misterfahrenheit.com/2011/07/18/optimize-your-amd-raid-array-for-speed-and-stability/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 14:28:31 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.misterfahrenheit.com/?p=307</guid>
		<description><![CDATA[<p>Introduction</p>
<p>Having used the AMD raid setup for 6 month, I have discovered the settings that work best for me. I have done comparison graph using hard disk benchmark software before and after the settings. However I will not post any benchmarks here since I dont intend to mess around my perfectly setup system now. This guide <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.misterfahrenheit.com/2011/07/18/optimize-your-amd-raid-array-for-speed-and-stability/">Optimize Your AMD Raid Array for Speed and Stability.</a></span>]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>Having used the AMD raid setup for 6 month, I have discovered the settings that work best for me. I have done comparison graph using hard disk benchmark software before and after the settings. However I will not post any benchmarks here since I dont intend to mess around my perfectly setup system now. This guide is for AMD system only</p>
<p><strong>Prerequisite</strong></p>
<ul>
<li>AMD SB700 and SB800 series with Raid support</li>
<li>Mechanical Harddisk</li>
<li>AMD Raid Xpert software</li>
<li>Windows 7</li>
</ul>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* banner_mrfa */
google_ad_slot = "6279916715";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><strong></strong></p>
<p>Step</p>
<p><strong></strong>1. Click start menu and type inside the search box &#8211; <em>device manager</em> and hit enter. Now expand Disk Drives and double click AMD XXXX  SCSI Disk Device<br />
<a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/device.png"><img class="alignnone size-full wp-image-313" title="Device Manager" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/device.png" alt="Device Manager" width="614" height="547" /></a></p>
<p>2. You will see the property box and then go to Policies Tab. Please tick &#8221; Turn off windows write-cache buffer on the device&#8221;. Doing this your disk is more susceptible for corruption in case of power failure but performance trade-off is huge. I&#8217;d say its worth it because I have an off-site backup system.</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/scsi.png"><img class="alignnone size-full wp-image-316" title="SCSI" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/scsi.png" alt="SCSI" width="416" height="462" /></a></p>
<p>3. Next, install the AMD Raid Xpert. You can get it from<a title="AMD Download" href="http://support.amd.com" target="_blank"> AMD download</a> website.</p>
<p>4. Launch AMD Raid Xpert program and sign in. The default credential is:</p>
<p>Username: admin<br />
Password: admin</p>
<p>5.  Now expand Physical Drive View and select your first hard disk. On the right side, choose Settings and please check:</p>
<p>Write cache enabled: Enable</p>
<p>and</p>
<p>NCQ enabled: Disable</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/drives.png"><img class="alignnone size-full wp-image-318" title="Drives" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/drives.png" alt="Drives" width="584" height="252" /></a></p>
<p>Repeat this for all your physical drives.</p>
<p>6. That&#8217;s it! Now you can run your own benchmark and see the improvement. I believe that graph will be much more stable and consistent.<br />
<strong>Summary</strong></p>
<p>I did not have resource to try this setup on any other machine so it may work differently for you. The only tell sign is to run benchmark right after configuration changes. You may want to do the changes one by one and then running the benchmark to see the changes. Doing so, it will be much easier to undone any mishaps. Share your opinion below.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* Bigsquare_mrfa */
google_ad_slot = "4257197840";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.misterfahrenheit.com/2011/07/18/optimize-your-amd-raid-array-for-speed-and-stability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url='http://www.misterfahrenheit.com/wp-content/uploads/2011/07/device.png' length ='69502'  type='image/jpg' />	</item>
		<item>
		<title>Step by step tutorial &#8211; Enable JIT Compiler for Xperia X8 / W8</title>
		<link>http://www.misterfahrenheit.com/2011/07/18/step-by-step-tutorial-enable-jit-compiler-for-xperia-x8-w8/</link>
		<comments>http://www.misterfahrenheit.com/2011/07/18/step-by-step-tutorial-enable-jit-compiler-for-xperia-x8-w8/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 00:57:23 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Gadgets]]></category>

		<guid isPermaLink="false">http://www.misterfahrenheit.com/?p=271</guid>
		<description><![CDATA[<p>Introduction</p>
<p>The Just In Time (JIT) compiler is an android system optimization component. Enabling JIT in your device will improve your Android experience in terms of speed and smoothness. Some say it even extends your battery life. By the time this tutorial is created, the Android version for X8 is 2.1.</p>
<p>Objective</p>
<p>At the end of this tutorial, you <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.misterfahrenheit.com/2011/07/18/step-by-step-tutorial-enable-jit-compiler-for-xperia-x8-w8/">Step by step tutorial &#8211; Enable JIT Compiler for Xperia X8 / W8</a></span>]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>The Just In Time (JIT) compiler is an android system optimization component. Enabling JIT in your device will improve your Android experience in terms of speed and smoothness. Some say it even extends your battery life. By the time this tutorial is created, the Android version for X8 is 2.1.</p>
<p><strong>Objective</strong></p>
<p>At the end of this tutorial, you will be able to get higher score in linpack and quadrant benchmark software.</p>
<p>&nbsp;</p>
<table style="width: 649px; height: 153px;" border="1" cellspacing="1" cellpadding="1">
<tbody>
<tr>
<td></td>
<td style="text-align: center;">Quadrant</td>
<td style="text-align: center;">Linpack</td>
</tr>
<tr>
<td>Before</td>
<td> <a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/snap20110718_065900.png"><img class="alignnone size-medium wp-image-275" title="Quadrant old" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/snap20110718_065900-200x300.png" alt="Quadrant old" width="200" height="300" /></a></td>
<td> <a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/snap20110718_070945.png"><img class="alignnone size-medium wp-image-276" title="Linpack old" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/snap20110718_070945-200x300.png" alt="Linpack old" width="200" height="300" /></a></td>
</tr>
<tr>
<td>After</td>
<td> <a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/snap20110718_081531.png"><img class="alignnone size-medium wp-image-277" title="Quadrant new" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/snap20110718_081531-200x300.png" alt="Quadrant new" width="200" height="300" /></a></td>
<td> <a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/snap20110718_081109.png"><img class="alignnone size-medium wp-image-278" title="Linpack new" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/snap20110718_081109-200x300.png" alt="Linpack new" width="200" height="300" /></a></td>
</tr>
</tbody>
</table>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* banner_mrfa */
google_ad_slot = "6279916715";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><strong>Item checklist</strong></p>
<ul>
<li>JiT-toggle-0.1.zip &#8211; You can get this from xda-developer forum.</li>
<li>ADB files &#8211; Android Debug Bridge. It contains file like adb.exe, AdbWinApi.dll, etc. Google for it.</li>
<li>Notepad++ software</li>
<li>Your device must be rooted. Google for it.</li>
<li>Windows Operating system &#8211; I don&#8217;t have any other Os.</li>
</ul>
<p>Once you have all this requirement, proceed to the next step.</p>
<p><strong>Steps</strong></p>
<ol>
<li>Extract both ADB.zip and JiT-toggle-0.1.zip to your desktop. Now you will have two folder on your desktop called ADB and JiT-toggle-0.1.</li>
<li>Run windows command prompt and navigate to ADB folder.<br />
Type:<em></p>
<p>adb pull /system/build.prop C:\                          </em>and enter.</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/adb-pull.png"><img class="alignnone size-full wp-image-281" title="adb pull" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/adb-pull.png" alt="adb pull" width="677" height="342" /></a></li>
<li>Now you will now have file called <em>build.prop</em> in you C:\ drive. Copy the file and go to your JiT-toggle-0.1 folder. Paste the file into both folder called vmlibs_stock and vmlibsv2, replace any file if prompted.</li>
<li>Now open folder JiT-toggle-0.1/vmlibsv2 and open build.prop with notepad++.<br />
Scroll to the most bottom and change:</p>
<p><em>dalvik.vm.heapsize=24m</em>           to          <em>dalvik.vm.heapsize=<strong>32</strong>m</p>
<p></em><em></em>and make sure that:</p>
<p><em>debug.sf.hw=1</em>                     is also available</p>
<p>Now type:</p>
<p><em>dalvik.vm.execution-mode=int:jit</em>                     right under                <em>keyguard.no_require_sim=true</em></p>
<p>Now save changes and close Notepad++</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/notepadplus.png"><img class="alignnone size-full wp-image-282" title="notepadplus" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/notepadplus.png" alt="notepadplus" width="599" height="218" /></a></li>
<li>Now mount your sdcard and paste JiT-toggle-0.1 folder inside your sdcard.Unmount your sdcard, unplug cable and reconnect.</li>
<li>Now return to your command prompt.<br />
Type:</p>
<p><em>adb shell</em>                 and enter<em><br />
su  </em>                           and enter</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/su.png"><img class="alignnone size-full wp-image-283" title="su" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/su.png" alt="" width="676" height="341" /></a></p>
<p>Now type:</p>
<p><em>cd /sdcard/JiT-toggle-0.1  </em>               and enter<br />
<em>sh enable_jit.sh   </em>                                    and enter</p>
<p><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/enablejit.png"><img class="alignnone size-full wp-image-284" title="enable jit" src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/enablejit.png" alt="enable jit" width="632" height="359" /></a></p>
<p>Your phone will reboot and it should be ready. Run necessary benchmark to compare with mine <img src='http://www.misterfahrenheit.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>
<p><strong><br />
Troubleshooting</strong></p>
<p>If you failed to get the output from the command prompt like in the screenshot, download another version of adb and retry.</p>
<p><strong>Summary</strong></p>
<p>I can felt that my X8 is slightly responsive and much smoother now. I can say that it is worth all the trouble in doing this. In case or failure, you can always reflash your X8 with the Sony Ericsson updater program.Good luck!</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* Bigsquare_mrfa */
google_ad_slot = "4257197840";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.misterfahrenheit.com/2011/07/18/step-by-step-tutorial-enable-jit-compiler-for-xperia-x8-w8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url='http://www.misterfahrenheit.com/wp-content/uploads/2011/07/snap20110718_065900.png' length ='46047'  type='image/jpg' />	</item>
		<item>
		<title>Fix for wireless mouse stutters</title>
		<link>http://www.misterfahrenheit.com/2011/07/09/fix-for-wireless-mouse-stutters/</link>
		<comments>http://www.misterfahrenheit.com/2011/07/09/fix-for-wireless-mouse-stutters/#comments</comments>
		<pubDate>Sat, 09 Jul 2011 14:32:20 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.misterfahrenheit.com/?p=260</guid>
		<description><![CDATA[<p>


</p>
<p>I have accidentally discovered the fix for this issue I am having. At first I thought my cheapo wireless mouse is bad because I have put a fresh new battery and yet it the mouse pointer movement is jerky again. FYI, I am using Aluminium ATX tower and the USB wireless mouse adapter is behind the <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.misterfahrenheit.com/2011/07/09/fix-for-wireless-mouse-stutters/">Fix for wireless mouse stutters</a></span>]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* banner_mrfa */
google_ad_slot = "6279916715";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>I have accidentally discovered the fix for this issue I am having. At first I thought my cheapo wireless mouse is bad because I have put a fresh new battery and yet it the mouse pointer movement is jerky again. FYI, I am using Aluminium ATX tower and the USB wireless mouse adapter is behind the case.  I don&#8217;t know if this will work with your wireless mouse but it is worth trying.</p>
<p>The problem is due to WEAK signal strength! Or disruption of wireless signal. To solve this, get a USB cable like in the picture below and you can place your wireless USB receiver anywhere within the cable length. Now, put your USB wireless adapter in sight-line  of your mouse which should be near your monitor. After putting the USB wireless adapter near the mouse, my problem disappears <img src='http://www.misterfahrenheit.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div id="attachment_261" class="wp-caption alignnone" style="width: 310px"><a href="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/USB-Cable-Am-to-Af-Data-Cable-Computer-Cable.jpg"><img class="size-medium wp-image-261" title="Something that look like this." src="http://www.misterfahrenheit.com/wp-content/uploads/2011/07/USB-Cable-Am-to-Af-Data-Cable-Computer-Cable-300x223.jpg" alt="Something that look like this." width="300" height="223" /></a><p class="wp-caption-text">Something that look like this.</p></div>
<p>Does it work for you? Share your comment below. Thanks for reading.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7135554879968877";
/* Bigsquare_mrfa */
google_ad_slot = "4257197840";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.misterfahrenheit.com/2011/07/09/fix-for-wireless-mouse-stutters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url='http://www.misterfahrenheit.com/wp-content/uploads/2011/07/USB-Cable-Am-to-Af-Data-Cable-Computer-Cable.jpg' length ='69391'  type='image/jpg' />	</item>
	</channel>
</rss>

