Linkdump: Interesting Things I Looked At (Very) Recently (2025-08-12)
Most of these are from today, but some are from yesterday, and a few are from last week. The descriptions will be short, since I am short on time.
Understanding the Python Memory Model
One of my quests during the research project I did last summer was to find a way to simulate pointers in Python, or at the very least, get some sort of named reference-like behaviour from the language. Unfortunately, I quickly learned that this is quasi-impossible, because Python is a language that aims to abstract as many implementation details away from the user as possible, and gives programmers very limited ways in which to interact with the language.