Related Posts
command line speed test, see how fast is your server’s connection
Save the following script in a file called speed_test #!/bin/bash # Requirements # sudo apt-get install lftp iperf lftp -e ‘pget http://releases.ubuntu.com/14.04.3/ubuntu-14.04.3-desktop-amd64.iso; exit; ‘ make sure the file is executable: sudo chmod +x speed_test Once you have installed lftp and iperf make sure you have the script somewhere in your $PATH. The script basically downloads […]
First Impressions Lenovo Yoga Pro and Windows 8.1 with a 2 in 1 device.
After now almost 2 weeks of heavy duty use of this machine, I must say Windows 8.1 is not fully baked when it comes to its tiled/touch/app store experience, however it’s not the nightmare I expected. The FrostWire 5.7.0. currently circulating on the Internet was built on this machine, the experience was quite pleasant as […]
[SYSADMIN] Serve your WordPress cached pages directly with lighttpd and not PHP
Optimizing Your WordPress Cache Loads in Lighttpd. If you don’t configure your wordpress virtual host properly in lighttpd, your wordpress cache will still make use of PHP. Wouldn’t it be nice if all those cached requests were served directy from the webserver as the static files that they are, bypassing the CPU/memory load PHP can […]