this post was submitted on 09 May 2026
609 points (99.8% liked)

Programmer Humor

31311 readers
1197 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
[–] slazer2au@lemmy.world 124 points 10 hours ago (1 children)

Unicode truly is amazing.

Like that fake apple site that uses the Cyrillic A instead of the Latin A.

Or the Greek question mark being a different code to Latin question marks.

[–] gkaklas@lemmy.zip 53 points 9 hours ago* (last edited 9 hours ago) (2 children)

Greek-Latin question marks

Actually the Greek question mark (;) looks like the Latin semi-colon (;)!

Last time I looked it up I think I found they are the same characters, and I tried compiling C with a Greek question mark instead of a semi-colon and it compiled fine! But I'm curious if it was because of something else, like my computer's keyboard layout, or the compiler simply being able to handle them 🤔

[–] VindictiveJudge@lemmy.world 17 points 6 hours ago (1 children)

Wait, does C read like valley girl speech in Greek?

[–] raspberriesareyummy@lemmy.world 4 points 5 hours ago

Shit - the next five weeks I'll read C++ lines in upspeak in my head :(

[–] palordrolap@fedia.io 30 points 9 hours ago (1 children)

Something somewhere was definitely doing the conversion for you, but it could have been your editor, the compiler or something in between like a C preprocessor directive getting loaded in by your configuration.

[–] 418_im_a_teapot@sh.itjust.works 1 points 6 hours ago (1 children)

I'd be pissed if it was my editor. A compiler used on a global scale would make sense.

[–] raspberriesareyummy@lemmy.world 8 points 5 hours ago

Nah, I would absolutely want my compiler to error out hard on characters that are not allowed per the standard.