this post was submitted on 23 Jun 2026
110 points (96.6% liked)

Programmer Humor

31948 readers
357 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 3 years ago
MODERATORS
 
top 19 comments
sorted by: hot top controversial new old
[–] meleethecat@lemmy.world 3 points 2 hours ago

/c/unexpectedmetallica

[–] BeigeAgenda@lemmy.ca 33 points 5 hours ago (1 children)

D is more than 20 years old (from 2001), so it's due for a renaissance, Python was also in its 20s before it became fashionable.

[–] ZILtoid1991@lemmy.world 9 points 5 hours ago

It kind of bounces back after the catastrophe that D1 vs D2 and Phobos vs Tango caused, but might be broken by AI bros trying to chase the vibe coding trend.

[–] dfyx@lemmy.helios42.de 15 points 5 hours ago (1 children)

Many years ago I read the D book and really liked many aspects of the language. What kept me from using it was the ecosystem. They had three compilers and two different standard libraries, none of which were fully compatible with each other which led to a whole bunch of weird problems. These days it’s probably better. Maybe I should give it another chance.

[–] ZILtoid1991@lemmy.world 7 points 5 hours ago

If nothing else, there's also OpenD, which might be better for you based on your requirements.

[–] themoken@startrek.website 21 points 6 hours ago (4 children)

Was there drama with D? I'm out of the loop...

[–] ZILtoid1991@lemmy.world 13 points 5 hours ago (2 children)

Multiple in fact. D1 vs D2, Tango vs Phobos, mutable by default vs const by default (was minor, but allegedly lead to the existence of Rust), Adam D Ruppe leaving and forking the compiler (OpenD - might be useful to you depending on things), "let nazis code" (though DLF have not only backtracked on it but also set up some basic safety measures), etc. Can still recommend the language if you want a more C-style language and not OCaml with curly brackets, or if borrow checker is a dealbreaker for you in Rust.

[–] FalschgeldFurkan@lemmy.world 4 points 1 hour ago

"let nazis code"

What do you mean by that?

(Also, if possible, please do more of this meme with other languages)

[–] nebeker@programming.dev 4 points 2 hours ago

We really all need to get along and accept each others’ opinions. Even if some people are completely wrong and think mutable by default it OK. Hehe.

[–] flamingos@feddit.uk 6 points 5 hours ago

The Wikipedia article for D links to this blog post which seems pretty damning.

[–] marcos@lemmy.world 1 points 5 hours ago

There have been something where some developers left, but I don't remember it well enough to search for.

[–] Zephyr@sh.itjust.works 1 points 5 hours ago (1 children)

I think it's just a joke about slang aka D for Dick.

[–] themoken@startrek.website 8 points 5 hours ago

This is definitely about the D language, I just haven't heard anything about in a long time (since Rust ate its lunch) and nothing about it using AI or long time devs leaving.

[–] Feyd@programming.dev 9 points 5 hours ago (1 children)

Did they ever sort out the GC vs nonGC standard library kerfuffle? I was interested in dlang quite awhile ago but the ecosystem seemed fractured (and not big enough for that to be ok)

[–] ZILtoid1991@lemmy.world 6 points 5 hours ago

Yes, they're letting the community to deal with the noGC part, while Phobos will be strictly GC in the future.

[–] OwOarchist@pawb.social 1 points 3 hours ago* (last edited 3 hours ago) (2 children)

It really does mystify me what anyone thinks they're accomplishing by creating a brand new programming language these days. Other than a purely academic exercise, of course.

Whatever features you want your language to have, there's probably already a language out there that's damn close to it. And if your ideal language is just like some existing language except for a few niggling details ... then there's no need to start from scratch -- just make a modified version of that language with a few little changes to make it act the way you want.

Programming languages are just about a solved problem now, IMO. I can't imagine any scenario where creating a new language from scratch would be better than tweaking an existing language ... or just using an existing language as-is.

[–] Kaligalis@lemmy.world 4 points 1 hour ago

Rust is pretty fresh and really innovated a lot with its actual safe-by-default approach in a non-managed language actually able to replace C and C++.
Most new languages aren't a Rust, but just a Python (yet another low-performance language assuming you don't actually need strong typing to realize later that actually, you do). But a Python is definitely easier to get started with than a Rust (or the footgun languages, it is able to replace). So there is definitely a use case for that too.
Go is a good case of a young system application language designed for simplicity.
And everyone creates a domain specific language once in a while. Those can make specific tasks a lot easier.

Programming languages don't really look like they are a solved problem. It seems like everything gravitates to Hindley Milner over time. But mainstream languages finally adopting null-checking at compile time by default and language features for parallel execution reaching the mainstream are recent enough that I think, there might still be a long way to go.
And obviously, you want AI to code in a language which is as much deterministically compile-time-checked as possible because of the hallucination problem (which btw, is also present in humans; the technical term there is brain fart). I expect that to be something which requires writing actual mathematical proofs like one does in Coq solely because AI doesn't try to kill you if you insist on it writing mathematical proofs for everything.
The scaling limit already is the humans who have to do the code review. So any language which makes more bugs more obvious before the code reaches the review stage is extremely valuable even if writing code in it is a real PITA for humans (as long as they can read it, it's fine).

[–] zarkanian@sh.itjust.works 5 points 2 hours ago

All you've demonstrated with this comment is your lack of imagination.

[–] Zephyr@sh.itjust.works 4 points 5 hours ago