AAAnanthakrishnan Ainblog.akananthu.com·3h ago · 7 min readHow I Work on Four Git Branches at the Same TimeIf you've been using Git for a while, chances are you've gone through this. You're deep into implementing a feature. Everything is going well. You have a few uncommitted changes, your development se00
AAAnanthakrishnan Ainblog.akananthu.com·Apr 4 · 5 min readView Transitions — Rethinking How UI Changes Are AnimatedWe’ve had animations on the web for a long time. CSS transitionsCSS animationsJS-based animation libraries They all try to solve the same problem: Move UI from one state → to another state. But they00
AAAnanthakrishnan Ainblog.akananthu.com·Mar 15 · 9 min readDocker Deep Dive — What Containers Actually AreIn the previous article, we discussed two important ideas: ContainerizationOrchestration Containerization packages applications. Orchestration runs those containers at scale. Tools like Docker and Kub10
AAAnanthakrishnan Ainblog.akananthu.com·Mar 15 · 6 min readContainerization vs OrchestrationWhy Both Exist? Modern applications rarely run as a single program anymore. A typical backend system today might look like this: API Service Authentication Service Payment Service Notification Service00
AAAnanthakrishnan Ainblog.akananthu.com·Mar 4 · 7 min readSSR vs SSG vs ISR — Part 3: The Hybrid RealityIf you read Part 1 and Part 2 carefully, you already know the “pure” forms: Server Side Rendering (SSR) does work during every request. Static Site Generation (SSG) does work once at build time. In00