Posts tagged under "elixir"

February 29, 2016elixir

Understanding Exit Signals in Erlang/Elixir

Erlang is a powerful concurrent programming language that has Processes as a first class citizen. These are isolated by default. Just like in Unix, these processes can communicate using Signals. In this post we will see how to achieve that in Elixir.

author avatar

Emil Soman

January 14, 2016elixir

Visualizing Parallel Requests in Elixir

Elixir, built on the battle-tested Erlang VM, is a language that has concurrency as its core ideas. I will introduce a monitoring utility shipped with the VM that helps us visualize HTTP requests.

author avatar

Emil Soman