This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| openssl req -new -newkey rsa:2048 -nodes -keyout yourdomain.key -out yourdomain.csr | |
| http://support.godaddy.com/help/article/3601/generating-a-certificate-signing-request-nginx | |
| http://support.godaddy.com/help/article/4976/rekeying-an-ssl-certificate | |
| # Be sure to remember to chain them! | |
| cat gd_bundle-g2-g1.crt >> yourdomain.crt | |
| # Move 'em | |
| sudo mv yourdomain.crt /etc/ssl/certs/yourdomain.crt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Ubuntu 12.04 | |
| # https://help.ubuntu.com/12.04/serverguide/openvpn.html | |
| # don't actually run this as a script | |
| exit 0 | |
| # setup airport to port forward 1194 to OpenVPN server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Scraping Made Easy with jQuery and SelectorGadget | |
| // (http://blog.dtrejo.com/scraping-made-easy-with-jquery-and-selectorga) | |
| // by David Trejo | |
| // | |
| // Install node.js and npm: | |
| // http://joyeur.com/2010/12/10/installing-node-and-npm/ | |
| // Then run | |
| // npm install jsdom jquery http-agent | |
| // node numresults.js | |
| // |