So this is actually an incredibly interesting interview, I recommend actually taking the time to listen to this one.
@envueltoenplastico3 жыл бұрын
Agreed, very enjoyable!
@jean-francoisburdet44583 жыл бұрын
great talk. thanks guys.
@jameshulse22 жыл бұрын
Great discussion.
@robinmattheussen23953 жыл бұрын
That comment on the code formatters in Haskell made me chuckle, I can't keep track of all the formatting tools either :)
@sasser.323 жыл бұрын
I came for copper and i found gold
@sebastianfey563 жыл бұрын
can you point me to the project you talk about at 38:00
@Serokell3 жыл бұрын
github.com/cloudozer/ling This should be the one. :)
@jonnmostovoy24063 жыл бұрын
@@Serokell that's it
@gcasanas13 жыл бұрын
I am curios if an Erlang process is the same as the OS process. If not, it could be that one Erlang process runs within one OS process?
@jonnmostovoy24063 жыл бұрын
Erlang has its own runtime. Basically it spawns a scheduler per core and each scheduler is a thread. Then, OS-wise, each scheduler is a an OS thread. Within each scheduler you can start Erlang processes, which, OS-wise are "green threads" or "fibers". Erlang, however, it runs these fibers in isolation, that's why they're called "processes". I hope this brief explanation helps!
@gcasanas13 жыл бұрын
@@jonnmostovoy2406 it does
@artur.plysiuk3 жыл бұрын
Now I know how to pronounce his name :)
@colloredbrothers3 жыл бұрын
Is azure functions comparable to those concurrent processes? Not sure how Microsoft runs this on their side, I always assumed it was based on kubernetes pods, they have max runtimes of 15 minutes and are instantiated by request. I'm a c# dev who mostly has worked in kubernetes environments where people thought in terms of "microservices" but someone at work introduced me to eventsourcing, cqrs, feature slicing and high cohesion services. Then it evolved into running each feature in its own process, and now he introduced me to Elixir. Seems like eventsourcing and Elixir are a match made in heaven.
@jonnmostovoy24063 жыл бұрын
Oh yeah, I think Yurii Rashkovskii had some nice event sourcing libraries, perhaps for Elixir too.