Archive for the ‘ Erlang ’ Category
One of the things I dislike about Erlang is that it severely impairs bragging opportunities. Yesterday I wrote a module that allows writing literal XML in the source and have it parsed into Erlang structures at compile timesort of like E4X minus the manipulation goodies at runtime (at least for now). You write:
Doc = '<greeting>Hello!</greeting>',
io:format("~p~n", [Doc]).
And it prints
[ READ MORE ]
The XMPP Software Foundation established an intermediate certification authority with StartCom. If you run a public federated XMPP server, in order to provide secure communication, you no longer need to buy an SSL certificate (or resort to a self-signed certificate): simply register an account at http://www.xmpp.net and follow the certificate request process[ READ MORE ]
Uh oh. Beware when you take an evening’s hack and put it online, as
someone who knows what he’s doing might come along and turn it into
something useful. That happened to
seethrough, with a patch courtesy of Joel, who added two major features:
Speaking of winter evenings, a couple of weeks ago over Christmas I spent a few hours whipping together a simple templating system for Erlang. Today I took another couple of hours to put it under version control and to add some ideas I found in ZPT, a similar system (hat tip to Jérôme for pointing it out). [ READ MORE ]