Articles
Filter:
All (4)
Architecture (2)
AsyncIO (1)
Bytecode (1)
Clean Code (1)
Compiler (1)
Concurrency (1)
Design Patterns (1)
Internals (2)
Memory (1)
Performance (1)
Python (4)
Showing 4 articles
Aug 10, 20268 min read
Clean Architecture & Dependency Injection in Large-Scale Python Systems
Structuring domain models, repositories, and service layers in enterprise Python applications without framework lock-in.
Python
Architecture
Design Patterns
Clean Code
Aug 8, 20265 min read
Featured
Disassembling Python Bytecode: How the Virtual Machine Executes Code
Exploring CPython bytecode compilation, stack evaluation, and using the `dis` module to analyze micro-benchmarks.
Python
Compiler
Bytecode
Internals
Aug 5, 20266 min read
Python Memory Optimization & Cyclic Garbage Collection
How CPython allocates memory with PyMalloc, manages reference counting, and detects circular reference leaks.
Python
Performance
Memory
Internals
Aug 1, 20267 min read
Featured
Deep Dive into Python asyncio & Event Loop Execution
Understanding how Python's asyncio schedules coroutines, manages task queues, and handles non-blocking I/O under the hood.
Python
AsyncIO
Concurrency
Architecture