<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3511439926294599678</id><updated>2012-01-18T03:17:26.384-05:00</updated><category term='media'/><category term='grub'/><category term='XP'/><category term='automatic logon'/><category term='clocksource'/><category term='mirror'/><category term='lucid'/><category term='pidgin'/><category term='template'/><category term='hardy'/><category term='library'/><category term='windows 7'/><category term='css'/><category term='git'/><category term='globus'/><category term='player'/><category term='windows'/><category term='jaunty'/><category term='eclipse'/><category term='Album Artwork'/><category term='boot time'/><category term='notebook'/><category term='programs'/><category term='backup'/><category term='linux'/><category term='indiana'/><category term='screen'/><category term='gnome-do'/><category term='java'/><category term='programming'/><category term='thai fonts'/><category term='thai student'/><category term='autorun'/><category term='keyring'/><category term='blog'/><category term='intrepid'/><category term='movie'/><category term='android'/><category term='firefox 3'/><category term='iTunes'/><category term='emulator'/><category term='software'/><category term='bloomington'/><category term='dropbox'/><category term='microphone'/><category term='version control'/><category term='ubuntu'/><category term='touchpad'/><category term='nvidia'/><category term='Ipod nano'/><title type='text'>Just Another Lazy-Update Blog</title><subtitle type='html'>Patanachai's gibberish</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.patanachai.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>24</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-2720194702338606026</id><published>2011-08-27T14:46:00.003-04:00</published><updated>2011-08-27T19:34:30.043-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='eclipse'/><category scheme='http://www.blogger.com/atom/ns#' term='emulator'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='android'/><title type='text'>Android Emulator and Eclipse</title><content type='html'>Last year, I bought Google Nexus One to use as my first smartphone. I chose Android over Iphone because it is easier for a casual developer like me to build an application with the current environment (windows and linux). Also, I would better stick with my comfortable programming language, Java. &lt;br /&gt;&lt;br /&gt;After getting a phone, I've developed a simple application to help me generate my password for everything. Yes (Nerd Alert!!), I come up with my own algorithm to generate a password from a specific keyword. Therefore, I just need to choose an obvious and easy-to-remembered keyword. Moreover, I can use a different keyword for a different place/websites. For example, the word "Whitehouse" would generate a password "9jk7Gk62". The real algorithm is nothing much; it is built from a simple encryption algorithm, called "ceasar cipher", a bit operation, and a simple hash function. &lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-tqEzf77isPs/Tlk-ZK1FBEI/AAAAAAAAAvE/w0KCeUNa_YM/s1600/password_generator_atrix.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="259" src="http://3.bp.blogspot.com/-tqEzf77isPs/Tlk-ZK1FBEI/AAAAAAAAAvE/w0KCeUNa_YM/s320/password_generator_atrix.png" width="320" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-size: 78%;"&gt;Password Generator Application on Motorola Atrix 4g&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;After a long introduction, there is noting wrong with an application. The problem is when I got a new smartphone (Motorola Atrix 4g). The password generator application is working fine, but the screen size of the application is wrong because Atrix has a better resolution than Nexus One. I have to reinstall ADT Plugin for Eclispe and AndroidSDK. After open a project in Eclipse, I cannot start an emulator. The error in the console is&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;invalid command-line parameter: Files&lt;br /&gt;Hint: use '@foo' to launch a virtual device named 'foo'.&lt;br /&gt;please use -help for more information&lt;br /&gt;&lt;/code&gt; &lt;br /&gt;&lt;br /&gt;After google to find the solution, from many sites&lt;sup&gt;[1,2,3]&lt;/sup&gt;, the problem is with R12 SDK. It doesn't allow space in SDK path. But, if you use AndroidSDK windows installer like me, normally default path is "c:\Programs file\android". First, I tried to change the path in the Eclipse configuration from &lt;b&gt;"c:\Program files\android"&lt;/b&gt; to &lt;b&gt;"c:\Progra~1\android"&lt;/b&gt;. This doesn't work for me since Eclipse will tell me that the directory isn't existed. So, The solution for me is to reinstall an AndroidSDK to a location with out space such as "c:\android". This is definitely a bug!!!&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 85%;"&gt;&lt;br /&gt;&lt;sup&gt;[1]&lt;/sup&gt; - &lt;a href="http://www.android.net/forum/beginning-developers/62877-invalid-command-line-parameter-eclipse-android.html"&gt;http://www.android.net/forum/beginning-developers/62877-invalid-command-line-parameter-eclipse-android.html&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 85%;"&gt;&lt;sup&gt;[2]&lt;/sup&gt; - &lt;a href="http://www.wallpaperama.com/forums/_wlxpee.html"&gt;http://www.wallpaperama.com/forums/_wlxpee.html&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 85%;"&gt;&lt;sup&gt;[3]&lt;/sup&gt; - &lt;a href="http://stackoverflow.com/questions/6638713/android-emulator-is-not-starting-showing-invalid-command-line-parameter"&gt;http://stackoverflow.com/questions/6638713/android-emulator-is-not-starting-showing-invalid-command-line-parameter&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-2720194702338606026?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/2720194702338606026/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=2720194702338606026' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/2720194702338606026'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/2720194702338606026'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2011/08/android-emulator-and-eclipse.html' title='Android Emulator and Eclipse'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/-tqEzf77isPs/Tlk-ZK1FBEI/AAAAAAAAAvE/w0KCeUNa_YM/s72-c/password_generator_atrix.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-6921807626983067290</id><published>2011-06-23T15:08:00.003-04:00</published><updated>2011-08-02T19:23:43.653-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='library'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='globus'/><title type='text'>Adding library in Ubuntu</title><content type='html'>Installing application in Ubuntu which doesn't come with .deb package is usually required more steps to make it work. When working with Teragrid, I need &lt;a href="http://www.globus.org/toolkit/"&gt;Globus Toolkit&lt;/a&gt; to connect to a cluster. After download and install required tools using&lt;br /&gt;&lt;br /&gt;&lt;code&gt;export GLOBUS_LOCATION=/path/to/install&lt;br /&gt;make gsi-myproxy gsi-openssh&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;when I tried to run &lt;i&gt;gsissh, &lt;/i&gt;I encounter " &lt;b&gt;error while loading shared libraries: libglobus_gss_assist_gcc64dbg.so.0&lt;/b&gt; ". The problem is &lt;i&gt;gsissh&lt;/i&gt; doesn't link to the installed libraries. We can look up required libraries for application by using&lt;br /&gt;&lt;br /&gt;&lt;code&gt;ldd /path/to/application&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;The libglobus_gss_assist_gcc64dbg.so.0 is actually installed in the same location of Globus Toolkit, but Ubuntu doesn't automatically link it for us. So, we need to add libraries location to our system. Using command&lt;br /&gt;&lt;br /&gt;&lt;code&gt;sudo ldconfig /path/to/my/usr/local/lib/&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 85%;"&gt;&lt;sup&gt;[1]&lt;/sup&gt; - &lt;a href="http://ubuntuforums.org/showthread.php?t=496553"&gt;http://ubuntuforums.org/showthread.php?t=496553&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-6921807626983067290?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/6921807626983067290/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=6921807626983067290' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/6921807626983067290'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/6921807626983067290'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2011/06/adding-library-in-ubuntu.html' title='Adding library in Ubuntu'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-5247352538296699234</id><published>2011-05-25T18:13:00.007-04:00</published><updated>2011-08-02T19:22:35.420-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blog'/><category scheme='http://www.blogger.com/atom/ns#' term='backup'/><category scheme='http://www.blogger.com/atom/ns#' term='template'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>&lt;code&gt; and &lt;pre&gt; CSS Style</title><content type='html'>After long time without update, I just realize that Blogger pushed out a new template design. In my opinion, it looks better, so I've changed my template without hesitation. The problem is I used custom style for &amp;lt;pre&gt; and &amp;lt;code&gt; tag to represent a program code. When I've applied the template, I forgot to back up the old style. I had to spend some time find the correct style for it although, it is very easy CSS code. So, I will blog it as my backup.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;pre {&lt;br /&gt;&amp;nbsp; overflow: auto;&lt;br /&gt;&amp;nbsp; border: solid 1px #9AACAE;&lt;br /&gt;&amp;nbsp; font-family: courier,Georgia,Serif;&lt;br /&gt;&amp;nbsp; color: $(body.text.color);&lt;br /&gt;&amp;nbsp; background: #EFEFEF;&lt;br /&gt;&amp;nbsp; margin: 5px;&lt;br /&gt;&amp;nbsp; padding: 5px;&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-5247352538296699234?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/5247352538296699234/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=5247352538296699234' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/5247352538296699234'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/5247352538296699234'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2011/05/code-block-style.html' title='&amp;lt;code&gt; and &amp;lt;pre&gt; CSS Style'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-8802229863057193139</id><published>2010-08-14T00:18:00.005-04:00</published><updated>2010-08-14T00:23:46.629-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='java'/><category scheme='http://www.blogger.com/atom/ns#' term='software'/><category scheme='http://www.blogger.com/atom/ns#' term='programming'/><title type='text'>Trivial but important - Java Random Number</title><content type='html'>Summer 2010 in Bloomington is nearly end (I hope it ends sooner since it's freaking hot here). I've worked as a researcher on &lt;a href="https://www.teragrid.org/"&gt;TeraGrid&lt;/a&gt; project for entire summer. My main task is to create a test library (program) to use against GRAM5 gateway which will be deployed on TeraGrid (soon). It is coded in Java and used for both scalability and reliability test. The problem comes up when I try to submit multiple jobs to GRAM5 gateway from multiple machines. If I start submission at the same time for all machines, program will get a connection reset from a server. I think it is caused by the fact that network router or server has a mechanism to prevent flooding.&lt;br /&gt;&lt;br /&gt;At first, I use a simple solution which is delaying a job submission randomly in each machine using &lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;java.util.Random&lt;/span&gt; class. It worked fine up to around 50 machines then it started to get connection reset again. The situation becomes worse when I use 100 nodes, 90% of jobs fail. Therefore, I google around knowing in my mind that there must be something wrong about Random class. Finally, I found this site&lt;sup&gt;[1]&lt;/sup&gt;. The important properties of Random class are&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Random number is generated in deterministic way based on a given number called &lt;b&gt;seed&lt;/b&gt;&lt;/li&gt;&lt;li&gt;Default constructor will use &lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;System.currentTimeMillis()&lt;/span&gt;as seed. &lt;/li&gt;&lt;/ul&gt;So, if we give the same seed number to Random class, it will generate a same sequence of random number. In my case, it's likely that each machines create a Random object at the same time, so they get the same seed. The solution is simple, we need to give a different seed on different machines. I use &lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;java.util.UUID &lt;/span&gt;to generate a unique ID across multiple machines (the odd is very low for different JVM to generate the same UUID) and create a seed from it. Here is my final code&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Random random = new Random(UUID.randomUUID().hashCode());&lt;br /&gt;int sleepTime = random.nextInt(120)&lt;br /&gt;Thread.sleep(sleepTime * 1000l);&lt;/pre&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 85%;"&gt;&lt;sup&gt;[1]&lt;/sup&gt; - &lt;a href="http://java.about.com/od/javautil/a/randomnumbers.htm"&gt;http://java.about.com/od/javautil/a/randomnumbers.htm&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-8802229863057193139?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/8802229863057193139/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=8802229863057193139' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/8802229863057193139'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/8802229863057193139'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2010/08/trivial-but-important-java-random.html' title='Trivial but important - Java Random Number'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-4221103877528506706</id><published>2010-05-15T15:23:00.021-04:00</published><updated>2011-06-23T20:12:09.088-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='screen'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='lucid'/><category scheme='http://www.blogger.com/atom/ns#' term='nvidia'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Ubuntu 10.04 Lucid Lynx and Nvidia Problem</title><content type='html'>Eventually, First year of my graduate study is passed (time flies). When the semester ends, it's about time to clean my laptop. Before reinstalling Windows, I decided to try Lucid Lynx on my new laptop  (Sony Vaio CW). An obvious improvement in this version is User Interface which I quite like it.&lt;br /&gt;&lt;br /&gt;First obstacle is installation and live CD mode cannot run properly on my machine. It always display only black screen. I found that the problem is with my Nvidia Geforce GT230M. The solution&lt;sup&gt;[1]&lt;/sup&gt; is to enable 'nomodeset' option when trying to boot (using F6).&lt;br /&gt;&lt;br /&gt;After finish installation, Ubuntu still cannot be booted since it suffers from the same problem. So, I need to go into live mode and edit grub file (/etc/default/grub) to add 'nomodeset' parameter. But, because instance that run is not installed instance, I cannot use 'update-grub' script to update boot loader. Therefore, I also need to edit grub.conf (/boot/grub/grub.conf) to make sure that next boot will be started with 'nomodeset'.&lt;br /&gt;Note: instead of going into live mode, you can press shift during grub2 load to change boot option. I've not tried it myself but found it on an article.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_WfNme6wEiic/S-8czFmkNbI/AAAAAAAAAjA/itNDBrUyL0o/s1600/lucid_lynx_screen.png"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 180px;" src="http://2.bp.blogspot.com/_WfNme6wEiic/S-8czFmkNbI/AAAAAAAAAjA/itNDBrUyL0o/s320/lucid_lynx_screen.png" alt="" id="BLOGGER_PHOTO_ID_5471623736281281970" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;Ubuntu 10.04 on Sony VAIO CW&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;Not yet, using a free OS is not that easy :p. After I installed Nvidia driver for my machine, the screen is not correctly displayed. It is the problem that Nvidia's driver cannot detect my monitor (I experienced a Nvidia's problem with Ubuntu since Intrepid Ibex). The solution&lt;sup&gt;[2-4]&lt;/sup&gt; is to custom xorg.conf (/etc/X11/xorg.conf) file to use custom EDID (Extended display identification data). So, I have to reinstall windows and export EDID using programe named 'softMCCS'. Then, reinstall Ubuntu and going through a whole process again. Finally, make a reference to a EDID exported by windows by adding this code&lt;br /&gt;&lt;pre&gt;Section "Device"&lt;br /&gt;Identifier    "Device0"&lt;br /&gt;Driver        "nvidia"&lt;br /&gt;VendorName    "NVIDIA Corporation"&lt;br /&gt;Option        "NoLogo"       "True"&lt;br /&gt;Option        "ConnectedMonitor"   "DFP-0"&lt;br /&gt;Option        "CustomEDID"         "DFP-0:/etc/X11/&lt;edid&gt;.bin"&lt;br /&gt;EndSection&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;And Voilà!! Working Lucid Lynx on laptop with Nvidia card.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[1]&lt;/sup&gt; - &lt;a href="http://ubuntu-tutorials.com/2010/05/06/ubuntu-10-04-lucid-blank-screen-at-startup-workaround/"&gt;http://ubuntu-tutorials.com/2010/05/06/ubuntu-10-04-lucid-blank-screen-at-startup-workaround/&lt;/a&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[2]&lt;/sup&gt; - &lt;a href="http://ubuntuforums.org/showthread.php?t=1345907"&gt;http://ubuntuforums.org/showthread.php?t=1345907&lt;/a&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[3]&lt;/sup&gt; - &lt;a href="http://www.linlap.com/wiki/sony+vaio+cw"&gt;http://www.linlap.com/wiki/sony+vaio+cw&lt;/a&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[4]&lt;/sup&gt; - &lt;a href="http://www.nvnews.net/vbulletin/showpost.php?p=2118873&amp;amp;postcount=22"&gt;http://www.nvnews.net/vbulletin/showpost.php?p=2118873&amp;amp;postcount=22&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-4221103877528506706?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/4221103877528506706/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=4221103877528506706' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/4221103877528506706'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/4221103877528506706'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2010/05/ubuntu-1004-lucid-lynx-and-nvidia.html' title='Ubuntu 10.04 Lucid Lynx and Nvidia Problem'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_WfNme6wEiic/S-8czFmkNbI/AAAAAAAAAjA/itNDBrUyL0o/s72-c/lucid_lynx_screen.png' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-3183587992187196490</id><published>2009-10-03T12:55:00.006-04:00</published><updated>2009-10-03T20:36:08.664-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='version control'/><category scheme='http://www.blogger.com/atom/ns#' term='git'/><category scheme='http://www.blogger.com/atom/ns#' term='dropbox'/><title type='text'>Dropbox and GIT</title><content type='html'>This semester (fall 09), I have attended a project-based course at IU, Bloomington. It's a network class. First project is to use &lt;a href="http://www.tcpdump.org/"&gt;libpcap&lt;/a&gt; to read packets from capture file (.pcap) and analyze each packet (e.g. IP, TCP, UDP, header size, flag, checksum). Everything in the project went fine, until I want to find some personal version control to use with it. &lt;a href="http://www.assembla.com/"&gt;Assembla&lt;/a&gt; used to provide private repository for free, but now they change their policy. So, I looked around and found &lt;a href="http://www.unfuddle.com/"&gt;Unfuddle&lt;/a&gt;, it provided 100MB private project with unlimited repositories. However, it allows only 2 people in project for free edition. It should be work for me because I would use it alone, still it didn't satisfy my need. Finally, I came across &lt;a href="http://www.getdropbox.com/"&gt;Dropbox&lt;/a&gt;, which gives you 2GB of space and the ability to share folder with your friends.&lt;br /&gt;&lt;br /&gt;I first used &lt;a href="http://www.getdropbox.com/"&gt;Dropbox&lt;/a&gt; about 1 years ago when I was at home. I wasn't impressed with it because it seems to be very slow in Thailand. Now, I'm in U.S., I have to say it a lot faster. Although I get used to using SVN, my solution is to use it with Git repository because it's distributed version control instead of centralization.  &lt;a href="http://www.getdropbox.com/"&gt;Dropbox&lt;/a&gt; has already provided version control you can revert or undelete your files, but Git will provide more flexibility for programmers.&lt;br /&gt;&lt;br /&gt;The way to do it is simple, I just install git and &lt;a href="http://www.getdropbox.com/"&gt;Dropbox&lt;/a&gt; on all my machines (Laptop and department's machines). Then create Git repository folder you want to share via&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$git init&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;and add all files in folder or files you want through&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$git add .&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;After you install &lt;a href="http://www.getdropbox.com/"&gt;Dropbox&lt;/a&gt;, it will become like a folder on that computer. Thus, I just clone Git repository to Dropbox's folder. For example, if my Git repository is at ~/ptangcha/network my command would be&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$git clone ~/ptangcha/network ~/Dropbox/network&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Done! I have Git repository in my Dropbox. Now, if I want to get my code in other machines, I just clone Git repository from Dropbox to folder on machines.&lt;br /&gt;&lt;br /&gt;Since my code will be run on Linux machine (no libpcap on windows :( ), I don't want to to convert LF (Line feed) to CRLF (newline for windows) every time I add new file. Git converts it to CRLF because it detect that my repository is on Windows. So, I just configure git with this code.&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$git config core.autocrlf false&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;I'm still newbie to Git. There are many useful command and many things to play with before I can fully benefit from it.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;- &lt;a href="http://www.ubuntugeek.com/how-to-enable-automatic-login-in-ubutnu.html"&gt;http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-3183587992187196490?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/3183587992187196490/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=3183587992187196490' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/3183587992187196490'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/3183587992187196490'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2009/10/dropbox-and-git.html' title='Dropbox and GIT'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-4053992248946374796</id><published>2009-08-24T19:36:00.007-04:00</published><updated>2009-08-24T21:44:09.916-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='bloomington'/><category scheme='http://www.blogger.com/atom/ns#' term='indiana'/><category scheme='http://www.blogger.com/atom/ns#' term='thai student'/><title type='text'>Tough trip to Bloomington, IN</title><content type='html'>I have been to US for a while, but I didn't update my status. First of all, let's me complain about my flight. Normal routine will take about 26 hours including waiting time and shuttle bus time from Indianapolis to Bloomington. Unfortunately, there was a delay between the domestic flight from Chicago to Indianapolis. That caused me a lot of trouble since I would arrive very close for the departure time of last shuttle bus on that day. Moreover, United Airline also lost my baggage during that flight. As a result, I definitely missed the last shuttle at 10:40pm because I had to claim my baggage at customer service, and had to stay at the airport until 6:40am. However, unfortunate event doesn't stop, I'd known after I purchased $25 shuttle bus ticket that there was a $15 bus service from Star of America (So for anyone going to Bloomington use this bus). After arriving Bloomington and staying at Indiana Memorial Union a couple of day, everything gets better. I recovered from fatigue and my bag also arrived at the hotel.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_WfNme6wEiic/SpNAKvwbFZI/AAAAAAAAAbw/zRUU11hMbBA/s1600-h/IMG_0104.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 225px;" src="http://3.bp.blogspot.com/_WfNme6wEiic/SpNAKvwbFZI/AAAAAAAAAbw/zRUU11hMbBA/s400/IMG_0104.JPG" alt="" id="BLOGGER_PHOTO_ID_5373709333745571218" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;Indiana Memorial Union Hotel&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;I have quite a lot of free time before the class starts. Many new things to learn, many new things to see. Bloomington is a quiet town when I had arrived. Nevertheless, many students come back to their school today (and will be more on Wednesday), the town becomes more vivacious. From the information I get, Bloomington will be more beautiful in fall. Let's wait and see.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-4053992248946374796?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/4053992248946374796/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=4053992248946374796' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/4053992248946374796'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/4053992248946374796'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2009/08/tough-trip-to-bloomington-in.html' title='Tough trip to Bloomington, IN'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_WfNme6wEiic/SpNAKvwbFZI/AAAAAAAAAbw/zRUU11hMbBA/s72-c/IMG_0104.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-1015824997800498506</id><published>2009-07-28T11:14:00.004-04:00</published><updated>2009-07-28T12:22:18.790-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='windows 7'/><title type='text'>Windows 7</title><content type='html'>I have changed from Ubuntu to Windows 7 RC for two months. I think I need a license OS when I go to US and my ASUS M9V doesn't come with it. Although, Ubuntu is very good open source OS, I need some software which is available only on windows (or works best with it) such as Skype,  etc. Another reason is I want to try Windows 7 because I'm going to buy a new notebook and of course, I prefer Windows [Bye MAC :( ].  I hope I get it before my Windows 7 RC expired.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_WfNme6wEiic/Sm8kBuOM4MI/AAAAAAAAAa4/U6-Wu1NkfuU/s1600-h/windows7_screen.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_WfNme6wEiic/Sm8kBuOM4MI/AAAAAAAAAa4/U6-Wu1NkfuU/s400/windows7_screen.png" alt="" id="BLOGGER_PHOTO_ID_5363545293227614402" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;Windows 7 Desktop Screen&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;I've to say that Windows 7 looked Nice! In my opinion, it consumes less Ram, faster than Vista and more beautiful, secure than XP. The things that I'm most admired in Windows 7 are new "Taskbar" and "System Tray". Taskbar is more like MAC's Dock, the coolest feature are  program pinning and preview windows. About System Tray, you can specific icons and notifications that you want to hide or show.&lt;br /&gt;Finally, Windows 7 RC is not much stable (I reinstall firefox about 10 times), but I can bare with it and I hope RTM will much more better.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-1015824997800498506?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/1015824997800498506/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=1015824997800498506' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/1015824997800498506'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/1015824997800498506'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2009/07/windows-7.html' title='Windows 7'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_WfNme6wEiic/Sm8kBuOM4MI/AAAAAAAAAa4/U6-Wu1NkfuU/s72-c/windows7_screen.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-8080076057767650036</id><published>2009-05-13T06:19:00.005-04:00</published><updated>2009-05-13T06:38:09.619-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='jaunty'/><category scheme='http://www.blogger.com/atom/ns#' term='pidgin'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Disable Online User Notification in Pidgin</title><content type='html'>I admit that new notification system in Jaunty Jackalope is better and more user friendly. However, when it comes to IM, being distracted every time when contact becomes online is quite annoying. Notification system in Pidgin is plug-ins called 'Libnotify popups' and , luckily, developer provides user settings for it. To disable notification when your contact becomes online.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_WfNme6wEiic/SgqiSCxe9vI/AAAAAAAAAZo/aHB5OSItzV4/s1600-h/pidgin-user-online-notification.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_WfNme6wEiic/SgqiSCxe9vI/AAAAAAAAAZo/aHB5OSItzV4/s400/pidgin-user-online-notification.png" alt="" id="BLOGGER_PHOTO_ID_5335255139439539954" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;Pidgin Buddy Signs On Notification&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Tool -&gt; Plugins (Ctrl + U).&lt;/li&gt;&lt;li&gt;Select 'Libnotify popups' then &lt;span style="font-style: italic;"&gt;Configure Plugin.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;remove 'Buddy signs on' checkbox. Done.&lt;/li&gt;&lt;/ul&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_WfNme6wEiic/SgqiR-CU8HI/AAAAAAAAAZg/AXcsamXa_GA/s1600-h/pidgin-libnotify-config.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 314px;" src="http://4.bp.blogspot.com/_WfNme6wEiic/SgqiR-CU8HI/AAAAAAAAAZg/AXcsamXa_GA/s400/pidgin-libnotify-config.png" alt="" id="BLOGGER_PHOTO_ID_5335255138168008818" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;Libnotify Popups Configuration&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-8080076057767650036?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/8080076057767650036/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=8080076057767650036' title='81 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/8080076057767650036'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/8080076057767650036'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2009/05/disable-online-user-notification-in.html' title='Disable Online User Notification in Pidgin'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_WfNme6wEiic/SgqiSCxe9vI/AAAAAAAAAZo/aHB5OSItzV4/s72-c/pidgin-user-online-notification.png' height='72' width='72'/><thr:total>81</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-3149201039948626355</id><published>2009-05-07T06:32:00.008-04:00</published><updated>2009-05-07T07:06:33.563-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='automatic logon'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='jaunty'/><category scheme='http://www.blogger.com/atom/ns#' term='keyring'/><category scheme='http://www.blogger.com/atom/ns#' term='gnome-do'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Gnome Do and Gnome Keyring again in Jaunty Jackalop</title><content type='html'>Same problem with &lt;a href="http://patanachai.blogspot.com/2009/03/gnome-do-gnome-keyring-and-auto-login.html"&gt;the previous post&lt;/a&gt;. However, the location and procedure to solve the problem have changed in Ubuntu 9.04.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_WfNme6wEiic/SbSSSoOC6EI/AAAAAAAAAYA/kVrFlaszgkI/s1600-h/Screenshot-Unlock+Keyring.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 187px;" src="http://3.bp.blogspot.com/_WfNme6wEiic/SbSSSoOC6EI/AAAAAAAAAYA/kVrFlaszgkI/s400/Screenshot-Unlock+Keyring.png" alt="" id="BLOGGER_PHOTO_ID_5311030709308287042" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;pop up asking for password to access  gnome-keyring&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;After trying for a while, I found the change keyring password in Passwords and Encrytion Keys. For detailed work around&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Go to&lt;span style="font-weight: bold;"&gt; Applications -&gt; Accessories -&gt; Passwords and Encrytion Encryption Keysand Keyrings&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_WfNme6wEiic/SgK-fGxYXOI/AAAAAAAAAZQ/in6ZPPD0u0M/s1600-h/Accessories-Encryption-Keyring.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 243px;" src="http://1.bp.blogspot.com/_WfNme6wEiic/SgK-fGxYXOI/AAAAAAAAAZQ/in6ZPPD0u0M/s400/Accessories-Encryption-Keyring.png" alt="" id="BLOGGER_PHOTO_ID_5333034350363040994" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_WfNme6wEiic/SbSWatKrC5I/AAAAAAAAAYI/Y8iW8x9VEnw/s1600-h/Menu-Encryption-Keyring.png"&gt;&lt;br /&gt;&lt;/a&gt;&lt;ul&gt;&lt;li&gt;select the &lt;span style="font-style: italic;"&gt;Passwords &lt;/span&gt;tab&lt;/li&gt;&lt;li&gt;select the default entry, and right click then select &lt;span style="font-style: italic;"&gt;Change Unlock Password&lt;/span&gt;;&lt;/li&gt;&lt;/ul&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_WfNme6wEiic/SgK-rO0wXGI/AAAAAAAAAZY/AmW4561zx90/s1600-h/Jaunty_PasswordandEncryptionSettings.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 311px;" src="http://1.bp.blogspot.com/_WfNme6wEiic/SgK-rO0wXGI/AAAAAAAAAZY/AmW4561zx90/s400/Jaunty_PasswordandEncryptionSettings.png" alt="" id="BLOGGER_PHOTO_ID_5333034558683110498" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_WfNme6wEiic/SbSWbI27ItI/AAAAAAAAAYQ/wbm158MHp_A/s1600-h/Screenshot-Password+and+Encryption+Settings.png"&gt;&lt;/a&gt;&lt;ul&gt;&lt;li&gt;Insert your old password and leave new password BLANK&lt;/li&gt;&lt;/ul&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_WfNme6wEiic/SbSWbdfWX5I/AAAAAAAAAYY/R4ljPbJa1HE/s1600-h/Change-Keyring-Password.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 339px;" src="http://2.bp.blogspot.com/_WfNme6wEiic/SbSWbdfWX5I/AAAAAAAAAYY/R4ljPbJa1HE/s400/Change-Keyring-Password.png" alt="" id="BLOGGER_PHOTO_ID_5311035259093409682" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I don't try this by myself, but I believe this solution also work on Intrepid Ibex.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-3149201039948626355?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/3149201039948626355/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=3149201039948626355' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/3149201039948626355'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/3149201039948626355'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2009/05/gnome-do-and-gnome-keyring-again-in.html' title='Gnome Do and Gnome Keyring again in Jaunty Jackalop'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_WfNme6wEiic/SbSSSoOC6EI/AAAAAAAAAYA/kVrFlaszgkI/s72-c/Screenshot-Unlock+Keyring.png' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-8037819417069391805</id><published>2009-03-08T23:37:00.007-04:00</published><updated>2009-03-09T00:17:26.082-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='automatic logon'/><category scheme='http://www.blogger.com/atom/ns#' term='keyring'/><category scheme='http://www.blogger.com/atom/ns#' term='gnome-do'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='hardy'/><title type='text'>Gnome Do, Gnome Keyring and Auto login</title><content type='html'>I like using Gnome-Do as my application launcher. You can install it in Ubuntu Hardy Heron by following this &lt;a href="http://do.davebsd.com/wiki/index.php?title=Installing_Do#Ubuntu"&gt;instruction&lt;/a&gt;. Try it! I also use it for update my twitter. Therefore, Gnome-Do uses gnome-keyring to keep my twitter account detail.&lt;br /&gt;The problem starts when I enable auto login feature&lt;sup&gt;[1]&lt;/sup&gt;. When I restarted my computer and login to my desktop, pop up will show asking me to insert my password.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_WfNme6wEiic/SbSSSoOC6EI/AAAAAAAAAYA/kVrFlaszgkI/s1600-h/Screenshot-Unlock+Keyring.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 187px;" src="http://3.bp.blogspot.com/_WfNme6wEiic/SbSSSoOC6EI/AAAAAAAAAYA/kVrFlaszgkI/s400/Screenshot-Unlock+Keyring.png" alt="" id="BLOGGER_PHOTO_ID_5311030709308287042" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;pop up asking for password to access  gnome-keyring&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;After searching for a while, I could not find the solution. However, I came across a workaround from other bug in launchpad&lt;sup&gt;[2]&lt;/sup&gt;. To eliminate this pop up.&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Go to&lt;span style="font-weight: bold;"&gt; System -&gt; Preferences -&gt; Encryption and Keyrings&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_WfNme6wEiic/SbSWatKrC5I/AAAAAAAAAYI/Y8iW8x9VEnw/s1600-h/Menu-Encryption-Keyring.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 280px;" src="http://4.bp.blogspot.com/_WfNme6wEiic/SbSWatKrC5I/AAAAAAAAAYI/Y8iW8x9VEnw/s400/Menu-Encryption-Keyring.png" alt="" id="BLOGGER_PHOTO_ID_5311035246121782162" border="0" /&gt;&lt;/a&gt;&lt;ul&gt;&lt;li&gt;select the &lt;span style="font-style: italic;"&gt;Password Keyrings&lt;/span&gt; tab&lt;/li&gt;&lt;li&gt;select the default entry, and click on &lt;span style="font-style: italic;"&gt;Change Unlock Password&lt;/span&gt;;&lt;/li&gt;&lt;/ul&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_WfNme6wEiic/SbSWbI27ItI/AAAAAAAAAYQ/wbm158MHp_A/s1600-h/Screenshot-Password+and+Encryption+Settings.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 311px;" src="http://2.bp.blogspot.com/_WfNme6wEiic/SbSWbI27ItI/AAAAAAAAAYQ/wbm158MHp_A/s400/Screenshot-Password+and+Encryption+Settings.png" alt="" id="BLOGGER_PHOTO_ID_5311035253555143378" border="0" /&gt;&lt;/a&gt;&lt;ul&gt;&lt;li&gt;Insert your old password and leave new password BLANK&lt;/li&gt;&lt;/ul&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_WfNme6wEiic/SbSWbdfWX5I/AAAAAAAAAYY/R4ljPbJa1HE/s1600-h/Change-Keyring-Password.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 339px;" src="http://2.bp.blogspot.com/_WfNme6wEiic/SbSWbdfWX5I/AAAAAAAAAYY/R4ljPbJa1HE/s400/Change-Keyring-Password.png" alt="" id="BLOGGER_PHOTO_ID_5311035259093409682" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[1]&lt;/sup&gt; - &lt;a href="http://www.ubuntugeek.com/how-to-enable-automatic-login-in-ubutnu.html"&gt;http://www.ubuntugeek.com/how-to-enable-automatic-login-in-ubutnu.html&lt;/a&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[2]&lt;/sup&gt; - &lt;a href="http://bugs.launchpad.net/gnome-keyring-manager/+bug/236264"&gt;&lt;span&gt;http://bugs.launchpad.net/gnome-keyring-manager/+bug/236264&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="https://help.ubuntu.com/community/UbuntuBootupHowto"&gt;&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-8037819417069391805?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/8037819417069391805/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=8037819417069391805' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/8037819417069391805'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/8037819417069391805'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2009/03/gnome-do-gnome-keyring-and-auto-login.html' title='Gnome Do, Gnome Keyring and Auto login'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_WfNme6wEiic/SbSSSoOC6EI/AAAAAAAAAYA/kVrFlaszgkI/s72-c/Screenshot-Unlock+Keyring.png' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-935467384194110501</id><published>2009-02-24T22:56:00.030-05:00</published><updated>2009-02-26T07:56:16.450-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='touchpad'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='hardy'/><title type='text'>Auto Disable Synaptic Touch in Ubuntu Hardy</title><content type='html'>In windows, my pentium M platform will automatically disable synaptic touchpad when I connect an external mouse. It prevent me from unintentionally sliding my touchpad while typing. It's very annoying when a mouse cursor moves from current typing position to other places. I found some solutions in the internet.&lt;br /&gt;&lt;br /&gt;First, you can completely disable notebook's touchpad if you always use a mouse. Click at menu &lt;span style="font-style: italic;"&gt;System-&gt; Preference -&gt; Mouse&lt;/span&gt; go to &lt;span style="font-style: italic;"&gt;Touchpad&lt;/span&gt; tab and you will see the checkbox.&lt;br /&gt;&lt;br /&gt;Second, which I prefer. Turn on &lt;span style="font-style: italic;"&gt;SHMConfig&lt;/span&gt; in xorg.conf&lt;br /&gt;&lt;br /&gt;&lt;code&gt;gksudo gedit /etc/X11/xorg.conf&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Then make the code look like this&lt;br /&gt;&lt;pre&gt;Section "InputDevice"&lt;br /&gt;Identifier "Synaptics Touchpad"&lt;br /&gt;Driver "synaptics"&lt;br /&gt;Option "SendCoreEvents" "true"&lt;br /&gt;Option "Device" "/dev/psaux"&lt;br /&gt;Option "Protocol" "auto-dev"&lt;br /&gt;Option "HorizEdgeScroll" "0"&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Option "SHMConfig" "on"&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;After enable SHMConfig, we need to add rules to &lt;a href="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"&gt;udev&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;code&gt;gksudo gedit /etc/udev/rules.d/10-local.rules&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;This will open an empty file. Add the following code&lt;br /&gt;&lt;pre&gt;ACTION=="add", SUBSYSTEM=="input", ID_CLASS="mouse", RUN+="/usr/bin/synclient touchpadoff=1"&lt;br /&gt;ACTION=="remove", SUBSYSTEM=="input", ID_CLASS="mouse", RUN+="/usr/bin/synclient touchpadoff=0"&lt;/pre&gt;&lt;br /&gt;However, it doesn't work when Ubuntu start up. Udev's rules will be activated only when mouse is plugged in or removed. I search for solutions and think that I need to write my own script by checking if an external mouse is connected to disable touchpad through &lt;span style="font-style: italic;"&gt;synclient&lt;/span&gt;. At first, I think about using python. Luckily, after searching for a while how python checks devices, I found this solution&lt;sup&gt;[2]&lt;/sup&gt;. Instead of using python, you can easily create use unix script by using the following code&lt;br /&gt;&lt;pre&gt;#!/bin/bash&lt;br /&gt;&lt;br /&gt;/usr/bin/synclient TouchpadOff=`lsusb | grep &lt;span style="font-weight: bold;"&gt;Mouse&lt;/span&gt; | wc -l`&lt;/pre&gt;&lt;br /&gt;Where &lt;span style="font-weight: bold;"&gt;Mouse&lt;/span&gt; is your output from &lt;span style="font-style: italic;"&gt;lsusb&lt;/span&gt; that matchs your external mouse. For me, it is Logitech.&lt;br /&gt;then put it to &lt;span style="font-style: italic;"&gt;System -&gt; Preference -&gt; Sessions&lt;/span&gt;&lt;br /&gt;or init.d&lt;sup&gt;[3]&lt;/sup&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_WfNme6wEiic/SaTyCn_DWkI/AAAAAAAAAX4/5vJWojVrEPA/s1600-h/disable_touchpad_startup.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 191px;" src="http://4.bp.blogspot.com/_WfNme6wEiic/SaTyCn_DWkI/AAAAAAAAAX4/5vJWojVrEPA/s400/disable_touchpad_startup.png" alt="" id="BLOGGER_PHOTO_ID_5306632387856390722" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;my disable touchpad script in &lt;/span&gt;&lt;span style="font-style: italic;font-size:78%;" &gt;System -&gt; Preference -&gt; Sessions&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;Lastly, you can disable touchpad while typing by using the following command.&lt;br /&gt;&lt;br /&gt;&lt;code&gt;syndaemon -i 1 -d&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[1]&lt;/sup&gt; - &lt;a href="http://ubuntuforums.org/showthread.php?t=724465"&gt;&lt;span&gt;http://ubuntuforums.org/showthread.php?t=724465&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[2]&lt;/sup&gt; - &lt;a href="http://digitalgraphy.wordpress.com/2007/11/17/how-to-disable-touchpad-on-linux/"&gt;&lt;span&gt;http://digitalgraphy.wordpress.com/2007/11/17/how-to-disable-touchpad-on-linux/&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[3]&lt;/sup&gt; - &lt;a href="https://help.ubuntu.com/community/UbuntuBootupHowto"&gt;&lt;span&gt;https://help.ubuntu.com/community/UbuntuBootupHowto&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-935467384194110501?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/935467384194110501/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=935467384194110501' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/935467384194110501'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/935467384194110501'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2009/02/auto-disable-synaptic-touch-in-ubuntu.html' title='Auto Disable Synaptic Touch in Ubuntu Hardy'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_WfNme6wEiic/SaTyCn_DWkI/AAAAAAAAAX4/5vJWojVrEPA/s72-c/disable_touchpad_startup.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-3800240757099561753</id><published>2009-02-12T08:57:00.001-05:00</published><updated>2009-02-15T22:56:29.169-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='grub'/><category scheme='http://www.blogger.com/atom/ns#' term='boot time'/><category scheme='http://www.blogger.com/atom/ns#' term='clocksource'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='hardy'/><title type='text'>Slow boot with Clocksource unstable in Hardy Heron</title><content type='html'>I encountered this problem long time ago, about September 2008. When I chose to boot into Ubuntu, it stuck at splash screen about 2 minutes. In order to view the elaborate boot information, you must remove &lt;span style="font-style: italic;"&gt;splash&lt;/span&gt; and &lt;span style="font-style: italic;"&gt;quiet&lt;/span&gt; from the grub menu which come by default.&lt;br /&gt;&lt;pre&gt;sudo gedit /boot/grub/menu.lst&lt;/pre&gt;&lt;br /&gt;find a line that look like this&lt;br /&gt;&lt;pre&gt;kernel        /boot/vmlinuz-2.6.24-23-generic root=UUID=84884ca6-fbea-41dc-962d-98577270be8b ro quiet splash&lt;/pre&gt;&lt;br /&gt;then remove &lt;span style="font-style: italic;"&gt;quiet&lt;/span&gt; and &lt;span style="font-style: italic;"&gt;splash&lt;/span&gt;. This will make Ubuntu spit a detail on boot time.&lt;br /&gt;&lt;br /&gt;On my Asus M9V (Pentium M), Ubuntu 8.04 freeze at this line.&lt;br /&gt;&lt;pre&gt;ACPI: Processor [CPU1] (supports 8 throttling states)&lt;br /&gt;clocksourse tsc unstable (delta=183220173ns)&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;I found that this was a known bug on Ubuntu Hardy Heron&lt;sup&gt;[1]&lt;/sup&gt;. Workaround from the launchpad is adding &lt;span style="font-style: italic;"&gt;clocksource&lt;/span&gt; boot option to grub menu either &lt;span style="font-style: italic;"&gt;hpet&lt;/span&gt; or &lt;span style="font-style: italic;"&gt;acpi_pm&lt;/span&gt; (I use &lt;span style="font-style: italic;"&gt;hpet&lt;/span&gt;). So, your grub menu will look like this.&lt;br /&gt;&lt;pre&gt;title        Ubuntu 8.04.2, kernel 2.6.24-23-generic&lt;br /&gt;root        (hd0,2)&lt;br /&gt;kernel        /boot/vmlinuz-2.6.24-23-generic root=UUID=84884ca6-fbea-41dc-962d-98577270be8b ro clocksource=hpet quiet splash&lt;br /&gt;initrd        /boot/initrd.img-2.6.24-23-generic&lt;br /&gt;quiet&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[1]&lt;/sup&gt; - &lt;a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/190414"&gt;&lt;span&gt;https://bugs.launchpad.net/ubuntu/+source/linux/+bug/190414&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-3800240757099561753?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/3800240757099561753/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=3800240757099561753' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/3800240757099561753'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/3800240757099561753'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2009/02/slow-boot-with-clocksource-message-in.html' title='Slow boot with Clocksource unstable in Hardy Heron'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-1763951389795284761</id><published>2009-02-04T04:06:00.012-05:00</published><updated>2009-02-04T07:38:18.757-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='microphone'/><category scheme='http://www.blogger.com/atom/ns#' term='intrepid'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='hardy'/><title type='text'>Microphone in Ubuntu Hardy Heron</title><content type='html'>Unfortunately, I found a show stopper from Ubuntu Intrepid. It's the audio input function. I couldn't get my microphone (built-in and external) working. Actually, it does partly work, but not usable. It can record at an extremely low voice level. Some people say it is a PulseAudio's problem. So, I tried to uninstall PulseAudio and use ALSA instead, but I still couldn't make it work. One point, I noticed is that I cannot unmute &lt;span style="font-style: italic;"&gt;Capture&lt;/span&gt; under &lt;span style="font-style: italic;"&gt;Recording&lt;/span&gt; tab in &lt;span style="font-style: italic;"&gt;Volume Control&lt;/span&gt;. Another point is that Volume Control is different between Intrepid and Hardy. In Hardy, there is &lt;span style="font-style: italic;"&gt;Digital&lt;/span&gt; and &lt;span style="font-style: italic;"&gt;Intermal Mic&lt;/span&gt; slide to control volume, but there isn't in Intrepid. I searched the solution and tried it for many hours. Finally, I gave up. I don't know what is exactly the course of the problem, it maybe Pulse Audio, ALSA, Kernel, Gnome Volume Control (some say &lt;span style="font-style: italic;"&gt;kmix&lt;/span&gt; solve their problem), or other reasons. I hope it will be fixed in Jaunty Jackalope (Ubuntu 9.04).&lt;br /&gt;&lt;br /&gt;Despite how much I like appearance and speed of Ubuntu Intrepid, I uninstall it. Since I need to use &lt;span style="font-style: italic;"&gt;skype&lt;/span&gt;, I go back to Hardy Heron (Ubuntu 8.04) which my Asus M9V microphone works perfectly. After install and update Ubuntu, you need a little setup to make it work.&lt;br /&gt;&lt;br /&gt;First, you need to make sure that System uses correct device by checking at &lt;span style="font-style: italic;"&gt;System -&gt; Preference -&gt; Sound&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_WfNme6wEiic/SYlqrLrz4TI/AAAAAAAAAW4/51QEVlW2TuY/s1600-h/ubuntu-hardy-sound-preferences.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 363px; height: 400px;" src="http://3.bp.blogspot.com/_WfNme6wEiic/SYlqrLrz4TI/AAAAAAAAAW4/51QEVlW2TuY/s400/ubuntu-hardy-sound-preferences.png" alt="" id="BLOGGER_PHOTO_ID_5298883726681563442" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Next, you must unmute &lt;span style="font-style: italic;"&gt;Capture&lt;/span&gt; in &lt;span style="font-style: italic;"&gt;Volume Control&lt;/span&gt;. If you cannot see it, try to enable it via &lt;span style="font-style: italic;"&gt;Menu -&gt; Edit -&gt; Preference&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_WfNme6wEiic/SYlqrPzkacI/AAAAAAAAAXA/ZTD5n5Ft7Fw/s1600-h/ubuntu-hardy-volume-control.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 209px;" src="http://4.bp.blogspot.com/_WfNme6wEiic/SYlqrPzkacI/AAAAAAAAAXA/ZTD5n5Ft7Fw/s400/ubuntu-hardy-volume-control.png" alt="" id="BLOGGER_PHOTO_ID_5298883727787846082" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Lastly, testing! You may use Sound Recorder which come with Ubuntu or add &lt;a href="http://www.medibuntu.org/"&gt;medibuntu&lt;/a&gt; then &lt;br /&gt;&lt;pre&gt;sudo apt-get install skype&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-1763951389795284761?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/1763951389795284761/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=1763951389795284761' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/1763951389795284761'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/1763951389795284761'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2009/02/microphone-in-ubuntu-hardy-heron.html' title='Microphone in Ubuntu Hardy Heron'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_WfNme6wEiic/SYlqrLrz4TI/AAAAAAAAAW4/51QEVlW2TuY/s72-c/ubuntu-hardy-sound-preferences.png' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-7366881770031138957</id><published>2009-02-01T04:13:00.023-05:00</published><updated>2009-02-04T07:39:30.902-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='player'/><category scheme='http://www.blogger.com/atom/ns#' term='media'/><category scheme='http://www.blogger.com/atom/ns#' term='intrepid'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='movie'/><title type='text'>Media player for Ubuntu Intrepid</title><content type='html'>Playing media files in Linux is quite troublesome. In windows, you can download all-in-one player like &lt;a href="http://www.kmplayer.com/forums/index.php"&gt;KMPlayer&lt;/a&gt; or codec-packs like &lt;a href="http://www.k-litemegacodecpack.com/"&gt;K-Lite Mega Codec Pack&lt;/a&gt;. This will enable you to play all media types from internet such as WMV, XVID, MP4, etc. However, in Ubuntu, you need to install correct codecs to enable this feature. Normally, Ubuntu comes with totem movie player and it will ask you to download codecs (Gstreamer) when it encounters files that cannot be played. This default behavior is quite good for new user. But,  I, personally, like &lt;a href="http://www.videolan.org/vlc/"&gt;VLC&lt;/a&gt; and &lt;a href="http://www.mplayerhq.hu/"&gt;MPlayer&lt;/a&gt; to be my default player. This post will tell you how to do that.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_WfNme6wEiic/SYayT9g8LJI/AAAAAAAAAWo/uk946NZAvzs/s1600-h/smplayer-firefly.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 298px;" src="http://4.bp.blogspot.com/_WfNme6wEiic/SYayT9g8LJI/AAAAAAAAAWo/uk946NZAvzs/s400/smplayer-firefly.png" alt="" id="BLOGGER_PHOTO_ID_5298118067647949970" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;smplayer - gui for mplayer playing Firefly with Thai subtitle.&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;First, you need to setup &lt;a href="http://www.medibuntu.org/"&gt;Medibuntu&lt;/a&gt; as one of your repositories because you can get most update from it. Installation and setup note&lt;sup&gt;[1]&lt;/sup&gt; should be available in their website. After, add it to sources.list file, do the following command in Terminal. (you can use other GUI players instead of smplayer)&lt;br /&gt;&lt;pre&gt;sudo apt-get install vlc mplayer mozilla-mplayer smplayer w32codecs&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;I, also, recommend uninstalling totem.&lt;br /&gt;&lt;pre&gt;sudo apt-get remove totem totem-common&lt;br /&gt;totem-gstreamer totem-mozilla totem-plugin&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;After finishing install, Smplayer can play a movie mediately, but it requires a little configuration for Firefox. Finding some video test page, I google and use this page&lt;sup&gt;[2]&lt;/sup&gt;. In my computer video doesn't show up, I have to change video output to &lt;span style="font-style: italic;"&gt;x11&lt;/span&gt; by right click on grey background -&gt; configure -&gt; x11 from Video Output drop down list. Done, you have nearly perfect movie player with Ubuntu Intrepid.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_WfNme6wEiic/SYazims8oUI/AAAAAAAAAWw/nyPAeEiGGwQ/s1600-h/firefox-mplayer-configure.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 280px;" src="http://3.bp.blogspot.com/_WfNme6wEiic/SYazims8oUI/AAAAAAAAAWw/nyPAeEiGGwQ/s400/firefox-mplayer-configure.png" alt="" id="BLOGGER_PHOTO_ID_5298119418733961538" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;mplayer playing in firefox with video output setup to x11.&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[1]&lt;/sup&gt; - &lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="https://help.ubuntu.com/community/Medibuntu#Adding%20the%20Repositories"&gt;https://help.ubuntu.com/community/Medibuntu&lt;/a&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[2]&lt;/sup&gt; - &lt;/span&gt;&lt;a href="http://home.att.net/%7Echerokee68/wmvtest.html"&gt;&lt;span style="font-size:85%;"&gt;&lt;span&gt;http://home.att.net/~cherokee68/wmvtest.html&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-7366881770031138957?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/7366881770031138957/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=7366881770031138957' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/7366881770031138957'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/7366881770031138957'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2009/02/media-player-for-ubuntu-intrepid.html' title='Media player for Ubuntu Intrepid'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_WfNme6wEiic/SYayT9g8LJI/AAAAAAAAAWo/uk946NZAvzs/s72-c/smplayer-firefly.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-4432665541637940954</id><published>2009-01-31T08:57:00.009-05:00</published><updated>2009-02-04T07:37:36.245-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='mirror'/><category scheme='http://www.blogger.com/atom/ns#' term='intrepid'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Ubuntu Mirror in Thailand</title><content type='html'>Default repository for Ubuntu's updates and programs if you set your location to Thailand is &lt;a href="http://th.archive.ubuntu.com/ubuntu/"&gt;th.archive.ubuntu.com&lt;/a&gt;. I don't know where this server is but, it's quite slow on my opinion. I got 20 - 30 Kb/s with 3 Mbps True Internet package. Therefore, I suggest thai people who use Ubuntu change their mirror site.&lt;br /&gt;&lt;br /&gt;In Thailand, there is a &lt;a href="http://www.mirror.in.th/"&gt;Thai National Mirror&lt;/a&gt; which serves as open sources software repository including Ubuntu. Due to public advertisement and word of mouth news, it became slow on peak times such as 8.00PM - 10.00PM (or I fortunately downloaded something when they updated servers).&lt;br /&gt;&lt;br /&gt;So, I suggest using &lt;a href="http://mirror1.ku.ac.th/"&gt;Kasetsart Linux Mirror site&lt;/a&gt; instead. Of course, it's very fast for me (I live in Bangkok). You can download sources.list from &lt;a href="http://mirror1.ku.ac.th/apt-ubuntu/8.10/sources.list"&gt;their website&lt;/a&gt; or edit it by yourself. Using the following command in Terminal.&lt;br /&gt;&lt;pre&gt;sudo gedit /etc/apt/sources.list&lt;/pre&gt;then, insert your admin password and add following lines to the file (you should comment other repositories for faster update).&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;#####KU apt &lt;&gt; Main,Restriced Update#####&lt;br /&gt;deb http://mirror1.ku.ac.th/ubuntu/ intrepid main restricted&lt;br /&gt;deb http://mirror1.ku.ac.th/ubuntu/ intrepid-updates main restricted&lt;br /&gt;deb http://mirror1.ku.ac.th/ubuntu-security/ intrepid-security main restricted&lt;br /&gt;&lt;br /&gt;#####KU apt &lt;&gt; Multiverse,Universe Update(Optional)#####&lt;br /&gt;deb http://mirror1.ku.ac.th/ubuntu/ intrepid multiverse universe&lt;br /&gt;deb http://mirror1.ku.ac.th/ubuntu/ intrepid-updates multiverse universe&lt;br /&gt;deb http://mirror1.ku.ac.th/ubuntu-security/ intrepid-security multiverse universe&lt;br /&gt;&lt;br /&gt;#####KU apt &lt;&gt; Source File Main, Restriced (Optional)#####&lt;br /&gt;deb-src http://mirror1.ku.ac.th/ubuntu/ intrepid main restricted&lt;br /&gt;deb-src http://mirror1.ku.ac.th/ubuntu/ intrepid-updates main restricted&lt;br /&gt;deb-src http://mirror1.ku.ac.th/ubuntu-security/ intrepid-security main restricted&lt;br /&gt;&lt;br /&gt;#####KU apt &lt;&gt; Source File Multiverse,Universe (Optional)#####&lt;br /&gt;deb-src http://mirror1.ku.ac.th/ubuntu/ intrepid multiverse universe&lt;br /&gt;deb-src http://mirror1.ku.ac.th/ubuntu/ intrepid-updates multiverse universe&lt;br /&gt;deb-src http://mirror1.ku.ac.th/ubuntu-security/ intrepid-security multiverse universe&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[1]&lt;/sup&gt; - &lt;a href="http://mirror1.ku.ac.th/"&gt;http://mirror1.ku.ac.th/&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-4432665541637940954?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/4432665541637940954/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=4432665541637940954' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/4432665541637940954'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/4432665541637940954'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2009/01/ubuntu-mirror-in-thailand.html' title='Ubuntu Mirror in Thailand'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-5757266004358940171</id><published>2009-01-29T10:21:00.007-05:00</published><updated>2009-01-29T11:27:54.923-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='notebook'/><category scheme='http://www.blogger.com/atom/ns#' term='intrepid'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Ubuntu 8.10 Intrepid Ibex on Asus M9V</title><content type='html'>Today I install Ubuntu 8.10 on my notebook 'Asus M9V' which is three years old. I used Ubuntu 8.04 (Hardy Heron) on my notebook last year during August and November. Due to my preparation for GRE and game 'Team fortress 2' (later one has more weight), I decided to install windows xp which is more compatible with GRE test prep software and games. I don't want to use a virtual machine on Ubuntu mostly because it can't handle heavy 3d games like TF2. However, GRE Exam passed and games became boring, I switch to linux again and I choose Ubuntu because Ubuntu 8.04 used to work perfectly on my M9V.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_WfNme6wEiic/SYHRvOGyLiI/AAAAAAAAAWI/LvTpm4aGF2w/s1600-h/ubuntu-gimp.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_WfNme6wEiic/SYHRvOGyLiI/AAAAAAAAAWI/LvTpm4aGF2w/s400/ubuntu-gimp.png" alt="" id="BLOGGER_PHOTO_ID_5296745245935021602" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:85%;"&gt;Gimp on Ubuntu 8.10 on ASUS M9V&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;It took about 20 minutes to install Ubuntu included formatting old windows partition. I prefer Intrepid's wallpaper to Hardy's wallpaper. Everything seems nice, wireless, bluetooth, logitech V450 nano, video, and sound.&lt;br /&gt;&lt;br /&gt;However, when I played it about 10 minutes, my computer freezes except the mouse pointer. This discourages me because I used to have the same problem on Edgy Eft (Ubuntu 6.10) with my PC which has Nvidia FX6600 card and that time I gave up. I google this problem and found that it might be connected with a video card driver. So, I updated my ATI driver using proprietary driver and other updates as well ( 226 updates need after installing Ubuntu from CD). Now, I played it about 5 hours and it works smoothly.&lt;br /&gt;&lt;br /&gt;There will be a lot of upcoming blog about installing driver and software to customize Ubuntu as I need.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-5757266004358940171?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/5757266004358940171/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=5757266004358940171' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/5757266004358940171'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/5757266004358940171'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2009/01/ubuntu-810-intrepid-ibex-on-asus-m9v.html' title='Ubuntu 8.10 Intrepid Ibex on Asus M9V'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_WfNme6wEiic/SYHRvOGyLiI/AAAAAAAAAWI/LvTpm4aGF2w/s72-c/ubuntu-gimp.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-6417993386638031625</id><published>2009-01-14T09:20:00.009-05:00</published><updated>2009-01-15T00:00:25.487-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='autorun'/><category scheme='http://www.blogger.com/atom/ns#' term='XP'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><title type='text'>How to disable autorun in windows XP</title><content type='html'>Nowadays many viruses, malwares, spywares, and worms often spread themselves from an infected computer to other computers via usb drive. By using &lt;span style="font-style: italic;"&gt;Autorun.inf&lt;/span&gt; file ,which automatically detect and run in windows, they can copy and execute themselves into a victim computer. Therefore, using autorun on usb drive in windows isn't a wise decision. Here's how to turn it off.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;run &lt;span style="font-weight: bold;"&gt;gpedit.msc&lt;/span&gt; using run command (start button -&gt; run). This will open group policy windows.&lt;/li&gt;&lt;li&gt;under &lt;span style="font-weight: bold;"&gt;Computer Configuration&lt;/span&gt;, click &lt;span style="font-weight: bold;"&gt;Administrative Templates&lt;/span&gt; then &lt;span style="font-weight: bold;"&gt;System&lt;/span&gt;.&lt;/li&gt;&lt;li&gt;find &lt;span style="font-weight: bold;"&gt;Turn off Autoplay&lt;/span&gt; Setting on the right panel and double-click it. Then, choose &lt;span style="font-weight: bold;"&gt;enable&lt;/span&gt;. It will allow us to edit bottom area. Choose &lt;span style="font-weight: bold;"&gt;all drives&lt;/span&gt; from 'Turn off Autoplay on' drop down list. Finally click apply or ok.&lt;/li&gt;&lt;/ol&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_WfNme6wEiic/SW7C0wdONhI/AAAAAAAAAVo/8iS5ZSv55So/s1600-h/disable_autoplay.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 280px;" src="http://2.bp.blogspot.com/_WfNme6wEiic/SW7C0wdONhI/AAAAAAAAAVo/8iS5ZSv55So/s400/disable_autoplay.png" alt="" id="BLOGGER_PHOTO_ID_5291380823823365650" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Another good way to help preventing viruses without additional programs. However, this method works only in windows XP professional edition.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[1]&lt;/sup&gt; - &lt;a href="http://antivirus.about.com/od/securitytips/ht/autorun.htm"&gt;http://antivirus.about.com/od/securitytips/ht/autorun.htm&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-6417993386638031625?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/6417993386638031625/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=6417993386638031625' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/6417993386638031625'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/6417993386638031625'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2009/01/how-to-disable-autorun-in-windows-xp.html' title='How to disable autorun in windows XP'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_WfNme6wEiic/SW7C0wdONhI/AAAAAAAAAVo/8iS5ZSv55So/s72-c/disable_autoplay.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-4299246849212657659</id><published>2009-01-13T03:59:00.020-05:00</published><updated>2009-01-14T09:56:06.122-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='automatic logon'/><category scheme='http://www.blogger.com/atom/ns#' term='XP'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><title type='text'>How to turn on automatic logon in windows XP</title><content type='html'>Normally, when I install a new windows, I create only an account without a password for myself. This make windows automatically logins to my account when restarting computer. However, after installing .Net framework 1.1, it will create aspnet_wp or ASP.NET Machine Account which turn off automatic login. You can easily delete the created account in user accounts in control panel and make your only account be automatic log on again. But, for the windows machine with multiple accounts or programmers who develop using .Net framework, deleting an account doesn't work. I offer two options.&lt;br /&gt;&lt;br /&gt;First, using registry editor to add the following string values at key &lt;span&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon&lt;/span&gt;&lt;br /&gt;DefaultUserName : &lt;span style="font-style: italic;"&gt;your username&lt;/span&gt;&lt;br /&gt;DefaultPassword : &lt;span style="font-style: italic;"&gt;your password&lt;/span&gt;&lt;br /&gt;AutoAdminLogon : &lt;span style="font-style: italic;"&gt;1&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Second, run &lt;span style="font-weight: bold;"&gt;'control userpasswords2'&lt;/span&gt; using run command (start button -&gt; run). Remove &lt;span&gt;"Users must enter a user name and password to use this computer"&lt;/span&gt; from check box and click apply.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[1]&lt;/sup&gt; - &lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="http://www.mvps.org/marksxp/WindowsXP/aspdot.php"&gt;http://www.mvps.org/marksxp/WindowsXP/aspdot.php&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[2]&lt;/sup&gt; - &lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="http://support.microsoft.com/kb/315231"&gt;http://support.microsoft.com/kb/315231&lt;/a&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="http://support.microsoft.com/kb/315231"&gt;&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-4299246849212657659?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/4299246849212657659/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=4299246849212657659' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/4299246849212657659'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/4299246849212657659'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2009/01/how-to-turn-on-automatic-logon-in.html' title='How to turn on automatic logon in windows XP'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-988587361649344777</id><published>2008-12-19T08:23:00.003-05:00</published><updated>2008-12-19T08:34:15.718-05:00</updated><title type='text'>I'm Back</title><content type='html'>First update in nearly 5 months, I think I need to change the style of blogging. I should keep it short. I have many draft version in my setting, but they've never been published.&lt;br /&gt;I spent most of my time study for TOEFL and GRE in past few months. Now, they already passed. So, I will keep this blog update as much as possible (promise to myself).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-988587361649344777?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/988587361649344777/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=988587361649344777' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/988587361649344777'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/988587361649344777'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2008/12/im-back.html' title='I&apos;m Back'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-7382920609664984001</id><published>2008-07-03T03:12:00.013-04:00</published><updated>2008-10-20T11:08:08.522-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='programs'/><category scheme='http://www.blogger.com/atom/ns#' term='software'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><title type='text'>Programs for new computer</title><content type='html'>Finally, I can dig myself up to post new content. Yesterday, I couldn't access Google and Yahoo and there is a advertising pop up on my notebook. So, I realized that my computer was infected by some kind of spyware. First, I tried to remove it by myself through &lt;span style="font-style: italic;"&gt;msconfig&lt;/span&gt; and &lt;span style="font-style: italic;"&gt;regedit&lt;/span&gt;, but it's not work. Therefore, I had to format and reinstall Windows. After installing Windows, I still needed to install other software that I normally used. Sometimes, I forgeted the program that I don't frequently use. So, I want to list basic programs, that I used, as a reminder for me and which might prove useful to others.&lt;br /&gt;&lt;br /&gt;Open source and Freeware&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.mozilla.com/firefox/"&gt;Firefox&lt;/a&gt; - Popular web browser.&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.adobe.com/shockwave/download"&gt;Adobe Flash Player&lt;/a&gt; - Flash player plugin for Firefox&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.7-zip.org/"&gt;7zip&lt;/a&gt; - Archieve utilities, free and support zip, 7z, rar, etc.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.imgburn.com/"&gt;Imgburn&lt;/a&gt; - Nice image burner. support ISO, BIN, CUE, etc.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.orbitdownloader.com/"&gt;Orbitdownloader&lt;/a&gt; - Download manager. After testing many download manager, I find it most favorable because of its GUI and usability.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://ccollomb.free.fr/unlocker/"&gt;Unlocker&lt;/a&gt; - Release windows lock unused resources.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://notepad-plus.sourceforge.net/"&gt;Notepad++&lt;/a&gt; - IMHO, Best editor for Windows.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.daemon-tools.cc/"&gt;Daemon-tools&lt;/a&gt; - Virtual CD emulator.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.aimp.ru/"&gt;AIMP&lt;/a&gt; - Very nice music player from Russia, replacement for winamp.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.apple.com/itunes/"&gt;Itunes&lt;/a&gt; - necessary for apple product's owner such as Ipod, Iphone.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.kmplayer.com/forums/"&gt;KMPlayer&lt;/a&gt; - Movie player, can play almost every format without codecs&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.k-litemegacodecpack.com/"&gt;Real Alternative&lt;/a&gt; - Needed for playing real's files (.rm) on KMPlayer&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.launchy.net/"&gt;Launchy&lt;/a&gt; - Launcher for windows. ALT+Space and there you go..&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.pidgin.im/"&gt;Pidgin&lt;/a&gt; - IM, support many protocols, MSN, Gtalk, IRC etc. I hate to open many programs. &lt;a href="http://www.digsby.com/"&gt;Digsby&lt;/a&gt; is also great, but it doesn't support Thai yet.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.skype.com/"&gt;Skype&lt;/a&gt; - Free calls on the internet.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.getpaint.net/"&gt;Paint.Net&lt;/a&gt; - Less feature than Photoshop, but adequate for normal user.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://picasa.google.com/"&gt;Picasa&lt;/a&gt; - Photo managerment from Google&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://java.sun.com/javase/"&gt;Sun JDK&lt;/a&gt; - Java for developer, normal user use JRE&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.eclipse.org/"&gt;Eclipse&lt;/a&gt; - IDE for java developer&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.adobe.com/products/acrobat"&gt;Adobe Acrobat Reader&lt;/a&gt; - PDF file reader&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;Commercial&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://office.microsoft.com/"&gt;Microsoft Office&lt;/a&gt; - I'm not used to &lt;a href="http://www.openoffice.org/"&gt;OpenOffice&lt;/a&gt; yet. So right now, Microsoft Office is still good option.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.realvnc.com/"&gt;RealVNC&lt;/a&gt; - Remote control program, I use it to control my PC.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.foxitsoftware.com/"&gt;Foxit PDF Editor&lt;/a&gt; - Editing PDF file with cheaper price than Adobe Acrobat.&lt;/li&gt;&lt;/ul&gt;Note: commercial software = nearly free software in Thailand because you can find a lot of pirate cd.&lt;br /&gt;&lt;br /&gt;However, when I completed reinstall Windows and all programs, I still get pop up in my new Windows. Therefore, I had to reformat again (What a waste of time!). This time, I back up my windows with Norton ghost in &lt;a href="http://www.hiren.info/"&gt;Hiren's boot CD&lt;/a&gt; and install program one by one. Finally, the problem was in patch file for acrobat 9.0 which I loaded from Bittorrent. It contained virus. So, I switched to Foxit instead. I spent 2 days on reinstalling windows and finding spyware. This story shows that pirate software is dangerous, please use with caution.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-7382920609664984001?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/7382920609664984001/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=7382920609664984001' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/7382920609664984001'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/7382920609664984001'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2008/07/programs-for-new-computer.html' title='Programs for new computer'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-1001130496181596008</id><published>2008-06-27T04:47:00.016-04:00</published><updated>2008-07-07T08:46:47.594-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='thai fonts'/><category scheme='http://www.blogger.com/atom/ns#' term='firefox 3'/><title type='text'>Thai font in Firefox 3</title><content type='html'>A week after Firefox 3 has been released, I notice that I have a Thai language problem with some websites such as mhafai.com, dailygizmo.wordpress.com. I have never tried Firefox 3 until it is final, so I didn't know how to deal with it. I tried to do some configuration but the result didn't meet my expectation. I quickly searched with Google and found a solution. The problem font is called 'Lucida Grande', which is Mac's font, it doesn't display correctly for Thai symbols.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_WfNme6wEiic/SHGPhBeFuJI/AAAAAAAAAQ0/caUuLD3_8wM/s1600-h/6-19-2008+2-17-35+AM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_WfNme6wEiic/SHGPhBeFuJI/AAAAAAAAAQ0/caUuLD3_8wM/s400/6-19-2008+2-17-35+AM.png" alt="" id="BLOGGER_PHOTO_ID_5220111240592210066" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;First solution, I found it by configuring somethings in Firefox's Setting. This one will force Firefox 3 to display all web pages according to our chosen font. The following step shows how to do so.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_WfNme6wEiic/SHGQ1-NtLRI/AAAAAAAAARE/-d8AkmIbt3g/s1600-h/6-19-2008+2-20-26+AM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_WfNme6wEiic/SHGQ1-NtLRI/AAAAAAAAARE/-d8AkmIbt3g/s320/6-19-2008+2-20-26+AM.png" alt="" id="BLOGGER_PHOTO_ID_5220112700007066898" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;In the menu bar click Tools (Alt + T) -&gt; Options... &lt;/li&gt;&lt;li&gt;Select Content Tab. Then in fonts &amp;amp; colors region, select Advanced..&lt;/li&gt;&lt;li&gt;Finally, uncheck "allow pages to choose their own fonts, instead of my selection above" then OK.&lt;/li&gt;&lt;/ul&gt;The problem with this solution is that all pages will render with your selected font which in my opinion is not nice.&lt;br /&gt;&lt;br /&gt;Second solution, I get this one from the internet&lt;sup&gt;[1]&lt;/sup&gt;. It is very easy, just delete the font from the system and Firefox will use default font for that page.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_WfNme6wEiic/SHGRX6Fg37I/AAAAAAAAARk/uCwwQHFEY64/s1600-h/6-19-2008+2-19-16+AM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_WfNme6wEiic/SHGRX6Fg37I/AAAAAAAAARk/uCwwQHFEY64/s400/6-19-2008+2-19-16+AM.png" alt="" id="BLOGGER_PHOTO_ID_5220113283014516658" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Go to Windows Control Panel -&gt; Fonts&lt;/li&gt;&lt;li&gt;Find and Delete "Lucida Grande.ttf" and "Lucida Grande Bold.ttf"&lt;/li&gt;&lt;/ul&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_WfNme6wEiic/SHGSTvaTUAI/AAAAAAAAARs/GdAIgu2FL3I/s1600-h/6-21-2008+12-02-10+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_WfNme6wEiic/SHGSTvaTUAI/AAAAAAAAARs/GdAIgu2FL3I/s400/6-21-2008+12-02-10+PM.png" alt="" id="BLOGGER_PHOTO_ID_5220114310941069314" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;What I don't like about this one is you will not be able to render pages with "Lucida Grande" (oh!, I am quite a perfectionist). It will use default font for instead of "Lucida Grande" in English and Thai.&lt;br /&gt;&lt;br /&gt;Final solution, I come up with the solution when I surf internet on Mac OS X with Firefox 3. I noticed that a problem website rendered correctly in Mac. Therefore, "Lucida Grande" font in Mac must differ from Windows. Fortunatly, I had to port fonts from Mac to Windows for my aunt about a month ago and I now know the way how to do that.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_WfNme6wEiic/SHGSumc2G_I/AAAAAAAAAR0/ROlttGhJIgM/s1600-h/6-21-2008+12-04-53+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_WfNme6wEiic/SHGSumc2G_I/AAAAAAAAAR0/ROlttGhJIgM/s400/6-21-2008+12-04-53+PM.png" alt="" id="BLOGGER_PHOTO_ID_5220114772392287218" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Copy "LucidaGrande.dfont" in /Systems/Library/Fonts (Mac OS X 10.5) to Windows&lt;/li&gt;&lt;li&gt;Convert dfont to ttf. You can use a program like Crossfont&lt;sup&gt;[2]&lt;/sup&gt; which has 15-days trial period. &lt;/li&gt;&lt;li&gt;Find and Replace (Copy&amp;amp;Paste) "Lucida Grande.ttf" and "Lucida Grande Bold.ttf" in Control Panel -&gt; Fonts with Mac's Font.&lt;/li&gt;&lt;/ul&gt;The last solution provide you with correct Thai font display and also preserve rendering "Lucida Grande" in English correctly.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 85%;"&gt;&lt;sup&gt;[1]&lt;/sup&gt; - &lt;a href="http://www.thaicyberpoint.com/ford/blog/id/520/"&gt;http://www.thaicyberpoint.com/ford/blog/id/520/&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 85%;"&gt;&lt;sup&gt;[2]&lt;/sup&gt; - &lt;a href="http://www.acutesystems.com/scrcf.htm"&gt;Crossfont&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-1001130496181596008?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/1001130496181596008/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=1001130496181596008' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/1001130496181596008'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/1001130496181596008'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2008/06/thai-font-in-firefox-3.html' title='Thai font in Firefox 3'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_WfNme6wEiic/SHGPhBeFuJI/AAAAAAAAAQ0/caUuLD3_8wM/s72-c/6-19-2008+2-17-35+AM.png' height='72' width='72'/><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-5119914107613387652</id><published>2008-06-18T14:37:00.019-04:00</published><updated>2008-06-19T03:54:21.022-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='firefox 3'/><title type='text'>Firefox 3, One day later</title><content type='html'>I haven't post new entry for a month. How the lazy guy I am. Actually, the main reason for being indolence is because my current life situation. My daily jobs are only reading, listening, speaking, and typing English for TOEFL, How boring! However, I finally find some time to blog.&lt;br /&gt;&lt;br /&gt;After the Download Day for Firefox3 has started, there are more than eight million downloads in 24 hours. Amazing! And total number is still going while I am blogging. Mozilla team tries to make the world record for the most downloaded program "Firefox3" in 24 hours. Due to this Guinness World Record competition, I helped them download 3 times: one for my notebook, one for my desktop, and one for my girlfriend's. For the record, when I am blogging this post,  Firefox2 has been downloaded about 500 millions times. I eagerly wait to see how far Firefox3 will go.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_WfNme6wEiic/SFn72onAjMI/AAAAAAAAAQQ/fSi41iVN-FQ/s1600-h/firefox3_download.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_WfNme6wEiic/SFn72onAjMI/AAAAAAAAAQQ/fSi41iVN-FQ/s400/firefox3_download.png" alt="" id="BLOGGER_PHOTO_ID_5213474959690599618" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:85%;"&gt;This picture was captured on 1:37am 19 Jun 2008 (+0700) from &lt;a href="http://www.spreadfirefox.com/"&gt;Spread Firefox&lt;/a&gt;&lt;sup&gt;[1]&lt;/sup&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;Unfortunately, Thailand has only about 26,000 counts for this record. In comparison to internet users in Thailand (2007) &lt;sup&gt;[2]&lt;/sup&gt;, there is around 0.20%, I think it is very little number. Although there might be possible that more Thai people use Firefox, but participation in world events is also important. One reason I can come up with is because not many Thai people are in technology field. They are not frequently update themselves with the IT news because it is not their interested and not involved to their work. They will know the stories when the news was reported in Thai media such as television, newspaper, or newspaper website. Another reason is because they don't use Firefox. The question I was frequently asked when persuading someone to use Firefox is why he or she has to change while Internet Explorer is working fine. There are many advantage that Firefox has over IE ,but if the sheep is still fine why we have to build the fence. Last reason that I think it is also reasonable is because of enthusiasm. Thai people are not eager to participate in open source software because they are many illegal softwares available here.&lt;br /&gt;&lt;br /&gt;If I am not wrong, the pledge for downloading Firefox is only two millions. But the real downloads is quite fantastic. However, if you help download Firefox3 don't forget to give yourself a certification. &lt;a href="http://www.spreadfirefox.com/en-US/worldrecord/certificate_form"&gt;here&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_WfNme6wEiic/SFoO-KROCaI/AAAAAAAAAQg/zL6pV9tQWQQ/s1600-h/certificate.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_WfNme6wEiic/SFoO-KROCaI/AAAAAAAAAQg/zL6pV9tQWQQ/s200/certificate.png" alt="" id="BLOGGER_PHOTO_ID_5213495979706026402" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[1]&lt;/sup&gt; - &lt;a href="http://www.spreadfirefox.com/en-US/worldrecord"&gt;Download Day 2008 - Spread Firefox&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;sup&gt;[2]&lt;/sup&gt; - &lt;a href="http://internet.nectec.or.th/webstats/internetuser.iir?Sec=internetuser"&gt;Thailand Internet User Statistics - Nectec&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-5119914107613387652?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/5119914107613387652/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=5119914107613387652' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/5119914107613387652'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/5119914107613387652'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2008/06/firefox-3-one-day-later.html' title='Firefox 3, One day later'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_WfNme6wEiic/SFn72onAjMI/AAAAAAAAAQQ/fSi41iVN-FQ/s72-c/firefox3_download.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3511439926294599678.post-5659378410311680793</id><published>2008-05-06T00:30:00.004-04:00</published><updated>2008-05-20T00:50:02.589-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='iTunes'/><category scheme='http://www.blogger.com/atom/ns#' term='Album Artwork'/><category scheme='http://www.blogger.com/atom/ns#' term='Ipod nano'/><title type='text'>My Ipod and Itunes</title><content type='html'>After I've got Ipod nano from company for free (actually using performance points), I quite obsessed about it. I spent many hours last week playing itunes and transferring to my Ipod.&lt;br /&gt;&lt;div&gt;Next thing I did was going into itune store. Because itune store doesn't support in my country, I tried to get the account with store in US with my credit card and faked address. However, my credit card isn't working in US, so I couldn't have account by this way. BTW Apple charged me $1 (For what reason you charged me, Apple !!!) , so I recommended that you should not use this approach. I googled around and found another method, redeeming code, if you want to know how to have one just google "free iTunes account".&lt;br /&gt;&lt;br /&gt;After fooling around many days with iTunes library and album artwork ( the free feature when you have iTunes account), I noticed that some of my album didn't have the artwork. Therefore I double check my songs information with iTunes store. Nothing wrong, it is 100% correct because iTunes will use only artist and album name for searching artworks. So, I google around and found many methods, but they aren't what I want, many of them try to get pictures manually from iTunes server. After spending many hours,  I noticed that in iTunes store, they have different albums artwork for clean and explicit albums. As to test, I just append "(explicit)" to my album name. Can you guess what happens, Yes, "Get Album Artwork" does work now. How easily it was.&lt;br /&gt;&lt;br /&gt;To sum up, the tip: if you can't get album artwork for your songs in itunes and you're sure that the album's name is correct, try to append &lt;span style="font-weight: bold;"&gt;"(Explicit)"&lt;/span&gt; or &lt;span style="font-weight: bold;"&gt;"(Clean)" &lt;/span&gt;to your song album's name and download artwork again.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_WfNme6wEiic/SDJXi3J95eI/AAAAAAAAALw/kKrH12gnxxo/s1600-h/iTune_album.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_WfNme6wEiic/SDJXi3J95eI/AAAAAAAAALw/kKrH12gnxxo/s400/iTune_album.jpg" alt="" id="BLOGGER_PHOTO_ID_5202316775999268322" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3511439926294599678-5659378410311680793?l=www.patanachai.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.patanachai.com/feeds/5659378410311680793/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3511439926294599678&amp;postID=5659378410311680793' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/5659378410311680793'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3511439926294599678/posts/default/5659378410311680793'/><link rel='alternate' type='text/html' href='http://www.patanachai.com/2008/05/my-ipod-and-itune.html' title='My Ipod and Itunes'/><author><name>Patanachai</name><uri>http://www.blogger.com/profile/15773742950370609102</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/-KoRatqFIO_A/Tdx2nNMs66I/AAAAAAAAArc/81nzfd2gMpw/s1600/193673_10150121186498044_566088043_6421352_7961411_o.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_WfNme6wEiic/SDJXi3J95eI/AAAAAAAAALw/kKrH12gnxxo/s72-c/iTune_album.jpg' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
