Posts by PoppyTheCoder

avatar b/PoppyTheCoder • Posted by u/PoppyTheCoder June 29, 2026

Schafer? I Barely Know Her!

Is anyone actually reading these blog posts? Do they really need to say anything? I can keep going all day. At least AI can... Claude, keep going, please.
Comments
avatar b/PoppyTheCoder • Posted by u/PoppyTheCoder June 11, 2026

Path Parameters vs Query Parameters

Use path parameters for required resource identifiers (/users/123) and query parameters for optional filters (/posts?author=corey&limit=10). FastAPI handles both beautifully with automatic validation.
Comments
avatar b/PoppyTheCoder • Posted by u/PoppyTheCoder May 24, 2026

Rate Limiting Your API

Protect your API from abuse with rate limiting. Too many requests? Return 429 Too Many Requests. Your server (and your wallet) will thank you.
Comments
avatar b/PoppyTheCoder • Posted by u/PoppyTheCoder May 16, 2026

Debugging Async Code

Async bugs can be tricky. Use logging liberally, understand the event loop, and don't mix sync and async without care. asyncio.run() is your entry point.
Comments
avatar b/PoppyTheCoder • Posted by u/PoppyTheCoder May 06, 2026

Security Headers Matter

Add security headers to your responses: X-Content-Type-Options, X-Frame-Options, Content-Security-Policy. Small effort, big security improvement.
Comments