cm0002@no.lastname.nz to Funny@sh.itjust.worksEnglish · 4 days agoAny day nowlemmy.mlimagemessage-square42linkfedilinkarrow-up1519arrow-down18
arrow-up1511arrow-down1imageAny day nowlemmy.mlcm0002@no.lastname.nz to Funny@sh.itjust.worksEnglish · 4 days agomessage-square42linkfedilink
minus-squareJackbyDev@programming.devlinkfedilinkEnglisharrow-up16·edit-23 days agoOne 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.
minus-squaresfgifz@lemmy.worldlinkfedilinkarrow-up2·2 days agoOur 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 🎯
minus-squarepftbest@sh.itjust.workslinkfedilinkarrow-up5·3 days agoI just made a CI pass to forbid non ASCII characters in the code. Found a lot of em dashes :(
minus-squareJackbyDev@programming.devlinkfedilinkEnglisharrow-up4·3 days agoThere are plenty of non ASCII characters that are okay in code. ñ comes to mind. There are also box drawing characters.
minus-squarepftbest@sh.itjust.workslinkfedilinkarrow-up3·3 days agoWe 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)
minus-squareJackbyDev@programming.devlinkfedilinkEnglisharrow-up3·2 days agoThis is goofy, I’m not gonna fail a build because somebody used some random Unicode character. That’s draconian.
minus-squarewilfim@sh.itjust.workslinkfedilinkarrow-up5·3 days agoI literally see it everywhere in my companies’ documentation
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.
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 🎯
I just made a CI pass to forbid non ASCII characters in the code. Found a lot of em dashes :(
There are plenty of non ASCII characters that are okay in code. ñ comes to mind. There are also box drawing characters.
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:
This is goofy, I’m not gonna fail a build because somebody used some random Unicode character. That’s draconian.
I literally see it everywhere in my companies’ documentation