Skip to content

Instantly share code, notes, and snippets.

View dylan's full-sized avatar
📡

Dylan Wreggelsworth dylan

📡
View GitHub Profile
@dylan
dylan / Base.png
Created January 29, 2016 09:41 — forked from pbogden/Base.png
Georeference an image
Base.png
DIRECTORY="/usr/local/etc/openssl/certs"
download_cert() {
cd $DIRECTORY && wget http://curl.haxx.se/ca/cacert.pem
}
add_to_zsh() {
echo "export SSL_CERT_FILE=$DIRECTORY/cacert.pem" >> ~/.zshrc
}
//
// Automatically calls all functions in APP.init
//
jQuery(document).ready(function() {
APP.go();
});
//
// Module pattern:
// http://yuiblog.com/blog/2007/06/12/module-pattern/