This file contains 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
javascript:document.location.href='http://inkwell.github.com/'+location.href.replace(/^.*\//,''); |
This file contains 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
# | |
# 1. Install https://github.com/alloy/terminal-notifier | |
# | |
# 2. Put this in your ~/.bash_profile | |
# | |
# 3. Use like this: | |
# `nwd <some job>` | |
# | |
# When the job's done, you will get a notification that, when clicked, takes you to Terminal.app. | |
# |
This file contains 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
<a href="http://www.flickr.com/photos/mapbox/7802503562/" title="MapBox iOS SDK documentation by MapBox, on Flickr"><img src="http://farm9.staticflickr.com/8432/7802503562_c698fa7f78_c.jpg" width="800" height="566" alt="MapBox iOS SDK documentation"></a> |
This file contains 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
bwd() | |
{ | |
$* | |
printf \\a | |
} |
This file contains 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
HTTP/1.0 502 Bad Gateway | |
Content-Length: 503 | |
Server: CloudFront | |
Date: Fri, 06 Jan 2012 00:28:59 GMT | |
Content-Type: text/html | |
Expires: Fri, 06 Jan 2012 00:28:59 GMT | |
X-Cache: Error from cloudfront | |
X-Amz-Cf-Id: 4ccf15ce4a77319c7042073815b6e57aae9d97d3e5965c4acfbcb94e36546fdc5b168db95593e63c,11628e47ec5a2b5ca47ffed89ea9618c26956e1639d0ddac3f340d6c9d4b1c718d17a3b3479dd8a4 | |
Via: 1.0 2ba8d32c0ef1d73da2fcae191d906606.cloudfront.net:11180 (CloudFront), 1.0 9f619df210e737c1479674b741ae9bf5.cloudfront.net:11180 (CloudFront) | |
Connection: close |
This file contains 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
ssh-dss AAAAB3NzaC1kc3MAAACBAJzZ9jFXyrOCUfLzT1+sZjc63YIc69akPTWC1JpSKBC0hf+bHXFHOpTQbOY0HXzkO4yE+dvnv+6KREVX7fxYWMXBJtEWnMzuZ+qZOf1b0foWpUDy9llJUVqEak0Fi/AmFiA/je9YA6Fx2aplZ2EoxVNbJF82fFf/hdBWHQB6KcIHAAAAFQC5+/yOJkW/hFjDs3VHWUvMeP5cOQAAAIAGCCmFmx4Ak13OwzO3Bw+FbRAGW0/cdFHMQpHehhKCqXRaEonoHR1SABzUU7xf0cpGfpEjVUH1DdxpSkZ33PEFB2CI1ohj9p/ZcfS/fwuXtvMu5EWj/Llq4ontp3arvQrF+UQBYj/0b4cxkEStV+bCTZXnDEQfPgSSvFzM+1YlawAAAIBvGJcWdsUdE6I28APMOQeIGKFdQt6/x+Y4fWxzXOeomr35hJlx8QVMVe3Ynd6vSPdw68khBYIyU/71d9W9jWD8Dh1I05GMUKQ/19reKkh+C5bk5nwL6mNjpEsAiSDWQcvEtcDcZJ4DB02yyT9CdkvfMk1bD3rn0FPdIOyqgbYlHQ== Justin Miller |
This file contains 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 | |
if [ -z $1 ]; then | |
echo "Usage: $0 <filename.mbtiles>" | |
exit 1 | |
fi | |
sqlite3 -line $1 'select * from metadata;' | sed -e 's/^\(.\{85\}\).*/\1.../' -e 's/^ name = /+++/' -e 's/value = //' | grep -v ^$ | sed -e 's/^\([^+++]\)/ \1/' -e 's/^+++//' | |
echo "size" |
This file contains 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 | |
for x in `heroku config`; do | |
if [[ $x == HUBOT* ]]; then | |
name=$x | |
elif [ $x != '=>' ]; then | |
value=$x | |
export $name=$value | |
fi | |
done |
This file contains 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 | |
echo "Connecting to Heroku Redis instance..." | |
if [ -n "$1" ]; then | |
echo "Executing \`$1\`..." | |
fi | |
url=`heroku config | grep REDISTOGO_URL | awk '{ print $3 }'` |
This file contains 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 | |
# Script by @incanus to update Hubot from release tarballs since | |
# repo tags are meant for development. | |
if [ -z $1 ]; then | |
echo "Usage: $0 <version>" | |
exit 1 | |
fi |