View ubuntu-perl-ssl
sudo apt-get install libnet-ssleay-perl |
View perl-smtp-tls-module
sudo apt-get install cpanminus | |
sudo cpanm Email::Send::SMTP::TLS |
View git-unstage-deleted-files
git status --porcelain | awk '$1 == "D" {print $2}' | xargs git reset HEAD |
View gist:5539764
find . -type d -exec chmod 644 {} \; |
View gist:5625296
git show HEAD~4:file.html > oldFile.html |
View git-track-remote-branch
git remote show origin | |
git remote update | |
git fetch | |
git checkout -b local-name origin/remote-name |
View index.html
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
.graticule { | |
fill: none; | |
stroke: #777; | |
stroke-opacity: .5; | |
stroke-width: .5px; |
View README
Click on the x axis line and drag to change the scale of the graph. |
View index.html
<!-- | |
The MIT License (MIT) | |
Copyright (c) 2013 bill@bunkat.com | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
View install-gdal
# Install subversion | |
sudo apt-get -y install subversion | |
# Install g++ | |
sudo apt-get -y install g++ | |
# Install Hierarchical Data Format library | |
# NOTE: This library is not necessarily needed, but was required | |
# in order for this to compile against a clean Ubuntu 12.04 LTS system. | |
# I didn't need it on a clean EC2 Ubuntu 12.10 instance, so |
OlderNewer