Skip to content

Instantly share code, notes, and snippets.

@flores
Created March 20, 2013 05:22
Show Gist options
  • Save flores/5202509 to your computer and use it in GitHub Desktop.
Save flores/5202509 to your computer and use it in GitHub Desktop.
bitchbot.dumbaas.com
#!/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