Interesting dive into how join() and generator behave in CPython.
Definitely a nice Python trick. Fairly elegant, I'll try to remember it.
Another good example of how to speed up some Python code with nice gains.
This definitely shows PyPy as a successful runtime.
Looks like a fun spreadsheet tool where you can use Python in any cell.
Looks like an interesting tool for infrastructure automation. It's all Python based which is an interesting departure from yaml files in that space. Could be a nice alternative to Ansible. I might take it out for a spin.
Another example of enforcing conventions using automated checks. This time using Python and Django tricks.
Interesting API for running subprocesses and interact with files.
As usual measure and don't just assume when you want to optimize something. This is an interesting case in Python using Numba.
Interesting library if you got to do a lots of heavy analysis work with strings.
Some reasons why Python and C behave differently on this matter. It's a source of mistakes.
Interesting to see WebGPU bindings for Python.
Looks like a nice tool for quick data exploration straight from the command line.
Interesting little web framework to run on MicroPython. Clearly could make some IoT project more accessible.
Want to better understand the JIT approach introduced in Python 3.13, this is a good little article. This JIT is a first step towards more optimizations.
Interesting trick even though I always cringe at such difference of behavior between runtime and "compile" time.
Overview of the differences in behavior between the two most popular ORMs in the Python ecosystem. This shows interesting different design options for such things.
Very interesting musing about undefined behaviors and language constraints. This is a bit Rust focused for obvious reasons but is also looking at what other languages have been doing.
This is unsurprisingly highly depend on the actual code, not only on the hardware.
Nice illustration on how pattern matching can simplify code and make it easier to write.