find . -maxdepth 1 -name "*.md" -exec awk -v fname="{}" -f format_md.awk {} ;
-
blog/elixir_c_node.md
The hidden "C" in BEAM
We often read about the "BEAM magic"—concurrency, fault tolerance, and hot-code reloading. But let’s...
-
blog/elixir_c_node_send_and_receive.md
Cnode communication
In the previous post, we learned what Cnodes are and how to start one that connects back to our Erla...