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.
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.
The more we follow incredibly talented engineers, especially those discussing advanced topics like software architecture across different platforms, the more we start to hesitate. Not because we’re not learning, but…
My personal notes based on my understanding of the book. It’s like a documentation for myself first to back into it for refreshing my mind when needed.
First of all, this post is a mix of documentation for my future self and a small celebration of my first accepted WordPress plugin. This one: Mohcin Taxonomy SEO for WooCommerce
I was watching this video on youtube: https://youtu.be/SaHHgzoXceU?si=VgQYFLTDxG0VFKm7 So I wanted to comment, and this comment switched to a blog post, so I’m sharing it here… We can’t ignore something…
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.
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…
Technical Gaps are not a shame, they are a responsibility
In software development, having technical gaps is common. And it’s not something to be ashamed of.
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…
In my Laravel hobby project, I had a field called date_covered defined as a date type, with now() as the default value. However, when I needed to manipulate this field,…