Codeminer42 Dev Weekly #35
HELLO EVERYONE!!! It’s November 1th 2024 and you are reading the 35th edition of the Codeminer42’s tech news report. Let’s check out what the tech …
Codeminer42’s Engineering Blog
HELLO EVERYONE!!! It’s November 1th 2024 and you are reading the 35th edition of the Codeminer42’s tech news report. Let’s check out what the tech …
HELLO EVERYONE!!! It’s the 23rd of August of 2024 and you are reading the 25th edition of the Codeminer42’s tech news report. Let’s check out …
HELLO EVERYONE!!! It’s June 14, 2024, and you are reading the 15th Codeminer42’s tech news report. Let’s check out what the tech world showed us …
HELLO EVERYONE!!! It’s May 24, 2024, and you are reading the 12th Codeminer42’s tech news report. Let’s check out what the tech world showed us …
On March 10th, the second edition of the "Rinha de Backend" ("Backend Fight"), a very fun hackathon, finished. I participated in this edition, and I …
In this article, we’ll be talking about a widespread concept of Functional Programming called Tail Call Recursion (or Tail Call Optimization or just Tail Call). …
In our last post on Elixir we learned a bit about loops. In that post, we implemented a simple algorithm to sum numbers in a …
Elixir is a dynamic, functional laguage for building scalable and maintainable applications. This is a short description of Elixir that we can get from it’s …
Create a new mix project if you want to follow along: $ mix new calculator $ cd calculator Suppose you have a Calculator module and …
One of the cool things about Elixir is the pattern matching, in this post we will be able to understand about Pattern Matching and how …