Created
March 20, 2013 05:22
-
-
Save flores/5202509 to your computer and use it in GitHub Desktop.
bitchbot.dumbaas.com
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/node | |
var express = require('express'); | |
var app = express(); | |
app.get('/', function(req, res){ | |
var optimization = [ | |
"git", | |
"devops", | |
"agile", | |
"waterfall", | |
"a new ticketing system", | |
"tdd", | |
"pair programming", | |
"personal accountability", | |
"this shit I read" | |
]; | |
res.send('The current process sucks and is holding us back! If we would just accept my recommendation of using ' + optimization[Math.floor(Math.random()*optimization.length)] + ' we would save hours of currently wasted resources and pain for our teams. Y U NO LISTEN TO ME?'); | |
}); | |
console.log("let's go!"); | |
app.listen(5051); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment