Learn You Some Erlang for Great Good (2013)
learnyousomeerlang.com
Learn You Some Erlang for Great Good (2013)
1–10 of 28 posts
Re: Learn You Some Erlang for Great Good (2013)
#2Re: Learn You Some Erlang for Great Good (2013)
#3If you're learning Elixir right now, I can't recommend enough to also learn a bit about Erlang. The OTP and BEAM VM sit underneath both systems, and learning about what's going on under the hood helps a ton when troubleshooting production issues!
Re: Learn You Some Erlang for Great Good (2013)
#4Re: Learn You Some Erlang for Great Good (2013)
#5Re: Learn You Some Erlang for Great Good (2013)
#6For those familiar with BEAM-based languages, are there any advantages to choosing Erlang over Elixir when starting a new project?
Re: Learn You Some Erlang for Great Good (2013)
#7For those familiar with BEAM-based languages, are there any advantages to choosing Erlang over Elixir when starting a new project?
Re: Learn You Some Erlang for Great Good (2013)
#8This book is nothing like the famous Haskell book of similar title. It's really hard to read, with walls of text displayed in a very small font and very little contrast. And already in the first pages it fails to explain the basic question for the newcomer: Why do I need Erlang? What can it do that other languages can't?
Re: Learn You Some Erlang for Great Good (2013)
#9For those familiar with BEAM-based languages, are there any advantages to choosing Erlang over Elixir when starting a new project?
I think by now there's also more open source Elixir code out there, which means LLMs will be somewhat more proficient in Elixir (they're not great at it though, but enough to help).
It's harder to work in Erlang and incorporate Elixir libraries than the reverse, although it's certainly possible (you would use the mix build tool from Elixir to do so).
My main pros for Erlang are that it's a simpler language than Elixir with less "magic" and fewer footguns. I still use both, in the same system even, but most new code in the system is written in Elixir.