2

Shane first post

C++ Memory Safety Guide: Don’t write code that violates memory safety. "A language does not support a technique if it takes exceptional effort or skill to write such programs; it merely enables the technique to be used." - Creator of C++ 25 years ago

Login to leave a comment.

Comments (2)

2

codalata [A] on 2026-05-23 22:58:45

Okkkkk To be fair, C++ did make it easier to manage memory compared to C without paying GC cost. It’s just that programming research has progressed a lot beyond in the 90’s. The frustrating thing with the C++ committee now is that they refuse to pick a lane. They refuse to break ABI to make important performance optimizations. They refuse to break API to compete with Rust more directly. So it’s a slow and unsafe language, fine, maybe it’s just for legacy development? Except they pile on a hundred new features every release, except for a package manager (which is table stakes for new project). It’s like they can’t decide if they are a legacy project focused on stability, versus an active language that wants to compete head-to-head on performance, safety, and ergonomics. So they do the classic C++ committee thing where they split the difference a hundred ways and end up with a nonsensical blob.
0

codalata [A] on 2026-06-03 22:46:55

Test comment