Earth Hour Malaysia 2009, One more day!!

Earth Hour Malaysia 2009 is one day away. Mother earth has a fever and it’s been going up, not sure how much longer she’ll last. We are the aibiotics but somehow forgotten our purpose. It’s time to step up and own up to our purpose on planet earth. Start with Earth Hour…

2009-03-27 · 1 min · Danesh Manoharan

Earth Hour Malaysia site down

The Earth Hour Malaysia portal / website earthhour.org.my is currently unreachable. Looks like they are moving to a larger hosting provider.Last minute rush to pledge causing the spike I guess. Follow the progress on their twitter. Update: The site’s back up but it’s a stripped down version.

2009-03-26 · 1 min · Danesh Manoharan

Download Internet Explorer 8

For those of you who use IE, IE 8 final is out and ready for download. Windows XP{.redirect} XP x64{.redirect} Windows Vista{.redirect} Windows Vista 64-bit{.redirect} Windows Server 2003{.redirect} Windows Server 2003 64-bit{.redirect} Windows Server 2008{.redirect} Windows Server 2008 64-bit{.redirect} Source: WingLoon || IE8

2009-03-24 · 1 min · Danesh Manoharan

Linux Tip #3: System uptime with uptime

Want to know how long your Linux box has been up for? Simple, just run the “uptime” command and you will be rewarded with the answer plus a bit more. 8:58pm up 19:54, 1 user, load average: 0.47, 0.62, 0.35 Above is the typical reply from uptime. On the left is the current time, followed by the system’s uptime, logged in users and finally the system’s load average. Sample output; ...

2009-03-23 · 1 min · Danesh Manoharan

Linux Tip #2: Get your PID with $$

“$$” is a useful Linux variable you could use in your script to get it’s PID. The “$$” variable always holds the PID of the executing process. Why do you need it? Maybe to check if the script is already running? This is what I normally use it for. Sample Script; #!/bin/bash<br /> echo "My PID is $$"<br /> sleep 2 Sample Output; [root@keke ~]# ./test1.sh<br /> My PID is 8909

2009-03-17 · 1 min · Danesh Manoharan