READY/IN DEVELOPMENT/HOLD
YES | NO
A few sentences describing the overall goals of the pull request's commits.
| #!/bin/bash | |
| export MACOSX_DEPLOYMENT_TARGET=10.6 | |
| export ARCHFLAGS="-arch i386 -arch x86_64" | |
| # GEOS from source. | |
| cd ~/work/geos-3.4.2 | |
| ./configure CFLAGS="-Os -arch i386 -arch x86_64" CXXFLAGS="-Os -arch i386 -arch x86_64" LDFLAGS="-arch i386 -arch x86_64" | |
| make clean | |
| make |
PER_PAGE from 1000 to 500 to get around API gateway timeout errorsmeta['total'] which is no longer part of the API response JSONAccompanies blog post: Transit dimensions: Transitland Schedule API
| #!/usr/bin/env/ruby | |
| require 'socket' | |
| # AWS API Credentials | |
| AWS_ACCESS_KEY_ID = "your-aws-access-key-id" | |
| AWS_SECRET_ACCESS_KEY = "your-aws-secret-access-key" | |
| # Node details | |
| NODE_NAME = "webserver-01.example.com" |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| # source: http://macorios.com/blog/2013-2-28-sync-moom-between-two-or-more-macs | |
| # Copy this file to the new mac. | |
| ~/Library/Preferences/com.manytricks.Moom.plist |
| #!/usr/bin/env ruby | |
| # | |
| # Proof-of-Concept exploit for Rails Remote Code Execution (CVE-2013-0333) | |
| # | |
| # ## Advisory | |
| # | |
| # https://groups.google.com/forum/?fromgroups=#!topic/rubyonrails-security/1h2DR63ViGo | |
| # | |
| # ## Caveats | |
| # |
| #!/usr/bin/env ruby | |
| # | |
| # Proof-of-Concept exploit for Rails Remote Code Execution (CVE-2013-0156) | |
| # | |
| # ## Advisory | |
| # | |
| # https://groups.google.com/forum/#!topic/rubyonrails-security/61bkgvnSGTQ/discussion | |
| # | |
| # ## Caveats | |
| # |