rikribbers.nl

Somewhere doing something with or without someone

Articles with the erlang tag

Why I wrote the FOAAS erlang client

While my FOAAS erlang client is shaping up very nicely I thought it was time to write down why I wrote the client in the first place. I was looking for a small project to take on with a few goals in mind: Create a Docker image for erlang development....

Validating XML with multiple XSDs in Erlang

Last few years I've been working on a IETF document that describes an EPP extension for transporting DNSSEC key material using the EPP protocol (See the datatracker from the IETF for more information. I've also been learning Erlang for the last 2,5...

Where to start debugging the Erlang VM

Ok we have a production erlang system up and running, but is is leaking memory... wait Erlang doesn't leak memory but processes. There is a talk about it from Berard Dugga and there is one slide that tells it all. I copied the slide here as a note to...

Counting lines of code for Erlang

Thinking that there already was some information available on howto count the lines of code in Erlang I ended up here. > Does anyone know of an open source tool (hopefully without output in > English) that counts lines of Erlang code? grep, wc and find...

Enable IPv6 in Erlang

By default Erlang does not work for IPv6. The Erlang Manual is an excellent reference to get started. Also there is a (relative older) talk by Kenji Rikitake that proved to be very useful in understanding IPv6 in Erlang. Create a conf/erl_inetrc file...