Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am janstenpickle on github.
  • I am janstenpickle (https://keybase.io/janstenpickle) on keybase.
  • I have a public key whose fingerprint is A3E6 4242 E0B1 7494 7186 3977 AAB8 268B D0D7 FD15

To claim this, I am signing this object:

#!/bin/bash
PROJECT_NAME="$1"
SCALA_VERSION="2.11.7"
SPECS2_VERSION="3.0"
mkdir $PROJECT_NAME
cd $PROJECT_NAME
cat > build.sbt << EOF
@janstenpickle
janstenpickle / nig-cage.go
Created July 3, 2015 13:41
Nic Cage Gif Randomiser
package main
import (
"net/http"
ghttp "github.com/gorilla/http"
"math/rand"
"fmt"
"os"
)
public static void waitWhat(String wait, double what) {
if (what > 0.00015) {
System.out.println(wait+"Wait, what?!");
waitWhat(wait + " ", Math.random());
}
}