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

Computer ebooks FTP download Links

Some FTP links to download computer related ebooks. One may use:
wget -r URL
to download them all at once.
http://gog.gateit.net/books/
http://sodaphish.com/files/ebks/try2innovate.com/downloads/E-books/
http://orion.vratza.org/Books/Perl/?C=N%3BO=D
http://download.matus.in/doc/eBooks/
http://eduunix.ccut.edu.cn/index2/pdf/
http://www.dgi.gr/books/
http://www.superlinux.net/ebooks/
http://ftp.akaedu.org/mirror/202.96.64.144/books/
http://www.shizzilation.com/books/EBOOKS/Collection%20Of%20Various%20Computer%20Related%20Books/
http://ftp.akaedu.org/mirror/194.44.214.3/e-books/
http://files.hostingmania.rs/How-to/
http://slav0nic.org.ua/static/books/python/
http://www.echofoxx.com/doc/Oreillyhacks/
http://www.sinred.com/downloads/
http://books.osteching.com/
http://www.teroristi.org/books/
http://blacknite.eu/ebooks/
http://hide.osiris.com.br/ebooks/

Saving an output of PostgreSQL query to a text file

In PostgreSQL database it is possible to save / export and results of a database query to a simple text file. By default all query result are displayed on the screen. This default behavior can be overwritten by \o command:
postresql=> \o /path/to/your/text/file.txt
postresql=> postgresql query ( here place your query )
postresql=> \o ( set [...]