START and STOP rtorrent during peak and off-peak hour on thecus N2100

I know that there is a syntax in a rtorrent config file to schedule throttle for uploads and download for rtorrent. However, no matter how hard I tried I did not work for my N2100 NAS device. The only value in regards to throttle uploads and downloads I can control is a global download_rate [...]

Connvert audio ogg files to mp3

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

Google offers free Mysql database

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. [...]