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
echo "Creating an SSH key for you..." | |
ssh-keygen -t rsa | |
echo "Please add this public key to Github \n" | |
echo "https://github.com/account/ssh \n" | |
read -p "Press [Enter] key after this..." | |
echo "Installing xcode-stuff" | |
xcode-select --install |
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
var bunyan = require('bunyan'); | |
var Stache = require('mustache'); | |
var formatter = function(data) { | |
var str = ""; | |
str += '-_-_-_-_-_-_-_,------, \n'; | |
str += '_-_-_-_-_-_-_-| /\\_/\\\n'; | |
str += '-_-_-_-_-_-_-~|__( ^ .^) \n'; | |
str += '_-_-_-_-_-_-_-"" "" \n'; |
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
// | |
// require the native http module, as well as director. | |
// | |
var http = require('http'), | |
director = require('director'); | |
// | |
// create some logic to be routed to. | |
// | |
function pre(next) { |
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
/* Author: Zack Bonebrake | |
*/ | |
var Requester = function(options) { | |
this.url = options.url; | |
this.data = options.data; | |
this.method = options.reqMethod; | |
this.cors = options.cors || false; | |
this.expects = options.expects || 'application/json' |
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
// | |
// require the native http module, as well as director. | |
// | |
var http = require('http'), | |
director = require('director'); | |
// | |
// create some logic to be routed to. | |
// | |
function pre(next) { |
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:location.href='http://test.metaflies.local/workspaces/sweehat/bookmarks/build?location='+encodeURIComponent(location.href)+';name='+encodeURIComponent(document.title) |