Codeminer42's Engineering Blog
Immutability

Three Functional Programming Concepts To Start Using Today And Make Your Code Better
When I first heard about Functional Programming, I thought it was about using functions only. If it was about using functions, I was fine with it; I used them. A…
Beyond State
Immutability is a fundamental pillar within the functional programming paradigm. This allows us to write robust, simple, and reliable code. An immutable object, once created, maintains an unchanging state; no…
Const Correctness (for non C++ programmers)
Image from unsplash Intro Even though nowadays I mostly work with Javascript/Typescript, I've spent a long time programming with C++ and as you've probably heard already, C++ is an absolute…