How did you learn Erlang?

I’m curious how you all got to where you are - how did you learn Erlang?

  • Did you study computer science at university?
  • Are you self taught?
  • Which books have you read that you found helpful?
  • What about other online courses? (Maybe some of you have done @simonthompson’s courses?)

For anyone interested in reading Programming Erlang, don’t forget we have a whopping 30 copies to give away as part of our book club! See our launch announcement for details!

3 Likes

I knew a touch of prolog so the syntax was obvious, and it’s similar enough to the ML languages that I already knew that it was quite easy to pick up as a language, however OTP was new to me and was amazing to work in so I just kind of dived in to the code and docs both to see what made it tick and understand it, so I’m self taught I guess!

2 Likes

I learned Erlang through Learn You Some Erlang for Great Good by Fred Hébert, I found it a nice and concise introduction, but I had worked in multiple languages before then, did a little functional programming (Scheme) and did some related university studies.

4 Likes

I’m self taught, through Fred’s LYSE and other online sources I could find at the time. I later bought a few more books (including another of Fred’s), and did Simon’s courses on Futurelearn.

I struggled to learn it at first attempt. I also struggled to learn it at second attempt. Third time worked a charm! On this occasion, I set myself a problem and solved it with Erlang. I was on a work trip with a bit of downtime that I filled with this exercise.

4 Likes

I loved catching that when new chapters came out, it was wonderfully humorous and informative both!

2 Likes

You four ^^ aren’t helping! You are making my reading list get bigger and bigger :lol:

It’s great hearing you all enjoyed the book - I am sure @MononcQc will be pleased to see his work helped so many people :blush:

2 Likes

Five…

I never really read it front to back, but often when I had problems one of its chapters was on the top of the search results. I learnt much from those. Another top result has been "Erlang in Anger“ which is written by Fred as well.

5 Likes

I learned Erlang at Uppsala University.

3 Likes

My professor said to me while we were working on my thesis “look up erlang, you will like it”.

So looked it up and here we are.

I was curious about why he knew erlang though since he didn’t teach any Functional Programming or Distributed systems course. When i learnt that Erlang firstly was kind of dialect of Prolog i understood. He is a huge fan of Prolog.

3 Likes

OK, I cheated here :wink:

17 Likes

Long ago, more than 15 years, I was a C/C++ programmer working for a start-up that was creating a Media Gateway Controller, with custom h/w and s/w. The machine interface used Megaco H.248, and needed testing. The test tools of the time were either exorbitant, incapable, or both, so I was given the task of making an H.248 test tool.

I found an H.248 protocol stack offered as open source from Ericsson – it just happened to be built on this weird language, Erlang. Well, that wasn’t gonna stop me. The test tool I wrote in Erlang was remarkably capable, outpacing the C/C++ product even when running on Pentium PCs

It made me unpopular with the dev team there, so I joined T-Mobile where Erlang skills were in demand – bye-bye C/C++, never looked back (-:

5 Likes

Would be awesome if you could share some details on how you’re using Erlang at those companies :sunglasses:

Actually you’ve just given me an idea for a thread :003:

Edit: posted here: How are you/your companies using Erlang? - thanks for the idea Pete! :023:

1 Like

Self taught, from the red Erlang book, the only resource that existed at the time (circa 2000).

2 Likes

I got a CS degree (sort of… Software Engineer, whatever it means, circa 2011) then I found ChicagoBoss were I started dealing with erlang, some hiatus later I found LearnYouSomeErlang

3 Likes

My office back then had a copy of the 1996 Erlang book from Ericsson, and I was in a small R&D team when my boss threw me a copy of Joe’s 2007 book as well. I read through the latter, then the former, then got more books anyway (Francesco’s first), and eventually got a job there.

I stole the 1996 copy of the book they had and still have it to this day, it was also my first intro to distributed systems (it showed how to implement a distributed 2-phases commit!)

At some point in the middle I had started writing LYSE on my own, and the most learning I did came from digging into the language design and decisions, e-mailing Robert and Joe and Richard Carlsson to get details about the rationale behind a few things, and then writing them down for others.

10 Likes

Training course at Erlang Solutions, November 2012.

2 Likes

I’m self-taught as well: my introduction was from Joe Armstrong’s talk “The Mess We’re In”. From there I bought “Programming Erlang”and “Erlang and OTP in Action”, and printed out his thesis (accidentally single sided so it’s quite large…).

I’ve always been meaning to make time for “Erlang in Anger” so maybe I should soon!

3 Likes

I’m still learning Erlang. I’ve read parts of Programming Erlang, Erlang Programming, Learn You Some Erlang, and Erlang and OTP in Action. It’s been an iterative process for me, which seems appropriate. The people over on the Erlang Slack in the #learning channel have been unbelievably helpful.

2 Likes

Hi,

I learned it by reading the reference manual in 2006 and the OTP docs available at that time (including releases, boot scripts and all that stuff).
When Joe release its book later on, I thought: waow that would have save me a few dozen hours… (thanks Joe for the community). I preciously keep my first printed edition of his book, it will become a collector in a few decades :wink:

Sébastien.

3 Likes

Helping design it arguably takes more effort than just learning it after it’s designed though, lol.

3 Likes