This blog will contain non-technical, fun and personal posts. All my technical posts will be posted on SMD's blog, http://www.smd.com.my. Looking forward to see you there! :-)

Var Or No Var

Over the past few weeks, I have been working with Dojo Toolkit. Dojo is a powerful javascript toolkit. In javascript, the var keyword is used to declare (or create) variables, but it is not required. What’s the difference between these two statements:
a. var x =17;
b. x = 17;
Short answer. Statement (a) is to create variable [...]

Adding TinyMCE On WP Comment Page

If you note that the comment page in my blog has been added with TinyMCE Editor.
This is the only code you have to insert into your header.php (theme).

Using Qemu By Example

Yesterday, I wrote a post about how to install Qemu and KQemu in Ubuntu Linux. There’re more interesting things about Qemu. Let’s get started with basic usage of Qemu. Following example creates 2GB disk image for Fedora Core 6.
qemu-img create fc6.img 2G
Start Qemu with following command,
qemu -hda fc6.img -cdrom /dev/cdrom -boot d -m 256 -enable-audio [...]