Posted on January 7th, 2009 by linux
The simplest way how to convert a ogg to mp3 files is to us oggdec command:
for file in *.ogg;do oggdec -o - “$file”|lame -h -V 4 –vbr-new - “$(basename “$file” .ogg).mp3″;done
Filed under: Fun and Linux | Comments Off
Posted on November 12th, 2008 by linux
Search engine is very powerful tool but not just for search but also for beginner hacking. Some mysqladmin web tools are indexed with google which make them available for search. By searching with keywords:
“phpMyAdmin” “running on” inurl:”main.php” site:com
“phpMyAdmin” “running on” inurl:”main.php” site:org
or
“phpMyAdmin” “running on” inurl:”main.php” site:net
etc.
we can get a results for all google indexed mysqladmin. [...]
Filed under: Fun and Linux | No Comments »
Posted on June 17th, 2008 by linux
Here is a very nice vim / vi text editor tutorial for beginnes as well as for more advanced users. Its very easy to follow as it has flash video attached to every section. vi editor tutorial
Filed under: Administration, Fun and Linux, Linux | No Comments »