Writing on software design and some random stuff.

All of my long-form thoughts on programming, arts, and more, ordered BY creation date DESC. I need more time to populate the list sorry

Addultiplication: A Step-by-Step Guide to Implement Multiplication Using Only the Addition Operator

Multiplication is a fundamental arithmetic operation, but what if we could achieve it using only addition? In this step-by-step guide, we explore the concept of 'Addultiplication'—a method that replaces multiplication with repeated addition. From basic principles to optimized algorithms, this article breaks down how addition can be leveraged to perform multiplication efficiently, making it a valuable technique for programming, mathematics, and computational thinking.

How to install Symfony in Linux from scratch

Symfony is a powerful PHP framework that simplifies the development of modern and scalable web applications. By using Symfony on Linux, you can benefit from a robust and highly configurable development environment. This guide will show you how to install the latest version of Symfony on a Linux system, configuring Nginx to serve the application via HTTPS using self-signed certificates.

Event Driven Architecture (EDA)

Learn about event-driven architecture (EDA), a scalable and responsive software design pattern. Discover how EDA enhances system performance, flexibility, and integration for modern applications.

Why you should not comment your code

The first thing to understand when you write code is the code itself, sometimes we need to use comments for understand what the code is doing, but what about the code can explain itself? The following article attempt to explain how a code without comments should be written