Codeminer42's Engineering Blog

Intermediate

  • Const Correctness (for non C++ programmers)

    · 12 min read · by Henrique Yuji

    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…

  • Dependency Injection With Cyclic Dependencies

    · 7 min read · by Henrique Yuji

    Photo by Matt Seymour on Unsplash Intro Dependency injection is a very powerful technique that allows us to write code that is both more testable and decoupled. When using DI…

  • Empowering your systems with State Machines and XState

    · 7 min read · by Jeferson Brito

    We know software can get complex over time, specially when it comes to state management. More often than not, we find ourselves with tricky user interface logic where things on…

  • Exploring RamdaJs functions

    · 10 min read · by Felipe Nolleto

    Hello guys! These days I was remembering how one year ago, maybe more, I decided to look over each function from RamdaJs and try to understand how to use it.…

  • Elixir accumulators

    · 6 min read · by Edy Silva

    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…