Senior Software Developer
Experienced Software Developer with a strong background in building scalable, high-performance web applications and transitioning monolithic architectures to microservices. Proficient in custom PHP development, seamlessly integrating front-end and back-end components, and optimizing database performance for speed and reliability.
Content
SLI vs SLO vs SLA
I often mix up these terms SLI, SLO, and SLA, so here’s a simple way to understand them.
1️⃣ SLI – Service Level Indicator
What we measure: An SLI is
2 days ago 2 min read
12 API Design Mistakes to Avoid in Production
After reviewing hundreds of APIs, here are the 12 most common design flaws I see (and how to fix them):
1. Using verbs instead of resource names. Your endpoints should repre
6 days ago 2 min read
🔐 Authentication ≠ Authorization
Just because a user is authenticated doesn't mean they should access everything in your API.
The Common Mistake that many developers make is doing this :
public function show(int $id)
1 week ago 1 min read
PHP Attributes: A Simple Guide
PHP Attributes, introduced in PHP 8.0, are a game-changer for writing cleaner, more expressive code. Let me break down what they are, why they matter, and how frameworks like Laravel use them.
1 week ago 2 min read
Facades in Laravel
TL;DR (Quick Summary)
Laravel Facades let you call non-static methods as if they were static. Behind the scenes, Facades act as a proxy to services stored
2 weeks ago 3 min read