Codeminer42's Engineering Blog
Beginner

CodeTips#3: How Specificity works in CSS
When working on web apps, at some point, you will need to overwrite styles from components to which you have no access to the CSS source code, or maybe you…
CodeTips#2: Clean code in JavaScript
INTRODUCTION INTRODUCTION I believe the comic strip above sums it well: You write clean code mainly to understand yourself in the future. Not only that, you write clean code as…
A beginner’s personal journey into automated tests
Like many engineers, I landed into coding kind of by accident. I was programming alone and unsupervised for a decade and my work was mostly guided by what I felt…
CodeTips#1: Exploring Hashes in Ruby
Hello, fellow readers! Before we can jump right in, we have an announcement! There is a new series of posts here in the blog: CodeTips! We will be approaching technical…
Elixir/Erlang: Tail Call Optimization is not enough
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). If you have been around…