Is Your API Slow? The "Dirty Loop" Problem You Didn't Know You Had
As Laravel developers, we love the "magic" of the framework. Sometimes, that magic makes us lazy. We write return Post::all(); in a controller, see th...
Sharing my journey, experiences, and insights about software development, best practices, and emerging technologies.
As Laravel developers, we love the "magic" of the framework. Sometimes, that magic makes us lazy. We write return Post::all(); in a controller, see th...
The Nightmare of the 1,500-Line ControllerLet's discuss a problem. Imagine it's Monday morning. Your boss assigns you a new task: "Hey, can you just a...
🐘 What Happens When a PHP File is Called? (Under the Hood of PHP Execution)Ever wondered what really happens when your browser requests a PHP file li...
Senior Software Engineer at Shabujglobal Education
I am Kazi Mohammad Nokib, a Senior Software Engineer and Team Lead at Shabujglobal, a prominent educational consultancy. With over 5 years of experience in the industry, I specialize in Laravel, Vue.js, and DevOps. In my current role, I lead the management and development of our core CRM and website, a platform that operates simultaneously across 9 countries. I am passionate about driving digitalization; our CRM is a comprehensive solution that handles the entire student process, advanced reporting, and HRM functionalities, effectively digitizing the organization's operations. My background includes successfully handling multiple projects for a diverse range of clients across the world, and I am focused on building scalable, efficient solutions that solve real-world challenges.
// Hello, I'm Nokib! class Developer { constructor() { this.name = "Kazi Mohammad Nokib"; this.role = "Software Engineer"; this.languages = ["PHP", "JavaScript", "Python"]; this.frameworks = ["Laravel", "Vue.js", "Tailwind CSS"]; } code() { return "Building elegant solutions to complex problems"; } share() { return "Teaching and writing about development"; } } const nokib = new Developer();