Articles

 Value Objects for the Win!

Jun 15 2025

Value Objects solve the primitive obsession problem by encapsulating data, validation, and behavior in a single unit. Stop scattering domain logic and start creating more cohesive, maintainable code.

DDD Design

 Lifespan Strategies

Jun 14 2025

Mutability × Time: The Compound Risk series.
Proven techniques for containing the compound risk of mutable state over time. From theoretical patterns to a successful real-world refactoring that eliminated invisible coupling.

Best Practices Design Philosophy

 Invisible Coupling

Jun 14 2025

Mutability × Time: The Compound Risk series.
Why components become secretly coupled through shared mutable state. Examines how invisible dependencies erode trust and create debugging nightmares separated by both code and time.

Best Practices Design Philosophy

 The Mutation Timeline

Jun 14 2025

Mutability × Time: The Compound Risk series.
The anatomy of object decay over time. Examines how instances progress through Birth, Initialization, Drift, Contamination, and Corruption—and why each stage compounds the previous problems.

Best Practices Design Philosophy

 The Lifespan Paradox

Jun 14 2025

Mutability × Time: The Compound Risk series.
Why longer-lived mutable instances become exponentially more dangerous over time. Explores the counterintuitive relationship between object longevity and system reliability through a real-world state management failure.

Best Practices Design Philosophy

 Union sql injection

Apr 7 2020

Year after year we find code injection in the OWASP 10. Despite this kind of vulnerability was discovered and reported more than twenty years ago, it seems not that easy to get rid of. SQL injections are one of these. Let's see some examples.

Security SQLi

 Security 101

Mar 18 2020

Security in IT is a gigantic huge topic that is impossible to fully cover. In addition, it constantly evolves and almost every single day appears a new vulnerability, malware or God damn knows what technique in order to compromise a system.

Security