RARangga Aprilio Utamainaprilio.hashnode.dev·Jun 6 · 5 min readSSO Is More Than "Log In Once"Single Sign-On is often summarized as "log in once and access many applications." That is correct, but incomplete. A real SSO system must also answer several security questions: Which application is 00
RARangga Aprilio Utamainaprilio.hashnode.dev·May 21 · 10 min readIndexing Your Codebase Into Live Documentation for AIMost engineering teams have two versions of their documentation. The first version is the one they wrote: architecture diagrams, onboarding guides, API notes, and a few carefully maintained README fil00
RARangga Aprilio Utamainaprilio.hashnode.dev·Mar 7 · 9 min readDatabase Connection Pooling: A Production Survival GuideWhat This Article Is — and Isn't There are plenty of tutorials that explain what connection pooling is. This isn't one of them. This is about how to tune connection pools in the real world — with traf00
RARangga Aprilio Utamainaprilio.hashnode.dev·Mar 7 · 4 min readProduction Logging in Node.js1. The Anatomy of the Problem: console.log is "Blocking" In the Node.js world, the Event Loop is the heart of your application. The golden rule is: Never block the main thread. The shocker for many de00