Earlier quoted context omitted.
Not currently. I've setup a twitter account where I'll post updates https://twitter.com/how_i_start and you'll see updates here https://github.com/howistart/howistart before they go live. Depending on how much this picks up I may expand to having an update subscription list. Python and Elixir are next up. Those will hopefully be out by the second week of July.
Just curious, what do you use Erlang for? I can think of neural networks as a possible use case but I don't hear much in the way of that.
EG: If you have a website and want to serve more than one request at at time. If you have multiple people chatting or sending mail, or instant messaging, or voice communicating, erlang is a good choice.
If you have a search engine with many people searching, while spiders crawl the web, erlang is a good choice.
The only "downside" to erlang is new syntax and that its "slower" on a given node. But this last one isn't really a downside-- you can scale a process to 20 nodes with erlang a whole lot better than, say, node.js or java or go. None of those really support concurrency properly (of the ones who even try.)
This makes erlang unique.
I think many engineers try to tell themselves that the JVM or node.js or Go can be concurrent, but they are really just making excuses for the fact that the erlang syntax is a bit of a hurdle for getting started.
I'm fine with that- it makes a great hiring filter!
If someones learned erlang, you know something that makes them better than most of the rest of the programmers out there who are happy to believe rationalizations that let them get away with not learning erlang. (And if you're not thinking about concurrency you're even further behind.)