Backyard
Backyard of my mind, where pieces inter-connected.
#python
Blogs
5 WTF Moments in Python
by a Developer
May 2025
by a Developer
python
This isn't another Python beginner guide or critique of Python's performance issues. Instead, the blog walks through five surprising behaviors in Python that have bitten me in the past, knowing these might save you hours of debugging.
Code like an Onion: The Decorator Pattern
by a Developer
Jul 2025
by a Developer
design-pattern
python
An introduction to the Decorator Design Pattern, which helps manage cross-cutting concerns by wrapping your core functionality like an onion🧅.
Conquering Slow Tests: 4 Solutions to Bring Concurrency into Pytest
by a Developer
Feb 2025
by a Developer
async
python
testing
System and integration tests sometimes require substantial execution time. The blog shares my journey of exploring multiple approaches to address the efficiency challenges, culminating in developing a custom pytest plugin.