Tips and tricks
diff --git a/devnotes.txt b/devnotes.txt
new file mode 100644
index 0000000..855933f
--- /dev/null
+++ b/devnotes.txt
@@ -0,0 +1,7 @@
+- Help find files without copyright header:
+
+	git whatchanged | less -p "\.\.\. A"
+
+- Find debug println's:
+
+	egrep -nr '^\s*println' src | grep -v " // "