Engineering notes, debugging, product interfaces
The journal
-
What I Learned About JWT After Moving My Go Auth to Clerk
Moving from custom Go auth to Clerk taught me the importance of a single source of truth and how stateless JWT verification actually works.
Read essay -
Why HTTP status codes are not network errors
Fetch only rejects for network failures. HTTP responses like 401, 403, and 404 still resolve, so application code needs to inspect the response before parsing it.
Read essay -
Binary Search
In the programming world, we frequently need to search for a particular element on the list or array. one of the methods we can use for searching that element with using algorithms binary search.
Read essay