During the day I am a full-time .NET developer working at Amino which has several Danish entrepreneur web sites. As most programmers, I also use some of my spare time programming (big surprise :)). On this site I will put up some of all the applications, code, and resources I have made, developed, written etc.
01/07/10: New version with a coding bug fix, which may have some replays/reader put in an extra empty content part.
05/05/10: New version with some decoding bugfixes.
A small EML/MIME editor under devlopment.
It is currently in version 0.2, and supports some basic functionality:
Get it here: Download EmlNinja
Please wrtie to me at jacob@zoomjam.dk with bugs, comments, etc.
Ropa is a simple expression parser written in Java. It supports the following operators: +, -, *, /, %, ^ (exponentation), + (unary plus), - (unary minus). It also supports variables (e.g. a = 4) and paranthesized expressions. It is well sutied if you need a simple expression parser in your Java program. Simply add the calsses to your project, and use it like this:
Parser theParser = new Parser();
System.out.println(theParser.parseAndEvaluate("4 * 5 / 5 - 4");
System.out.println(theParser.parseAndEvaluate("a = 5);
System.out.println(theParser.parseAndEvaluate("b = 3");
System.out.println(theParser.parseAndEvaluate("(a + b) * 4");
All expressions evaluate to doubles.
Download the source.
You can use this code however you like.
Please wrtie to me at jacob@zoomjam.dk with bugs, comments, etc.
I have written several Danish articles on programming - they can be found on the Danish site Udvikleren.dk:
I have a few sites/projects I am working on in my spare time as small fun projects.