iPhone 3GS

June 9th, 2009

Shipping estimate: May 20, 2010 !?!?!

Mouse Battery Low

June 5th, 2009

A few minutes ago, I was shocked when my Fedora 10 warned me about my mouse battery was low and was full %17. Amazing.. I didn’t know that this mouse sends battery status to the computer since it has battery indicators lights on it. This Logitech MX 1000 Laser Mouse.

Kindle DX

June 2nd, 2009

Shipping estimate: June 15, 2009 :)

Google down

May 14th, 2009

Google is very slow at the moment. It has been like this for like past 5 minutes.

PS: I switched back to Firefox. Nothing can beat it !

Lets give Opera a try

May 6th, 2009

Being frustrated of Firefox’s hunger for more system resources I decided to give Opera 9 a try. Here is a few bechmarks amongst browsers

Kindle DX

May 6th, 2009

I am not sure how much more I can keep myself from buying a kindle after seeing new Kindle DX which has 9.7″ diagonal E-Ink® electronic paper display, 1200 x 824 pixel resolution at 150 ppi, 16-level gray scale and soon to be on sale.

Simple Linux Load Monitor with Bash Script

May 1st, 2009

This script saved eased my job while stress testing servers by showing the peak and actual value while it runs.
save it as a load-monitor.sh and run as sh load-monitor.sh

PEAK=0;
while [ 1 ]
do
LOAD=$(echo “scale=2; `uptime|sed ’s/.*average:.\([0-9]*\.[0-9]*\),.*/\1/’`” | bc)
PEAK=$(echo “a=$LOAD;b=$PEAK;if(a
echo $PEAK ” ” $LOAD

sleep 2
done