Nick Mudge
30 July 2008
Rob Olson wrote an interesting post: What if I went to a Java school Joel? This is interesting: We need innovation at the lowest level of software in order to continue innovating at the top.
Comment
22 July 2008
I've been using some binary tools to inspect and learn about ELF binary files. If you are unfamiliar with the Executable and Linkable Format (ELF), here's the standard which is the main reference I've been learning from.
If you know of other good information on ELF or tools regarding it let me know.
17 July 2008
I wrote a second parser that parses arithmetic expressions. It implements a pushdown automaton using the C function call stack as the stack. In other words it uses recursive functions. It's 45 percent less code than my last parser and is much more elegant. It also handles nested parentheses correctly. I hooked it up to the web interface. |
|