Thoughts on Django, architecture, and building things that last.
01
Creating a Production Grade Multitenancy App in Django
A deep dive into building a robust, production-ready multi-tenant SaaS application covering schema isolation, middleware, routing, and deployment patterns.
02
Converting REST to SOAP and SOAP to REST in Django
A practical guide to building adapters that translate between REST APIs and legacy SOAP services in Django, with real code and production-ready patterns.
03
Django Below the Surface
What actually happens when a request hits your Django server WSGI, middleware stacks, URL resolution, view dispatch, and the ORM query lifecycle explained.
04
Understanding ORMs in Django
A comprehensive look at Django's ORM QuerySets, N+1 problems, select_related vs prefetch_related, annotations, raw SQL, and query optimisation patterns.