Skip to content

Instantly share code, notes, and snippets.

View mko's full-sized avatar
🥃
Design. Code. Whiskey.

Michael Owens mko

🥃
Design. Code. Whiskey.
View GitHub Profile
@mko
mko / gist:4758911
Last active December 12, 2015 10:28
var geojson = {
"type": "Feature",
"properties": {
"ZCTA5CE10": "94117",
"GEOID10": "94117",
"CLASSFP10": "B5",
"MTFCC10": "G6350",
"FUNCSTAT10": "S",
"ALAND10": 4370658.0,
"AWATER10": 1625.0,
data:text/html;charset=utf-8, <html contenteditable><script>var t=prompt("What do you want to call this file?","TextEditor");document.title=t;</script> <link rel="shortcut icon" href="http://g.etfv.co/https://docs.google.com"/> <style> html{height: 100%;} body{background: -webkit-linear-gradient(#f0f0f0, #fff); padding: 3%; height: 94%;} .paper { font: normal 12px/1.5 "Lucida Grande", arial, sans-serif; width: 50%; height: 80%; margin: 0 auto; padding: 6px 5px 4px 42px; position: relative; color: #444; line-height: 20px; border: 1px solid #d2d2d2; background: #fff; background: -webkit-gradient(linear, 0 0, 0 100%, from(#d9eaf3), color-stop(4%, #fff)) 0 4px; background: -webkit-linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px; background: -moz-linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px; background: -ms-linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px; background: -o-linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px; background: linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px; -webkit-background-size: 100% 20p
@mko
mko / gist:3861881
Created October 9, 2012 22:33 — forked from jazzychad/gist:3861848
git post-receive hook to tar the repo and send to s3 for backup
#!/bin/bash
# a post-receive hook for git servers to tar the current repo and send to s3 for backup
# save as 'post-receive' and put it in .git/hooks of desired repo(s), chmod +x
# assumes you have the s3cmd program installed and configured (sudo apt-get install s3cmd)
echo "thanks for the push. have a nice day."
# configure your S3BUCKET name, the rest should be automatic
9/27/12 7:33:29.514 PM Prototypes[7709]: error image 2: Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x111b28740 {NSUnderlyingError=0x115eb47f0 "The request timed out.", NSErrorFailingURLStringKey=https://prototypesapp.com/prototype-api/v1/image/0B6E79FC-CC19-4071-8D93-E5BDAD310BDB/7D17F5BA-B947-4CE4-BAB7-AA6559FC7B00, NSErrorFailingURLKey=https://prototypesapp.com/prototype-api/v1/image/0B6E79FC-CC19-4071-8D93-E5BDAD310BDB/7D17F5BA-B947-4CE4-BAB7-AA6559FC7B00, NSLocalizedDescription=The request timed out.}
9/27/12 7:42:48.442 PM Prototypes[7709]: error image 2: Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x10c9c56a0 {NSUnderlyingError=0x1267eacd0 "The request timed out.", NSErrorFailingURLStringKey=https://prototypesapp.com/prototype-api/v1/image/0B6E79FC-CC19-4071-8D93-E5BDAD310BDB/15941B37-8068-4A72-85A3-6091CF368346, NSErrorFailingURLKey=https://prototypesapp.com/prototype-api/v1/image/0B6E79FC-CC19-4071-8D93-E5BDAD310BDB/15941B37-8068-4A72-85A3
@mko
mko / Node.js + Sphero
Created August 21, 2012 23:47
Example of Node-like callback behavior with Sphero SDK
bot.setRGB(req.param('red'), req.param('green'), req.param('blue'), function(err, data) {
if(err) {
reply.error = new Error(err.message);
} else {
reply = data;
}
});
res.send(reply);
return;