For excessively paranoid client authentication.
Updated Apr 5 2019:
because this is a gist from 2011 that people stumble into and maybe you should AES instead of 3DES in the year of our lord 2019.
some other notes:
| /* | |
| * Replace all SVG images with inline SVG | |
| */ | |
| jQuery('img.svg').each(function(){ | |
| var $img = jQuery(this); | |
| var imgID = $img.attr('id'); | |
| var imgClass = $img.attr('class'); | |
| var imgURL = $img.attr('src'); | |
| jQuery.get(imgURL, function(data) { |
| #!/bin/sh | |
| # Shell script to update namecheap.com dynamic dns | |
| # for a domain to your external IP address | |
| HOSTNAME=yoursubdomain | |
| DOMAIN=yourdomainname.com | |
| PASSWORD=y0urp455w0rd | |
| IP=`curl -s echoip.com` |