Codeminer42's Engineering Blog
Intermediate

Elixir accumulators
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 list. Today we'll keep learning…
How to handle loops in Elixir
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 documentation. Although small, this description…
Mapbox, the “Google” for working with map applications
Hello boys and girls!!! In this article I'll be discussing the Mapbox, an American provider (APIs and SDKs) for custom online maps for web and mobile apps. We'll be talking…
ActiveRecord Callback Chain: A Cool (and Weird) Edge Case
Image by jcomp Well, it's been a while. After a lot of time... I'm back! ( ̄▽ ̄)/ If you haven't read my last post, give it a look here: “!” and…
The Power of the ::before and ::after CSS Pseudo-Elements
Pseudo-elements are CSS keywords that can be used to style specific parts of an element. Pseudo-elements are declared by the use of double colons (::) after a CSS selector: seletor::pseudo-element{…