Community
Writing from across Lexicon — the latest first.
19 notes across 16 categories
Naming is the cheapest documentation you will ever write and the first thing the next reader sees. A good name removes the need for a comment. Say what it is…
When something breaks and I have no idea why, I run through this list before touching any code. It turns panic into a process. 1. Reproduce it reliably A bug…
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 …
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…