mkdir test
cd test
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
# | |
# git clone https://gist.github.com/f38382326aff1e88af30d8837189940b.git | |
# cd f38382326aff1e88af30d8837189940b | |
# brew bundle install | |
# | |
tap "homebrew/bundle" | |
tap "hashicorp/tap" | |
brew "hashicorp/tap/packer" |
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
.vagrant | |
.DS_Store | |
output-ubuntu-* | |
*.log | |
*.box | |
*~ | |
*.swp |
Open space talk happening at DevOpsDays Vancouver 2109 conference.
I hereby claim:
- I am mainiak on github.
- I am mainiak (https://keybase.io/mainiak) on keybase.
- I have a public key ASBN-6JXB8YYHXtrIKEGc6U8es04GDA29zPl5F3dpA8JfQo
To claim this, I am signing this object:
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
*.swp | |
*~ | |
bundle.js | |
node_modules |
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 | |
var Lock = require('./lock.js'); | |
var lock1 = new Lock(); | |
console.log('lock1.get() #1: ' + lock1.get(function () { | |
console.log('this will never run'); | |
})); | |
console.log('lock1.get() #2: ' + lock1.get(function () { |
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
<!DOCTYPE html> | |
<meta charset="utf-8" /> | |
<title>WebSocket Test</title> | |
<script language="javascript" type="text/javascript"> | |
var wsUri = "ws://echo.websocket.org/"; | |
var output; |
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
node_modules |
NewerOlder