June 2008
Erlang: An Introduction to Records | 20bits
If you want to to add and remove fields on the fly, or if you don't know what fields you'll have until runtime, you should use dicts rather than records.
whenever using record, how and not (by choosing dict instead)
Real World Haskell » Blog Archive » CUFP 2007 videos now easier to view
[…] the recorded sessions from last year’s Commercial Users of Functional Programming are now up in conveniently viewable form on Google Video.
Erlang, F#, ...
May 2008
gen_server behaviour in Erlang - You don't want to read this.
The power of OTP comes from the fact that properties such as fault tolerance, scalability, dynamic-code upgrade, and so on, can be provided by the behavior itself. In other words, the writer of the callback does not have to worry about [those things] because this is provided by the behavior.
November 2007
Ruminations of a Programmer: Erlang String Lambdas
Over the last weekend I wanted to have a go at porting Oliver Steele's string lambda into Erlang. And here is the result ..
functional programming beauty