I hereby claim:
- I am ohnoitsyou on github.
- I am ohnoitsyou (https://keybase.io/ohnoitsyou) on keybase.
- I have a public key whose fingerprint is A523 15D1 92ED AAE7 E15D AA0E 5FC5 6CAD E2E3 1430
To claim this, I am signing this object:
| #!/bin/bash | |
| if [ -z "$1" ] | |
| then | |
| echo "Please provide a project name" | |
| fi | |
| if [ "-list" == "$1" ] | |
| then | |
| DEBUG=true |
I hereby claim:
To claim this, I am signing this object:
| var foo = { | |
| 'alpha': 'puffin', | |
| 'beta': 'beagle', | |
| 'charlie': 'cat', | |
| 'delta': 'dog' | |
| }; | |
| var keys = [], | |
| i = 0; | |
| for (keys[i++] in foo) {} |
| function parse_git_branch { | |
| git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ \[\1\]/' | |
| } | |
| function proml { | |
| local BLUE="\[\033[0;34m\]" |
| var express = require('express') | |
| , hbs = require('express-hbs') | |
| , http = require('http') | |
| , app = express() | |
| , server = http.createServer(app) | |
| ; | |
| server.listen(3000); | |
| app.engine('hbs', hbs.express3({ |