I hereby claim:
- I am kesselborn on github.
- I am kesselborn (https://keybase.io/kesselborn) on keybase.
- I have a public key whose fingerprint is 1540 2750 5592 2181 F9EB E6BA FDC7 1B6E 9518 6880
To claim this, I am signing this object:
{
0 |
I hereby claim:
To claim this, I am signing this object:
{
github.com/soundcloud/gotest |
#!/bin/bash | |
# creates a simple lxc container and starts bash in it | |
# ... steps from tutorial on: | |
# http://www.phenona.com/blog/using-lxc-linux-containers-in-amazon-ec2/ | |
if [ "$(whoami)" != "root" ] | |
then | |
echo "script must be executed as root!" | |
exit 1 | |
fi |
# git lye | |
# An attempt to make rebasing easy, by draining unnessarcy commit noise. | |
# No warranty, use at own risk. | |
# Author Hannes Tydén <[email protected]> | |
# Contributor Tobias Schmidt <[email protected]> | |
# TODO | |
# - Don't sign off all commits are by current user. |
var express = require('express'); | |
var app = express.createServer(); | |
app.set('view engine', 'jade'); | |
app.use('/public/', express.static(__dirname + "/public/stylesheets/")); | |
app.get('/', function(req, res) { | |
res.render('index'); | |
}); |