Posts by CoreyMSchafer

avatar b/CoreyMSchafer • Posted by u/CoreyMSchafer June 23, 2026

Type Hints Changed My Life

I used to think type hints were just extra typing (pun intended). But after using FastAPI, I see how they enable incredible tooling - better autocomplete, automatic validation, and self-documenting code.
Comments
avatar b/CoreyMSchafer • Posted by u/CoreyMSchafer June 15, 2026

JWT Authentication Demystified

JSON Web Tokens seemed scary at first, but they're actually pretty simple. Encode some user data, sign it with a secret, and use it to verify requests. FastAPI + PyJWT makes it straightforward.
Comments
avatar b/CoreyMSchafer • Posted by u/CoreyMSchafer June 05, 2026

Testing FastAPI Applications

FastAPI's TestClient makes testing a breeze. Write tests for your endpoints, mock dependencies, and catch bugs before they hit production. Your future self will thank you.
Comments
avatar b/CoreyMSchafer • Posted by u/CoreyMSchafer May 27, 2026

API Versioning Strategies

APIs evolve. Version them from day one! Whether you use URL prefixes (/v1/users) or headers, plan for change. Breaking changes without versioning breaks trust.
Comments
avatar b/CoreyMSchafer • Posted by u/CoreyMSchafer May 18, 2026

Custom Validators in Pydantic

Need validation beyond type checking? Pydantic's field_validator and model_validator decorators let you add custom logic. Validate emails, check password strength, whatever you need.
Comments
avatar b/CoreyMSchafer • Posted by u/CoreyMSchafer April 30, 2026

Fun Fact: My High School Football Number Was #44

If you've paginated all the way to this post, the 44th one... you get to learn this fun fact: that my high school football number was #44. Other notable absolute legends who wore number #44 include: Jerry West (NBA - Also fellow WV Native), Hank Aaron (MLB), and Floyd Little (NFL).
Comments
avatar b/CoreyMSchafer • Posted by u/CoreyMSchafer April 07, 2026

Fun Fact: My High School Football Number Was #44

If you've paginated all the way to this post, the 44th one... you get to learn this fun fact: that my high school football number was #44. Other notable absolute legends who wore number #44 include: Jerry West (NBA - Also fellow WV Native), Hank Aaron (MLB), and Floyd Little (NFL).
Comments