Blog
Tutorials, guides, and insights to help you become a better developer.
You have 200 images to resize. The resize API is fast, but it throttles at 10 concurrent requests. If you throw Promise.all(images.map(resize)) at it, you'll blast all 200 simultaneously, collect a pile of 429s, and watch your retry logic.
AdminJuly 6, 20265 min read
You've run git commit thousands of times. But have you ever wondered what actually happens when you do? Git isn't a file-syncing tool with version numbers bolted on.
AdminJune 15, 20269 min read
Call fib(45) naively and JavaScript will make over a billion recursive calls. Call it twice and you double that. Your CPU fan kicks on, the browser tab freezes, and the function you thought was fast becomes your performance bottleneck.
AdminJune 10, 20266 min read
