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
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
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 ...
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
Pretty cool ha, Earth Hour Malaysia 2009 being projected onto the DBKL building down by Dataran Merdeka. Pictures taken from Mr. Abinesh
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 ...