Skip to content

Instantly share code, notes, and snippets.

View pvdissel's full-sized avatar

Patrick van Dissel pvdissel

View GitHub Profile
#!/bin/bash
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
CONTAINERS_DIR="${DIR}/.containers"
jenkinsVersion="1.580.2"
jenkinsPort="8080"
seedJobName="Seed"
dockerCmd="docker"
@pvdissel
pvdissel / .tmux.conf
Created February 18, 2013 08:58
My tmux config
# Setting the prefix from C-b to C-a
set -g prefix C-a
# Free the original Ctrl-b prefix keybinding
unbind C-b
# Setting the delay between prefix and command
set -s escape-time 1
# Ensure that we can send Ctrl-A to other apps
$ ./configure
$ make
$ sudo make install
def gotTools() {
return 'Yes I haz'
}
class GhelloSayer {
def sayGHello() {
return 'Ghello!'
}
}
#!/usr/bin/env groovy
def sayer = new GhelloSayer()
println sayer.sayGHello()
println new Utils().gotTools()