Blog
Dhemy’s blog is packed with articles on software development, productivity, data structures and algorithms, plus a sprinkle of personal musings!
The pipeline ate my code
I’m your teammate developer, and I’m here to tell you how my CI/CD pipelines aren’t like other pipelines. They are...
Read article →
Effective Node.js Modules - Part 2: ESM dynamic imports
One of the main differences between CJS and ESM modules is the way they handle dynamic imports. In CJS you...
Read article →
Effective Node.js Modules - Part 1: Basic Syntax
Do you know what is the difference between the following two code snippets?
Read article →
From Code to German: My First Steps Towards Learning a New Language
For years, I have been dedicated to writing code every day and contributing to various projects. My GitHub account showcases...
Read article →
Hidden Gems in Composer Every PHP Developer Should Know
Composer is the most popular PHP dependency manager. I’ve heard about other package managers like PEAR & Phing, but I’ve...
Read article →
Back to dark theme
I always liked dark themes, but I came across this blog post by Brent, and I thought I’d give it...
Read article →
Approximating square roots with Newton's method
Newton’s method is a way to approximate the roots of an equation. The idea is to start with an initial...
Read article →