Windows Product Key Finder

Its pretty handy if you lose your product key. Windows Product Key Finder with GUI Download

How to Make Nvidia Drivers Work in Ubuntu 12.10

The problem is the Nvidia drivers are missing a dependency(linux-headers) Run the following commands in the terminal (in case you get a windowless screen press Ctrl+Alt+T to open the terminal.): $ sudo apt-get install linux-headers-3.5.0-17-generic $ sudo apt-get remove nvidia-current $ sudo apt-get install nvidia-current

Speeding Up Your Site With SPDY and Nginx

Prerequisites: nginx >= 1.3.15 By reading this you acknowledge that you: are currently using Nginx as your web sever have SSL enabled on your site The first step is to compile Nginx with SPDY support, at the time of writing this can be done with the –with-http_spdy_module argument. But if your using Ubuntu (which I recommend) and are on the release 10.04 or higher, you can install it easily with my installable packages for Nginx. [Read more from Speeding Up Your Site With SPDY and Nginx...]

Compile Nginx With SPDY

Prerequisites: nginx >= 1.3.15 Compiling Nginx: $ wget http://www.openssl.org/source/openssl-1.0.1e.tar.gz $ tar xzvf openssl-1.0.1e.tar.gz && rm -rf openssl-1.0.1e.tar.gz $ wget get ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre//pcre-8.32.tar.gz $ tar xzvf pcre-8.32.tar.gz && rm -rf pcre-8.32.tar.gz $ wget http://nginx.org/download/nginx-1.3.15.tar.gz $ tar xzvf nginx-1.3.15.tar.gz && rm -rf nginx-1.3.15.tar.gz && cd nginx-1.3.15 $ ./configure --with-openssl=../openssl-1.0.1e --with-http_ssl_module --with-http_spdy_module --with-pcre=../pcre-8.32 $ make && make install To enable SPDY in a nginx configuration, just add the “spdy” and the “ssl” parameters to the listen directive: [Read more from Compile Nginx With SPDY...]

Optimized WordPress Setup Guide (LEMP)

Updated: August 24th 2014 First off I am going tell you the specs of the VPS I am going to be doing this on: RAM: 1024MB OS: Debian Wheezy MariaDB Install and Configuration: First we are going to grab the signing key Then we are going to add the repo by issuing the following commands: $ sudo apt-get install python-software-properties $ sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xcbcb082a1bb943db $ sudo add-apt-repository 'deb http://ftp. [Read more from Optimized WordPress Setup Guide (LEMP)...]

Wnmp 1.0 Released

I figured to help people out, I would combine Nginx, MySQL Server and PHP into one portable application. Read more about it Here