Skip to content

Instantly share code, notes, and snippets.

@muller
muller / .protohub
Last active December 11, 2015 13:00
maven:
groupId: com.example.tutorial
artifactId: address-book-protos
version: 0.0.1
import java.util.BitSet;
import java.util.HashMap;
public class BooDecisions {
public static void main(String[] args) {
System.out.println(getType(true, false, false));
System.out.println(getType(false, true, false));
System.out.println(getType(false, true, true));
@muller
muller / n.sh
Last active August 29, 2015 14:21
standalone jre
#!/bin/bash
B="b14"
case `uname` in
Linux) OS="linux";;
CYGWIN_NT-*)
B="b15"
OS="windows"
;;