--- format: rst toc: no ... ======================================= Miscellaneous Software Stuff ======================================= Log Analysis --------------- http://logstash.net/ Regular Expressions --------------------- http://code.google.com/p/semicomplete/wiki/GrokDiscovery http://txt2re.com/ Executable Compression ----------------------- UPX: Ultimate Packer for Executables http://upx.sourceforge.net/ Webmail ------- the null webmail client http://www.nulllogic.ca/webmail/ Standard ML ----------- `The SML Standard Basis (of types) `_ Mutually recursive function using 'and' syntax: fun foo 0 = "beer car" | foo n = bar(n-1) and bar 0 = "bacon" | bar n = foo(n-1);