this post was submitted on 14 Jun 2026
716 points (99.9% liked)

Programmer Humor

31942 readers
32 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 50 comments
sorted by: hot top controversial new old
[–] SubArcticTundra@lemmy.ml 97 points 1 week ago (17 children)

It's sad when you realize that Welsh is actually a more niche language than the C standard library

load more comments (17 replies)
[–] davetortoise@reddthat.com 57 points 1 week ago* (last edited 1 week ago) (1 children)

rhowch

When scooby burns his tail

[–] I_am_10_squirrels@beehaw.org 2 points 1 week ago

Shaggy, his arms open wide

[–] Diddlydee@feddit.uk 55 points 1 week ago (1 children)

I'm just scrolling by and saw the Welsh. I know none of the others, so by a process of elimination, I know them all.

[–] VeganBtw@piefed.social 42 points 1 week ago

Assuming the question implies an inclusive OR, I know all the answers too : True, True, True, True, True, True, True, True.

[–] pelya@lemmy.world 52 points 1 week ago* (last edited 1 week ago) (1 children)
[–] Venator@lemmy.nz 17 points 1 week ago (1 children)

according to Google translate:

rhowch: give

cwtch: hug

mwyn: ore

wmffre: Humphrey

[–] Manticore@lemmy.nz 13 points 1 week ago

The trick is that 'w' represents an actual double-U vowel sound in Welsh. Not remotely surprised that's what was picked up

[–] crapwittyname@feddit.uk 27 points 1 week ago (3 children)

Cwtch is one of my favourite words. Pronounced like "clutch" without the L. It means hug.
"Give us a cwtch ye daft old sod" ❤️

[–] gandalf_der_12te@feddit.org 5 points 1 week ago

oh wow that's nice. i'll see if i can remember it.

[–] heartSagan5@lemmy.zip 3 points 1 week ago

Sounds like the origin of “clutch of eggs.”

[–] MrScottyTay@sh.itjust.works 3 points 1 week ago (1 children)

Wild assumption for me to make, but is it perhaps a potential origin for "coochie coo"?

load more comments (1 replies)
[–] vrek@programming.dev 25 points 1 week ago (2 children)

I'm pretty sure that is neither and was a text I sent last week when drunk...

[–] SubArcticTundra@lemmy.ml 13 points 1 week ago (1 children)

Its cool that alcohol brings out your superpower of on-the-fly encryption

[–] vrek@programming.dev 10 points 1 week ago

Cool... Crippling addiction... You say tomato I say... cries self to sleep

load more comments (1 replies)
[–] Codpiece@feddit.uk 22 points 1 week ago (2 children)

Ah yes. A language forced onto unwilling participants by people who still think it should relevant in the modern age. And the other one is a Celtic language.

[–] Artemis_Mystique@lemmy.ml 22 points 1 week ago

C will be relevant till the heat death of the universe. if humanity ever dooms itself back to the stone age, all it would require is some bloke to invent a rudimentary binary computer and some nerd to write a basic C compiler for it, humanity will doom itself again in less than 50 years.

load more comments (1 replies)
[–] umbraroze@slrpnk.net 20 points 1 week ago

Long ago in the Windows 9x era there was also "Is this a Windows DLL file, or a transcript of a digestion noise" and the stuff was like "MSGRBL32.DLL"

[–] mushroommunk@lemmy.today 19 points 1 week ago

Dydw i ddim yn deall...

[–] Danarchy@lemmy.nz 16 points 1 week ago

When the grass gets long at my welsh cottage I’m mwyn that wmffre

[–] Deconceptualist@leminal.space 12 points 1 week ago

My partner has been learning a tiny bit of Welsh on Duolingo so this got a giggle out of her 🙂

[–] airbreather@lemmy.world 10 points 1 week ago* (last edited 1 week ago) (1 children)

Was that supposed to be wcscoll, not wcsoll?

[–] SubArcticTundra@lemmy.ml 12 points 1 week ago (1 children)

...they're the same picture

[–] airbreather@lemmy.world 3 points 1 week ago
[–] SubArcticTundra@lemmy.ml 9 points 1 week ago (1 children)

Are there any C libraries other than the standard library that use this kind of naming style?

[–] SubArcticTundra@lemmy.ml 8 points 1 week ago (1 children)
[–] d_k_bo@feddit.org 9 points 1 week ago
[–] tunetardis@piefed.ca 7 points 1 week ago (2 children)

I guess strxfrm and the like date back to a period in the 80s when symbol names had to be kept short for the compiler/interpreter's sake. Like while BASIC back in those days technically allowed > 8 chr names, the interpreter only stored the first 8. In other words, the first 8 needed to be unique. As such, people tended to stick with <= 8 chr symbols to avoid interpreter issues. I think C allowed up to 31? But the culture of <= 8 prevailed nevertheless.

Then in the 90s, such restrictions were largely dropped in most languages, and symbol names ballooned in size to take advantage of this new freedom. In C++, you even had reserved words growing to the likes of reinterpret_cast around that time, but APIs just got ridiculous along the lines lengthy_class_name_followed_by_fully_spelled_out_method.

Today, people seem to have come to their senses and settled on more reasonable lengths, though not to 80s extremes. Like going back to C++, we have new reserved words like decltype and constexpr. In the 90s, these would likely have been spelled out in full like constant_expression?

[–] grozzle@lemmy.zip 8 points 1 week ago* (last edited 1 week ago) (1 children)

i still have a vague mistrust of file extensions longer than three characters.

like a glass walkway, i know .jpeg is just as safe as .jpg, but there's a hint of uneasiness.

[–] tunetardis@piefed.ca 5 points 1 week ago (2 children)

I also have a vague mistrust of non-alphanumerics in file extensions. Like while .c++ is fine, .cpp feels…safer?

[–] heartSagan5@lemmy.zip 3 points 1 week ago

Well, yeah. Why would you tempt the shell to get garbled?

[–] x74sys@programming.dev 2 points 1 week ago

.cc and .hh feels the most serious.

[–] BigDanishGuy@sh.itjust.works 4 points 1 week ago* (last edited 1 week ago) (1 children)

Then in the 90s, such restrictions were largely dropped in most languages, and symbol names ballooned in size to take advantage of this new freedom.

But with great freedom comes great responsibility. I think Microsoft went from digestion noices to indirectly advertising their stake in arthritis medicine. I mean my fingers ache just looking at C# or PowerShell.

What was so wrong about puts or cout? I know it's not the most intricate functions, but going from a 4chr function to "Console.WriteLine()" is a symptom.

And as long as I'm already a riled up old fart, let me tell you about autocompletion. Why does MS have to autocomplete entire commands from ambiguous strings?

And the kids don't get it. They don't even write the code anymore, let alone understand it... I want coffee flavoured coffee, heavy metal and for dark mode to fucking die!

That felt better, I'm sorry for anybody making it this long.

I'm just an old fart

[–] bridgeburner@lemmy.world 6 points 1 week ago (5 children)

Dude what's with ur crusade against dark mode lol. It's not like dark mode replaced light mode.

[–] fum@lemmy.world 2 points 1 week ago

In some cases it did. I often come across dark theme only websites.

load more comments (4 replies)
[–] DrinkMonkey@lemmy.ca 7 points 1 week ago

Mwyn is a Super Furry Animals album, and I believe the biggest selling Welsh album of all time. Y Teimlad is a real tear jerker. Cwytch is a cuddle. Heard Nigel Owens say it to two misbehaving players during a rugby match once.

The rest I dunno…

"How ~~green~~ clean was my ~~valley~~ code base then and the code base of them that have gone. Before the technical debt heap rose up, burying everything in its path."

[–] underscore_@sopuli.xyz 4 points 1 week ago

A few from llvm (maybe?)

  • llyfr
  • llanc
  • llif
[–] RebekahWSD@lemmy.world 3 points 1 week ago

I only know cwtch because I've seen it in a book somewhere. The rest I'd have to guess at with a shakey knowledge of how Welsh...looks I guess lol

[–] Malfeasant@lemmy.world 2 points 1 week ago
load more comments
view more: next ›