this post was submitted on 16 Nov 2024
1153 points (100.0% liked)

Programmer Humor

22969 readers
1239 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
[–] [email protected] 174 points 5 months ago (30 children)

I have an apostrophe and it's super annoying as some companies see it as a SQL injection hack and sanitize it.

So I've received ID with Mc%20dole or they add a space in it. Or I'll get a work email with an apostrophe but I cant use it anywhere because sites have it disabled. And I've missed my flight because I changed my ticket once to add the apostrophe and the system just broke at the gate.

Worse yet many flight companies have "you will not be able to board if your ID doesn't exactly reflect your details" but their form doesn't allow it. Even most forms for card payments don't allow it even though it's the name on my card.

[–] [email protected] 72 points 5 months ago (2 children)

%20 is encoded space if I remember right, so even then they were already incorrect

[–] [email protected] 34 points 5 months ago

It sounds like maybe they sanitized the apostrophe to a space and then encoded it

[–] [email protected] 5 points 5 months ago

Yep, the apostrophe would be %27

So Mc%27dole

load more comments (27 replies)