New GNOME Weather Applet does not have Alor Setar option!

I’m frustrated with the new GNOME Weather applet included with Ubuntu Intrepid Ibex. For some reason, my hometown is not included in the list.

Weather Applet

I wonder why, as my hometown is present in all previous releases of the Weather Applet. Seems now I can’t monitor the weather condition of my hometown (Alor Setar) anymore from my desktop :(

This bugs me as I use it occasionally to monitor weather conditions and to make decision on my ham radio activities.

Is your hometown / place listed on the Weather Applet?

Enabled WP-SuperCache for my blog

I’ve decided to install and enable WP-SuperCache plugin for my blog. This does not mean that I’ve been receiving thousands of site hit everyday, but as a precaution because I’ve noticed spikes of traffic on the server log that might effect the overall performance of the web server.

Since most pro-blogger suggested WP-Supercache, I might as well take their advice and install it. Hopefully this would improve the server load during the spike (which I suspect contributed by ill-behave webbots/crawler) as well as loading time for my blog.

I’ll keep my fingers crossed

Watched My Wife, The Ghost shorts

Watched My Wife, The Ghost – a short by a group of New Yorkers, a story that filled with puns and cliche common to tv series in the 60s. It consists of 5-minutes episodes. The next-week plot advances in form of cliffhanger of the current episode.

My Wife The Ghost, mypapit, sarah burns, upright citizen brigade

Funny, although filled with repetitive puns (plus some amateurish acting), it is much better than some of the hour long tv series that i’ve been watching for the rest of the week. Why cant anybody create a tv series as good as this anymore?

You can download My Wife, The Ghost from Channel 101:NY website.

p/s: This is not an actual 1960s tv series. Also available from Youtube.com

Ubuntu.com.my new face !

For those who haven’t noticed yet, our local Ubuntu-my website has been revamped! Now written in Malay to reflect the local national language as well as the l10n effort that are being carried on the Ubuntu project!

Ubuntu-my page

How can I contribute to Ubuntu-my ?

How to Import export MySQL database from command line

This tip would be useful for those who are either making backup of their remote mysql database or moving their web hosting to their provider.

Here’s how to export mysql DB to SQL file using command-line utility :
mysqldump –user=username –password=1234 –databases your_database –opt –quote-names –complete-insert > example.sql

Here’s how to import the SQL back into mysql database :
mysql –user=username –password=1234 –databases your_database –host=mysql_server host

Don’t forget to add your ip address to the list of allowable host on the remote MySQL server!