This file contains hidden or 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 exitCode = 0; | |
process.on("exit", onExit); | |
function onExit() { | |
//process.removeListener("exit", onExit); // redundant | |
process.exit(exitCode); | |
} | |
exitCode = 3; |
This file contains hidden or 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 |
This file contains hidden or 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 hidden or 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 hidden or 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 |
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:
Open space talk happening at DevOpsDays Vancouver 2109 conference.
This file contains hidden or 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 |