Skip to content

Instantly share code, notes, and snippets.

@drinkcat
drinkcat / gist:6559868
Created September 14, 2013 08:12
Intellij Idea Community Edition console output
OpenJDK Runtime Environment (IcedTea 2.3.9) (ArchLinux build 7.u21_2.3.9-4-armv7h)
OpenJDK Zero VM (build 22.0-b10, mixed mode)
WARNING: You are launching the IDE using OpenJDK Java runtime.
ITS KNOWN TO HAVE PERFORMANCE AND GRAPHICS ISSUES!
SWITCH TO THE ORACLE(SUN) JDK BEFORE REPORTING PROBLEMS!
NOTE: If you have both Oracle (Sun) JDK and OpenJDK installed
please validate either IDEA_JDK, JDK_HOME, or JAVA_HOME environment variable points to valid Oracle (Sun) JDK installation.
See http://ow.ly/6TuKQ for more info on switching default JDK.
@drinkcat
drinkcat / gist:6482317
Last active December 22, 2015 13:58
awk version of branch matching
ADHD_HEAD="`awk '
BEGIN {
crosver = "'"$CROS_VER"'"
crosvers[0] = crosver
while (sub(/\.[^.]*$/, "", crosver))
crosvers[length(crosvers)] = crosver
bestmatch = length(crosvers)-1
}
sub(/refs\/heads\//, "", $2) {