@scorpionxdev
15
7
1
1
API pagination patterns
When a collection is too big to return at once, you paginate. There are two main patterns and choosing wrong causes real pain at scale. Offset pagination The…
Understanding HTTP status codes
Status codes are the server telling you what happened in one number. Learn the shape of each class and you can debug most APIs without reading a manual. The …
How environment variables work
Environment variables are named values that live in a process and get inherited by the processes it spawns. They are the standard way to pass configuration a…