1 follower
This is my space for writing about tech-related topics that I find interesting. It allows me to share the things I have learned with the world.
In Elixir, contexts are modules that group related functions together based on the domain of the application being built. They define a clear public...
In this post, I am going to take a look at Ecto, a data mapping and database query library designed to provide seamless integration between Elixir...
This is a short post on how to create an empty Phoenix application using the Phoenix framework, which is a popular web development framework in the...
In a previous post, I did a deep dive into Elixir processes (see post #24) which are the lowest-level concurrency primitives in Elixir, but it’s...
In Elixir, a process is a lightweight concurrent computation unit that runs independently of other processes. These processes are not operating system...
I am going to start this post with a bold claim: "Elixir boasts one of the most advanced concurrency models in modern programming languages!" Yup,...