Tag: #error-handling
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 4 posts
Rust Enums, Pattern Matching, and Error Handling
Rust has no null and no exceptions. Instead it has the Option and Result enums, and pattern matching to take them apart safely. Enums and algebraic data types, exhaustive match, if let and let else, propagating errors wi
2026-07-02 · 12 min read #rust#error-handling#pattern-matchingCode That Fails Well — A Deep Dive into Error Handling and Resilience Design (2026)
Error handling is not decoration you bolt on after the feature is built — it is the design itself. Classify the kinds of failure, decide between exceptions and error values, validate at the edge and trust the core, put a
2026-05-14 · 25 min read #error-handling#resilience#retry#circuit-breaker#timeoutREST API Design Best Practices 2025: Naming, Versioning, Error Handling, Pagination, Security
Everything about REST API design! Resource naming, correct HTTP method usage, status codes, error response standards, pagination (Cursor vs Offset), versioning (URL vs Header), authentication (OAuth2/JWT/API Key), OpenAP
2026-03-25 · 19 min read #rest-api#api-design#http#pagination#versioningREST API Design Best Practices 2025: Essential Principles and Patterns Every Developer Must Know
Everything about REST API design in one post! Richardson Maturity Model, URL naming conventions, HTTP method semantics, status code strategy, pagination (Cursor vs Offset), error handling (RFC 9457), versioning, Rate Lim
2026-03-23 · 22 min read #rest-api#api-design#openapi#swagger#versioning