Recent articles

Preview post image

Engineering Management I

  • avatar
  • 6 mins read

Engineering management is one of those roles that looks simple on paper but feels very different once you're in it. At its core, it's about enabling others rather than measuring yourself only by your own output. You're not just writing code or solving problems directly anymore. Instead, you're creating the right environment for your team to do their best work, keeping them aligned, and helping them grow.

Read more
Preview post image

Implementing Commands and Queries in Laravel 12

  • avatar
  • 8 mins read

CQRS, short for Command Query Responsibility Segregation, is a simple yet powerful way to split the responsibility for writing and reading data in an application. Instead of having a single service or model method that both changes and retrieves data, you give commands the job of making changes and queries the job of fetching information. This split can make large projects much easier to follow, especially as business rules grow and read and write requirements start to differ.

Read more
Preview post image

Configuring multiple websites on a single Nginx server

  • avatar
  • 6 mins read

Nginx is a powerful and lightweight web server that's commonly used to serve websites and static content. If you're running several websites on a single machine, configuring Nginx to manage them properly is efficient and straightforward. This article walks you through installing Nginx, setting up multiple sites, configuring firewall access, and organizing your folders and logs in a clean and practical way.

Read more