AKaditya kumarinadityakmr.hashnode.dev·Jun 3 · 5 min readMastering Offline-First Architecture in React Native: A Developer’s Guide 🚄✈️We’ve all been there: you’re deep in a subway tunnel or on an airplane, you open an app to check some information or complete a task, and you’re met with a spinning loader, an empty white screen, or w00
AKaditya kumarinadityakmr.hashnode.dev·May 8 · 7 min readCursor vs Offset Pagination in Frontend System DesignThe Pagination Decision That Quietly Impacts Performance, UX, and Scalability When developers hear the word pagination, most immediately think about databases. LIMIT 10 OFFSET 20 Problem solved… righ00
AKaditya kumarinadityakmr.hashnode.dev·May 5 · 3 min readDeep Clone in JavaScript — The Right Way (and the Wrong Way)When working with objects in JavaScript, one of the most common pitfalls developers run into is accidental mutation. You think you copied an object—but you actually copied a reference. That’s where de00
AKaditya kumarinadityakmr.hashnode.dev·May 4 · 4 min readBuilding a Scalable Global Toast System in React Native (With Clean Architecture)When building mobile apps, one pattern shows up everywhere: ephemeral feedback — success messages, errors, warnings, etc. A well-designed Toast system solves this cleanly. In this article, we’ll: Bui00
AKaditya kumarinadityakmr.hashnode.dev·Apr 28 · 7 min readBuilding a Local AI Code Reviewer with React Native, Ollama, and SupabasGitHub: github.com/adityakmr7/ai-code-reviewer I wanted a code review tool that actually runs locally — no sending my code to a third-party API, no monthly bill, no rate limits. So I built one: a cr00