Ten C++ habits that quietly remove whole classes of bugs
RAII, const by default, value semantics, span instead of pointer-plus-length: small habits with an outsized effect on how many bugs you ship.
// phookit.com
Practical posts for people who compile things: coding habits, language history, worked examples, build systems that don't fight back, and what all the AI words actually mean.
$ g++ -std=c++23 -Wall -Wextra -O2 hello.cpp -o hello
$ ./hello
Hello, phookit.com
$ cmake --preset release && cmake --build --preset release
[100%] Built target phookit
$ ▮