Browsing archives for May 4th, 2007

Var Or No Var

Javascript 4 May 2007 View Comments

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 [...]

Adding TinyMCE On WP Comment Page

Wordpress 4 May 2007 View 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).

Using Qemu By Example

Open Source,Ubuntu 4 May 2007 View 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 [...]