Tag: #django
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 6 posts
Python Ecosystem 2026 Deep-Dive — Python 3.13 · FastAPI · Django 5 · Litestar · SQLAlchemy 2 · Polars · Pydantic 2 · Ruff · uv · mypy
A 2026-05 snapshot of the entire Python ecosystem in one post. Python 3.13 free-threaded build and JIT, FastAPI / Django 5 / Litestar / Flask 3 / Sanic / Robyn, SQLAlchemy 2 with Polars / DuckDB / pandas 2, the Pydantic
2026-05-16 · 20 min read #python#fastapi#django#litestar#sqlalchemyModern Python in 2026 — Python 3.13 / 3.14 / free-threaded / uv / Ruff / Polars 1.0 / FastAPI / Litestar / Robyn deep-dive
In 2026 Python is the first time in 30 years that the language has crossed two huge inflection points at once. The first is the language itself — Python 3.13 brought the free-threaded preview and the JIT preview, and 3.1
2026-05-16 · 29 min read #python#python-3-13#python-3-14#free-threaded#jitPython Backend 2025 Complete Guide: FastAPI vs Django, Async Patterns, and AI Service Architecture
Everything about Python backend! FastAPI vs Django comparison, async/await patterns, Pydantic v2 validation, SQLAlchemy 2.0, Celery task queues, AI service architecture (LangChain+FastAPI), performance optimization, and
2026-03-23 · 18 min read #python#fastapi#django#async#uvicornConcurrent Login Prevention Implementation Guide — Layer-by-Layer Strategies with IP, Session, JWT, and Nginx Including Practical Code
A comprehensive guide covering concurrent (duplicate) login control through IP-based, session-based, JWT-based, and Nginx-level approaches — with architecture, pros/cons, practical code, and operational checklists all in
2026-03-08 · 13 min read #architecture#security#authentication#session#nginxDjango Authentication Practical Guide - Sessions, DRF + SimpleJWT, Middleware, Cookie-based Auth Complete Mastery
Complete mastery of session authentication and DRF SimpleJWT-based JWT authentication in Django, covering middleware, request.user, and cookie configuration with practical code.
2026-03-08 · 18 min read #architecture#authentication#django#jwt#cookieN+1 Problem Deep Dive — The Silent Performance Killer in ORMs
What the N+1 problem is, why it is dangerous, how to find it, and how to fix it. A complete guide with practical code covering solutions across all ORMs including Django, SQLAlchemy, JPA/Hibernate, Prisma, and ActiveReco
2026-03-02 · 10 min read #database#n-plus-1#orm#django#sqlalchemy