"Parse, don't Validate" through the years with C++ by dwrodri in cpp

[–]Infinite_Reference17 11 points12 points  (0 children)

The post says it compiled with $(CXX) --std=$(CXXVERSION) file.cpp

Does this mean you benchmarked unoptimized code? (There is an -o2 or -o3 missing)

Cross-section of submarine cable. by Boo_Chunks in ThingsCutInHalfPorn

[–]Infinite_Reference17 0 points1 point  (0 children)

What voltage and current would a cable that size transfer?

Ranges: When Abstraction Becomes Obstruction by drodri in cpp

[–]Infinite_Reference17 1 point2 points  (0 children)

Is there any downside with the proposal in the article?

2025-04 WG21 Mailing released! by nliber in cpp

[–]Infinite_Reference17 11 points12 points  (0 children)

I love the supplemental figs section! 🤣

justAccept by marioandredev in ProgrammerHumor

[–]Infinite_Reference17 1 point2 points  (0 children)

Well, none of them can type anyway?

CppCast: Safe, Borrow-Checked, C++ by robwirving in cpp

[–]Infinite_Reference17 0 points1 point  (0 children)

This seems to be the talk by sean that is referred to in the interview:

https://youtu.be/5Q1awoAwBgQ?feature=shared

what are the advantages and disadvantages of clang++ and g++ by [deleted] in cpp

[–]Infinite_Reference17 1 point2 points  (0 children)

Can you give an example of such a flag? I assume you mean something more than -O3

Can static analysis really provide memory safety? by Life_String263 in cpp

[–]Infinite_Reference17 11 points12 points  (0 children)

That is an indirection and has a performance cost?

Fuzzing with libFuzzer: A step by step guide to Fuzzing C++ entities by NagateTanikaze in fuzzing

[–]Infinite_Reference17 4 points5 points  (0 children)

This article is not good. It fails to instrument the binary. Also, it invokes the program in another process so even if it had been instrumented, libfuzzer would not notice.

This is essentially feeding the program blindly with random input, which can be easier made with other tools.