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 [...]
Posted on May 4th, 2007 by SMD
Filed under: Javascript | No Comments »
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).
Posted on May 4th, 2007 by SMD
Filed under: Wordpress | No Comments »
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 [...]
Posted on May 4th, 2007 by SMD
Filed under: Open Source, Ubuntu | No Comments »