A data-driven app without the database

My January 2024 project was a new open source coding cookbook. Instead of primary keys and foreign key constraints, I’m using Python’s typing.Literal and Pydantic models. This makes sense to try because the final product is a statically generate website (built with Hugo). My Python code does all the content preparation. So, for example: Etc. I can…More

“How to Do Code Documentation?”

I saw this question: I made a simple networked game in Java for a university assignment, and I need to document it. I was wondering how real-life developers do this. What is the common and best structure for documentation? My answer:More