July 16, 2026Python, FastAPIBuilding a FastAPI Interface for the Model RegistryWiring up five HTTP endpoints and finding that every concept from the past week showed up at once.Read more →
July 8, 2026Python, Software EngineeringWhat JavaScript Never Taught Me About asyncFinding different use cases for asynchronous programming in my model registryRead more →
July 7, 2026Python, Software EngineeringStructuring Python Projects for the Long RunTurning the model registry into a proper installable Python package and finding that writing tests changes the questions you ask about your own code.Read more →
July 6, 2026Python, Software EngineeringEnforcing Contracts with Abstract Base Classes and __slots__ in PythonExpanding the model registry with ABCs and __slots__, because code that enforces its own contracts is better than code that trusts everyone to follow them.Read more →
July 4, 2026Python, Software EngineeringControlled Attribute Access with Python PropertiesAdding getters and setters to the model registry, and finding that properties are less about restriction and more about making implicit contracts explicit.Read more →
July 3, 2026Python, Software EngineeringException Design Patterns for ML SystemsBuilding a model registry and finding that how a system communicates failure is as important as what it does when everything works.Read more →
July 2, 2026Python, Software EngineeringThe Python Contracts Nobody Tells You AboutDigging into the CPython data model and finding that a lot of production bugs aren't logic errors, but contracts the languages assumes you already know.Read more →