Skip to content

Instantly share code, notes, and snippets.

@jmini
jmini / Main
Created January 11, 2015 06:57
Main for the Stackoverflow a question http://stackoverflow.com/q/27884534/91497
//see http://stackoverflow.com/q/27884534/91497
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
public class Main {
public static void main(String[] args) {
@serverwentdown
serverwentdown / javarun
Last active August 29, 2015 14:13
Java shat, so that I can just be like `vimjava a` and `:w`
#!/bin/zsh
echo 'Building...'
javac $1.java \
&& (
echo '+-------------OUTPUT-------------+'
java $1
echo '+--------------------------------+'
)
return 0