Mozilla Firefox 3.0.8 released

Mozilla has released a new version for Firefox. Version 3.0.8. It’s a security release so make sure you get it. Download Here. Firefox 3.0.8 release notes

2009-03-31 · 1 min · Danesh Manoharan

Installing Novell Moonlight on openSUSE 11.1

First, make sure you have the PackMan repo added. Bring up a console and su to root or use sudo. Run the commands below; zypper -v search moonlight zypper -v install moonlight-plugin Sample output; pandora:~ # zypper -v search moonlight<br /> S | Name | Summary | Type<br /> --+------------------+-------------------------------------+-----------<br /> | moonlight | Novell Moonlight | srcpackage<br /> | moonlight-plugin | Browser plugin for Novell Moonlight | package<br /> | moonlight-tools | Various tools for Novell Moonlight | package ...

2009-03-29 · 1 min · Danesh Manoharan

Full Circle Magazine Issue 23

Full Circle Magazine Issue 23 is out. What’s in it; Command and Conquer - Troubleshooting. How-To : Program in C - Part 7, Web Development - Part 4, and Spreading Ubuntu - Part 2. My Story - Becoming An Ubuntu User Book Review - How To Be A Geek Goddess MOTU Interview - Steve Stalcup Top 5 - Task Managers Grab your copy!! [Direct Download] Source: Full Circle Magazine

2009-03-28 · 1 min · Danesh Manoharan

Earth Hour on DBKL Building @ Dataran Merdeka

Pretty cool ha, Earth Hour Malaysia 2009 being projected onto the DBKL building down by Dataran Merdeka. Pictures taken from Mr. Abinesh

2009-03-28 · 1 min · Danesh Manoharan

Linux Tip #4: Simple sort with the sort command

You can easily sort your outputs in Linux using the “sort” command. Simply pipe “|” your output to a “sort” command and you should see the sorted results. See sample usage below. This is just to start off, I’ve cover more in future posts. [root@hantu ~]# cat numbers<br /> 5<br /> 4<br /> 3<br /> 2<br /> 1<br /> 0<br /> 6<br /> 7<br /> 8<br /> 9 [root@hantu ~]# cat numbers | sort<br /> 0<br /> 1<br /> 2<br /> 3<br /> 4<br /> 5<br /> 6<br /> 7<br /> 8<br /> 9 ...

2009-03-27 · 1 min · Danesh Manoharan