Skip to content

Instantly share code, notes, and snippets.

@karronoli
karronoli / Hoge.java
Created May 2, 2012 15:51 — forked from anonymous/Hoge.java
lunch process test
import java.io.File;
public class Hoge {
protected static String command = "mshta";
protected static String html = (new File(".").getAbsoluteFile().getParent()) + File.separator + "a.html";
public static void main(String[] args) throws
java.io.IOException, InterruptedException {
System.exit(Runtime.getRuntime().exec(command + " " + html).waitFor());
}
}
@karronoli
karronoli / gist:1803125
Last active September 30, 2015 13:58 — forked from avocado3/gist:1801194
Bookmarklet:open Pixitail by illust_id
javascript:(function(id){id&&location.href="pixitail://org.cathand.pixitail/pixiv/"+id})(prompt("illust_id?"))
@karronoli
karronoli / flymake-growl.el
Created December 30, 2010 12:35 — forked from kawaguchi/flymake-growl.el
Flymake + Growl for Windows
(require 'flymake)
(setq flymake-growl-warning-priority 1)
(setq flymake-growl-error-priority 2)
(setq flymake-growl-warning-sticky t)
(setq flymake-growl-error-sticky t)
(setq flymake-growl-sticky-list nil)