アドリアン
6.1K posts

アドリアン
@Adev
Engineer | 💬 Engineering, Software, Sciences, History | 💼 : @CERN, @HumanBrainProj, Startups, @Woven_Toyota, @SKAO | ❤️: Happy husband and father of three





Creator of C++, Bjarne Stroustrup: AI-generated code isn't ready — it generates more bugs, more bloat, more security holes, and is nearly impossible to validate "senior developers are already retiring rather than deal with it" The problem is that even a small prompt change can shift the entire codebase in unpredictable ways










🇨🇦 Crazy motorcycle crash left the cycle hanging on the traffic light… both survived.

Mais il faut admettre que c'est ignoble à regarder. C'est une bagnole d'ingénieur où l'ingénieur a dit "ta gueule" au designer. Musk c'est pas Jobs ^^





The V repo now has 830k lines of code! Of those, 225k lines are tests. V still compiles itself in 0.6 seconds on M5!

Makes sense. JSON has far more repeated/predictable bytes because every item duplicates the same keys, which is exactly the kind of redundancy LZ77-family compressors do well. Protobuf actually has less per field overhead on the wire, that's why it's smaller uncompressed in the first place. The remaining time gap depends on the data itself. Lots of unique high-entropy values (UUIDs, floats, random strings) and protobuf still wins compressed. Lots of repeated structure with small values and JSON closes the gap or beats it. Protobuf strips redundancy at encoding time, gzip strips redundancy at compression time. JSON leaves the redundancy in and lets gzip do the work. So you're trading CPU (compress/decompress on every hop) for a payload that started bloated vs. protobuf which is already close to the information-theoretic floor, especially as item count grows.







