Skip to content

Instantly share code, notes, and snippets.

@JayRaparla
JayRaparla / Regex.java
Created January 15, 2017 00:43 — forked from rhyskeepence/Regex.java
Simplify the insanity of Regex in Java
import com.googlecode.totallylazy.Callable1;
import com.googlecode.totallylazy.Option;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import static com.googlecode.totallylazy.Option.none;
import static com.googlecode.totallylazy.Option.some;
import static com.googlecode.totallylazy.numbers.Numbers.range;
@JayRaparla
JayRaparla / clone_remote_branch.md
Created May 22, 2018 20:31 — forked from ff6347/clone_remote_branch.md
clone remote branch with git
@JayRaparla
JayRaparla / gist:371efdbc6966a5374f4b75cc943cb375
Created May 23, 2018 15:04 — forked from ehuynh/gist:2572398
Start and Stop Jenkins on OSX
# start
sudo launchctl load /Library/LaunchDaemons/org.jenkins-ci.plist
# stop
sudo launchctl unload /Library/LaunchDaemons/org.jenkins-ci.plist