» Tag
memory-management
14 postsA Fake Python Memory Leak: ru_maxrss vs VmRSS Confusion
A RAG pipeline seemed to leak memory as RSS kept climbing, but the real bug was measuring ru_maxrss (a peak value) instead of live VmRSS. Fix, baseline check, and batching included.
Starting the Shooting Gallery Project for ZX Spectrum
Bumbershoot Software is starting the port of its shooting gallery program to ZX Spectrum. Learn about the project details and memory management.
Two Memory Management Optimizations in Linux 7.3
Linux 7.3 memory management updates bring performance enhancements. Key changes in zs_free() and rmap_walk_ksm() functions are noteworthy.
CommitBrief — AI code reviews, right in your terminal
A provider-agnostic, local-first CLI that reviews your staged changes, a historic range, or a whole GitHub pull request. Zero telemetry, no server. Free and open source.
commitbrief.comHow to Access an Implicitly-Created Array within std::byte[]?
Insights on accessing implicitly-created arrays in C++ using std::byte[] and managing lifetimes.