Tag: Software Development

PHP FPM

I was actually questioning what happens when I execute a PHP script or when an http request reaches Apache or Nginx.

Logging Matters More Now

Logging is one of the best practices in software development. A good codebase is a codebase that contains logging for important events and actions over time in an automated way.

AI: What It Changed in My Developer Journey

It’s been more than a year and a half since I started using AI in its different forms, AI agents, AI-powered editors, LLMs, and chatbots. I’ve discovered many things that reshaped how I work as a developer. In this post, I want to share some quick but on the point insights from this journey.

Passion in software development

One of the strongest “drugs” consumed by followers of motivational speeches and the myths of personal development is the idea of “follow your passion”.. even in software engineering. The passion…

How to Add UUIDs to an Existing Laravel Database

Introduction UUIDs (Universally Unique Identifiers) are 128-bit identifiers that are globally unique, making them ideal for scenarios where you want to hide sequential ID patterns from your users. This article…