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
#!/usr/bin/env node | |
console.log("stuff got did") |
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/bash | |
#AWS stuff expected from your env... | |
#export AWS_ACCESS_KEY="AWS_ACCESS_KEY" | |
#export AWS_SECRET_KEY="AWS_SECRET_KEY" | |
#path all directories should be copied to | |
copy_path=$HOME/.docker/machine/machines | |
#copy from override location? Override next line |
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
bbc.com/news | |
bbc.com/sport | |
bbc.com/weather | |
bbc.com/travel | |
bbc.com/capital | |
bbc.com/autos | |
bbc.com/culture | |
bbc.com/future | |
bbc.com/sounds | |
bbc.com/food |
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
set numerichints | |
set typelinkhints | |
set scalehints | |
let barposition="bottom" | |
let blacklists = ["https://calendar.google.com/*","https://www.youtube.com/*","https://mail.google.com/*","http://airbnb.io/*","https://app.getpocket.com/*","https://www.polymer-project.org/*","https://*.aws.amazon.com/*", "https://github.com/*", "https://codecloud.web.att.com/*", "https://google.com/maps/*"] | |
map <C-p> :togglepin<CR> |
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
Genetics = { | |
top: window, | |
// builds a descendant object | |
// overridden functions get wrapped with this._super prop pointing to base func | |
// inherits prototype chain | |
originate: function(name, def) { | |
var top = Genetics.top; | |
top[name] = def.init; | |
delete def.init; | |
top[name].prototype = def; |