Tag: #pattern-matching
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 2 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-matchingRegular Expressions Complete Guide 2025: From Basics to Advanced Patterns and Real-World Applications
Everything about regex! Basic syntax (., , +, ?), groups and capturing, Lookahead/Lookbehind, greedy vs lazy matching, 30 practical patterns (email/URL/IP/phone), performance optimization (ReDoS prevention), and language
2026-03-23 · 15 min read #regex#regular-expression#pattern-matching#text-processing#validation