Skip to content

Instantly share code, notes, and snippets.

View kesselborn's full-sized avatar

Daniel Bornkessel kesselborn

  • http://innoq.com
  • Berlin, Germany
View GitHub Profile
0
@kesselborn
kesselborn / keybase.md
Created September 23, 2014 09:38
keybase.md

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:

{
@kesselborn
kesselborn / .godir
Created July 20, 2012 14:18
Heroku go sample project
github.com/soundcloud/gotest
@kesselborn
kesselborn / create_lxc.sh
Created August 26, 2011 09:58
creates a simple lxc container and starts bash in it
#!/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');
});