Jan 12 · 5 min read · Most developers treat Controllers as simple "Model Binders" (Input → Process → Output). However, to build high-performance or complex middleware-like logic, you must understand the Context—the execution environment surrounding the controller. 1. The ...
Join discussionJan 12 · 5 min read · In high-performance web applications, Async is not about making a single request run faster; it is about Throughput. It allows the server to handle thousands of concurrent requests with a small, fixed number of threads by releasing threads back to th...
Join discussionNov 29, 2025 · 8 min read · Hello everyone, welcome back to our Kubernetes deep dive series! We've already explored etcd and the API server in our previous blogs. Now it's time to meet the real workers behind Kubernetes' magic - controllers. These are the tireless pieces of cod...
Join discussion
Nov 3, 2025 · 5 min read · Hii everyone, hope you all are good! This article is the next part of our previous article on the evolution of K8s and its history (link)! Here we are going to discuss K8s architecture in detail. I will try to explain the things that are not easily a...
Join discussionOct 17, 2025 · 3 min read · In the last lessons you created a Users module and set up a client (Postman or any REST client) to hit your local API. Now it’s time to add your first controller. This post explains: What a controller is (and why you need it) How to create UsersCon...
Join discussionSep 11, 2025 · 4 min read · GamepadTest isn't your average diagnostic tool—it's like having a personal tech whisperer for your hardware. Part of the same lineup as those handy GPU, mic, and MIDI checkers, this family of browser-based utilities gives you a front-row seat to your...
Join discussionAug 30, 2025 · 3 min read · Kubernetes architecture us made up of nodes Worker Node → Nodes run our application (CPU , Memory etc) We take a basic installation of Ubuntu and we install 2 things , one is docker and 2nd is Kubernetes component kubelet (it is not a single bin...
Join discussionJul 25, 2025 · 21 min read · Pour tirer pleinement parti de ce tutoriel, une connaissance de base de technologies suivantes est recommandée : Prérequis Spring Boot Comprendre la structure d’un projet Spring Boot Comprendre l’architecture Controller > Service > Repository Savo...
Join discussionJul 21, 2025 · 2 min read · When working on Laravel applications, organizing your logic into controllers is a crucial part of adhering to the MVC (Model-View-Controller) pattern. One of Laravel’s most powerful Artisan commands for speeding up development is: php artisan make:co...
Join discussion