this post was submitted on 10 Oct 2025
562 points (98.1% liked)

Programmer Humor

26913 readers
1335 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 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] dejected_warp_core@lemmy.world 16 points 1 week ago (2 children)

I'm all in favor of zuruck replacing return, because that just sounds cooler. Plus z doesn't get enough use in my programs these days.

[–] d_k_bo@feddit.org 5 points 1 week ago (1 children)

*zurück

Do C compilers support non-ascii characters?

[–] Appoxo@lemmy.dbzer0.com 1 points 1 week ago (2 children)

Do as most non-DACH countries do: Just use the regular letter instead of the Umlaut.

Example:
Über-Mensch -> Uber-Mensch

[–] luciferofastora@feddit.org 2 points 6 days ago (1 children)

If you replace the ü in "Das Wetter ist schwül" ("the weather is humid") with a u though, you get "the weather is gay".

[–] Appoxo@lemmy.dbzer0.com 1 points 6 days ago

Never said it's a good substitute 🤷

[–] d_k_bo@feddit.org 7 points 1 week ago (2 children)

Just use the regular letter instead of the Umlaut

But that's just wrong. ü has a different meaning and pronunciation than u.

If umlauts aren't available, the correct way to write umlauts is with an additional e: zurueck.

Über-Mensch -> Uber-Mensch

Please be aware that this term can be problematic, since it can be seen as a foundation for fascist ideas. https://en.wikipedia.org/wiki/%C3%9Cbermensch#Use_by_the_Nazis

[–] vaionko@sopuli.xyz 1 points 6 days ago (1 children)

This makes it horrible to read. An example that comes to mind is a Finnish athlete with the last name Määttä. If it was Maatta, it would be pronounced differently but still understandable if you knew the person. But it was translated into Maeaettae which is just horrible

[–] Haaveilija@lemmy.world 1 points 6 days ago

Also "Maatta" is a different word in Finnish with its own meaning: "without a country" or "without a land", while "Määttä" does not have this meaning. I agree that the aeae makes it horrible to read, though. Another athlete whose name has some ä's that make the it difficult to read when turned into ae's is Mäkäräinen which then becomes Maekaeraeinen :D

[–] Appoxo@lemmy.dbzer0.com 0 points 1 week ago

Didnt have a better and fitting example

[–] MrScottyTay@sh.itjust.works 2 points 1 week ago

I often use z as a temp variable when i need something to compare to when creating new code but don't want a separate window to the side or to experiment with something but don't yet know what the result can or will be. I use z purely just because i know z is very very unlikely to have been used elsewhere, and if for some reason it has, then i just name it 'zz'.

This is actually temporary by the way. It does not stay in my code. Once I'm done with it, i delete it.