this post was submitted on 15 Nov 2025
591 points (98.5% liked)

Funny

12301 readers
1749 users here now

General rules:

Exceptions may be made at the discretion of the mods.

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] JackbyDev@programming.dev 17 points 1 day ago* (last edited 1 day ago) (4 children)

One of my colleagues submitted a PR with a bunch of emojis in the readmes and log statements and I'm just so infuriated with it.

[–] sfgifz@lemmy.world 2 points 11 hours ago

Our leadership made using and excelling at Copilot as one of our Key Results for upskilling, I make it point to make my code look as botty as possible to show how serious I'm about achieving the target 🎯

[–] wilfim@sh.itjust.works 6 points 1 day ago

I literally see it everywhere in my companies' documentation

[–] pftbest@sh.itjust.works 5 points 1 day ago (1 children)

I just made a CI pass to forbid non ASCII characters in the code. Found a lot of em dashes :(

[–] JackbyDev@programming.dev 4 points 1 day ago (1 children)

There are plenty of non ASCII characters that are okay in code. ñ comes to mind. There are also box drawing characters.

[–] pftbest@sh.itjust.works 3 points 1 day ago (1 children)

We don't use them in my project, I only added an exception for ©®™ and such. You can easily whitelist any character range you need. My command looks like this:

- (! grep -r -I -P '[^\x{00}-\x{7f}©®™°]' src)
[–] JackbyDev@programming.dev 3 points 22 hours ago

This is goofy, I'm not gonna fail a build because somebody used some random Unicode character. That's draconian.

[–] vala@lemmy.dbzer0.com 2 points 1 day ago (1 children)
[–] JackbyDev@programming.dev 9 points 1 day ago* (last edited 1 day ago) (1 children)

Yeah, they used ⚠️ in a warning.

[–] RagingRobot@lemmy.world 1 points 17 hours ago

They add excessive logging too. I had cursor write some UI code and I thought my console was going to explode. Console logs each step of the way haha. I guess that's the easiest way for it to debug its own code