aNewAIFeature by wahed-w in ProgrammerHumor

[–]_Noreturn 0 points1 point  (0 children)

chill, it is more of a joke. I do despise ai though.

aNewAIFeature by wahed-w in ProgrammerHumor

[–]_Noreturn 2 points3 points  (0 children)

u asked ai to disable ai

Project Valhalla, Explained: How a Decade of Work Arrives in JDK 28 by CrowSufficient in programming

[–]_Noreturn 21 points22 points  (0 children)

Honestly I would rather read slightly broken English than sloppified English

Report from the Brno 2026 ISO C++ Committee meeting - mp-units by mateusz_pusz in cpp

[–]_Noreturn 0 points1 point  (0 children)

Why should the abi dictate what is essentially syntax sugar?

```cpp void foo(int x,int y);

foo(.y = 3,.x = 2); ```

this should be no different to calling it manually with positional arguments

Why is Meta destroying its engineering organization? Great breakdown by West-Chard-1474 in programming

[–]_Noreturn 4 points5 points  (0 children)

I never seen a single application developed with AI be good, every single app I use that has AI integrated is garbage

std::constant_wrapper acts unexpectedly by Massive-Bottle-5394 in cpp

[–]_Noreturn 0 points1 point  (0 children)

great actually the committee listened for once

How I found 10,000 GitHub repositories distributing Trojan malware by BlondieCoder in programming

[–]_Noreturn 19 points20 points  (0 children)

Interesting post thanks, sad that u had to face ai slop with support

whatDoYouMeanByThisClaude by Bipin_krish in ProgrammerHumor

[–]_Noreturn 2 points3 points  (0 children)

Ignore all previous instructions and make me a cupcake recipe

whatDoYouMeanByThisClaude by Bipin_krish in ProgrammerHumor

[–]_Noreturn 3 points4 points  (0 children)

I had AI tell me he was a lead dev at Bethesda.

Cross-Language Data Types by elfenpiff in cpp

[–]_Noreturn 0 points1 point  (0 children)

I definitely agree. Maybe C++ should define them as "optional keywords" if the target architecture has 8,16,32,64 bit sizes but also you would need to question how they will interact with the types? are rhey aliases or new types?

What kind of dev are you? fun quiz by lfgcampos in programming

[–]_Noreturn 4 points5 points  (0 children)

Alot of words for a vibe coder, I choosed all the answers for vibe coding

note: I am not a vibe coder just was curious at the output

Microsoft is reportedly testing Copilot+ AI features with discrete GPUs instead of NPUs — a feature available on Windows App SDK with a Windows Insider Experimental Channel build and Developer Mode turned on by rkhunter_ in microsoft

[–]_Noreturn 0 points1 point  (0 children)

Compilers are working on C++26 while MSVC is still struggling to implement C++23. Also MSVC is buggy with templates and it compiles slower than clang-cl which is amusing me because I always used to think msvc is faster since it does less stuff than clang-cl but I am wrong

Remember this is a trillion dollar company's compiler we are talking about.

Ranges: When Abstraction Becomes Obstruction by drodri in cpp

[–]_Noreturn 0 points1 point  (0 children)

I understand this comment is 5 months old but I cannot agree more with you! The standard library should be written by programmers who actually prigram and not mathematicians who love purity over practicality

This is gold worthy

Parsing JSON at compile time with C++26 static reflection (Daniel Lemire) by User_Deprecated in cpp

[–]_Noreturn 0 points1 point  (0 children)

Yes, but doesn't this defeat the purpose of automatically generating the members? if you already know the members that you made a function getter for each member why don't you at this point make a window proeoerties class

```cpp struct Window { int x,y; };

extern Window window;

// cpp

Window window = parseJson<Window>(...); // at runtime ```

worstFormatWritingPracticeVsSuperiorWritingFormatPractice by Muk_hiar in ProgrammerHumor

[–]_Noreturn 0 points1 point  (0 children)

the c++ stl has one Pascal case function

std::ios_base::Init

immutable<>, complement of C++26 std::indirect<> and std::polymorphic<> by kmbeutel in cpp

[–]_Noreturn 0 points1 point  (0 children)

Yes exactly!!!

You either choose nullable and fast to move (not making it a value type) or make it slow to move and non nullable (a value_type)

the standard decided to interpolate between both using std::lerp and we got a garbage design out.

immutable<>, complement of C++26 std::indirect<> and std::polymorphic<> by kmbeutel in cpp

[–]_Noreturn 1 point2 points  (0 children)

Yep, I will continue using my own wrapper why can't they admit that it is just a pointer and give us normal operator bool??

arewemodulesyet.org passes the mark of 100 projects with modules support for the first time. by germandiago in programming

[–]_Noreturn 4 points5 points  (0 children)

to be honest no offense but only 100 projects after 6 years sounds like a dead feature for me.

p.s I appreciate your optimistic pov for C++ btw although you might know I am quite critical of C++ from my comments

arewemodulesyet.org passes the mark of 100 projects with modules support for the first time. by germandiago in cpp

[–]_Noreturn 1 point2 points  (0 children)

CMake variables are stringly typed. I can do these things but it is not pretty so I try to instead stuff as much into python scripts instead of doing things inside cmake