summaryrefslogtreecommitdiffstats
path: root/software/misc.page
blob: b730b0be34856608f751a50f31e6fe4b9ed535f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
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)
<http://www.soc.napier.ac.uk/~andrew/SMLBasis/sml-std-basis.html>`_

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);