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
= LUL | |
:author: Chisel Wright | |
:twitter: @chizcw | |
Some intro will go here | |
Data mostly from: http://en.wikipedia.org/wiki/List_of_London_Underground_stations#Stations | |
vim search/replace: | |
* s!^\([a-z]\+\) \(.\+\)$!CREATE (\1:Station { name:"\2" } )! |
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 | |
# username needs to be specified | |
if [ -z "$1" ]; then | |
echo "usage: $(basename $0) username"; | |
exit; | |
fi | |
username=$1; | |
# we need to be running as root |
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
# remap prefix from 'C-b' to 'C-a' | |
unbind C-b | |
set-option -g prefix C-x | |
bind-key C-x send-prefix | |
# status bar at the top please | |
set-option -g status-position top | |
# reload config file (change file location to your the tmux.conf you want to use) |
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
(function() { | |
if(!document.getElementById("botr_nrldb8_div")) { | |
document.write("<div id='botr_nrldb8_div'><iframe src=\"https://vistabee.com/popups/embed/nrldb8/DGpLK4N9\" scrolling=\"no\" style=\"width:100%;height:auto;border:none\" allowfullscreen></iframe></div>"); | |
} | |
})(); |
CREATE (neo:Database {name:'Neo4j'})
CREATE (neo)-[:SUPPORTS]->(:Language {name:'Cypher'})
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
abstract class BasePipeline { | |
abstract def releaseToProd() | |
} | |
abstract class BaseEcsPipeline extends BasePipeline { | |
final def releaseToProd() { | |
return "ECS Prod Release" | |
} | |
} |