Skip to content

Instantly share code, notes, and snippets.

View bcourtine's full-sized avatar

Benoît Courtine bcourtine

View GitHub Profile
@bcourtine
bcourtine / idea.vmoptions
Created December 14, 2012 10:33
Tunning IntelliJ VM options for better performance
-Xms256m
-Xmx1024m
-ea
-server
-Dsun.io.useCanonCaches=false
-XX:MaxPermSize=250m
-XX:ReservedCodeCacheSize=64m
-XX:+UseCodeCacheFlushing
-XX:+UseConcMarkSweepGC
-XX:+AggressiveOpts
@bcourtine
bcourtine / git-build
Last active October 4, 2015 22:47 — forked from dgageot/git-build
Unbreakeable build
#!/bin/bash
# which silent mode (-s) is not supported on all systems.
function alert_user {
echo "${1}";
which growlnotify && growlnotify `basename $0` -m "${1}"
which notify-send && notify-send -u "${2}" "${1}" `basename $0`
}
function exit_ko {
@bcourtine
bcourtine / .gitignore
Created December 25, 2010 18:48
Git Generic Ignore File
# Répertoire spécifique à l'environnement MAC
.DS_Store
# Fichier spécifique Windows
Thumbs.db
# Fichiers et répertoires spécifiques à IntelliJ IDEA
test-output/
out/
.idea/
*.iml
*.ipr