Tech

An AI-First Second Brain for Engineering Teams: My Talk at KLA

Reflections from KLA's Engineering Conference, attended by 800–1,000 engineers, on preserving team context, governing AI memory, and improving the next decision.

Bringing My Blog Back with Codex Computer Use

Using Codex Computer Use to deploy my Hugo blog from GitHub to Vercel, reconnect a GoDaddy domain, and untangle an old AWS DNS setup.

PKCE

Prerequisite: OAuth2.0 PKCE is pronounced as ‘pixie’. PKCE - Proof Key for Code Exchange => Credits Concepts: What is Confidential Client? Any backend application written in languages like .Net, Java, NodeJS can be considered as Confidential Client.

Designated Authentication - OAuth2.0

OAuth2.0 and OpenID - is one of the best videos (62 mins) on this topic - Highly recommended. This blog is just a quick summary (4 mins read) of it.

WASM Cloud

What is WASM Cloud trying to solve? Lets ask - what a typical “Development Iteration” look like? Start of with your Napkin Drawings - conceptual vision of what is it you want to build Initial Prototype, prove that it works Then, Figure out how to scale The challenge is between #2 and #3 there is more often a complete rewrite.

Rubber Duck Debugging

I have been in a similar situation multiple times - where in I was stuck on a problem. To get a solution, I would want to reach out for help. So, I would start to write it down - as it could post it in StackOverflow or send it as an email to my friend/colleague.

Software Enthusiast - Getting Started

I have been asked this question multiple times. I would like to be a software enthusiast and where do I get started. Thanks to my Friend to help put this together

Reverse ETL

While listening to Podcast stumbled upon this term of Reverse-ETL. First lets align on a few basic terminologies: What is a Data Warehouse (DW): Data Warehouse centralizes and consolidates data from multiple sources like application log files and transaction applications.

Access Control - Casbin

I was trying to read about RBAB (Role-Based Access Control) and ABAC(Attribute-Based Access Control); after some reading - I realized, as a software engineer - it’s way more easier when you get to read code - So, I started to search for open source project which implements access control infrastructure, and stumbled upon Casbin.

Bitmap Indexed Storage

Always been facinated by the ways - data structure’s can enable better storage and faster queries. BitMapped Indexed Storage - is useful while using Columnar Databases - where per column data is stored together.