Unix or dos format?
Anyway, you probably need to put a backslash before it to indicate line continuation.
But wouldn't it be better to use something more traditional, such as ?
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.
Unix or dos format?
Anyway, you probably need to put a backslash before it to indicate line continuation.
But wouldn't it be better to use something more traditional, such as ?
I want the char 8 that makes a beep.
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.
you will not be able to board if your ID doesn't exactly reflect your details"
So they care about an apostrophe though? I can see any punctuation being a problem.
%20 is encoded space if I remember right, so even then they were already incorrect
What about an open bracket? (
) Found Satan
Teehee )
There are a frightening number of systems that don't allow "-", which isn't even an edge case. A lot of people - mostly women - hyphenate their last names on marriage, rather than throw their old name away. My wife did. She legally changed her name when she came of age, and when we met and married years later she said, "I paid for money for my name; I'm not letting it go." (Note: I wasn't pressuring her to take my name.) So she hyphenated it, and has come to regret the decision. She says she should have switched, or not, but the hyphen causes problems everywhere. It's not a legal character in a lot of systems, including some government systems.
It boggles my mind how so many websites and platforms incorrectly say my e-mail address is 'invalid' because it has an apostrophe in it.
No. It is NOT invalid. I have been receiving e-mails for years. You just have a shitty developer.
Ugh and that happens a lot if your email domain has an even slightly unusual TLD too.
I have come across a shockingly large amount of people who not only have a hyphenated last name but also have a hypenated first name! Dealing with every new computer system is like a new adventure
And you'd think a simple solution is just leave out the hyphen when you put you name in, but that can also lead to problems when the system is looking for a 100% perfect match.
And good luck if they need to scan the barcode on your ID.
Then the first part is interpreted (in the US, anyway) as a middle name, not as part of the last name. I did run into a recently married woman who did that: dropped her middle name, moved her last to the middle, and used her spouse's last name.
More commonly, places that don't take hyphens tend to just run the two names together: Axel-Smith becomes AxelSmith.
Programmers can be really dumb.
Am I allowed to include sql command words such as drop table in my child's name?
Simmer down, Bobby
Always sanitize your Data inputs.
asking questions like this is how i found out that one of the allowed characters in names in my country is ÿ, which is fine in Latin-1 but in 7-bit ASCII is DEL
.
This sounds like it would create a whole list of fun and irritating edge conditions for some poor bugger to debug. Love it.
that's amazing! Aren't codecs fun
NaN,
Not a Number, and now Not a Name
NaN: „Hey Nanna, can you call the nanny?“
Just noticed that the listing for ; DROP TABLE "COMPANIES"; -- LTD has been redacted by the government website‽
I'd rather include a bell character '\a'
Bing Crosby
And that's why you're not safe for work.
This sounds like the start of another sovcit "loophole"
"We call her Carrie, because of the carriage return."
You can also try to give the child NULL as middle name for additional fun.
someone tried that with their license plate, it turned out well: https://www.wired.com/story/null-license-plate-landed-one-hacker-ticket-hell/
edit: archive link
they should have just used rust smh
I just realized that the shitty software on the other side of the divide is casting null
to ”null", which absolutely explains that issue. What a cluster
shudders in NodeJS
Yeah, this is his daughter
That's easy, just call it Jhon\nDoe
John\0Doe will fuck with all C (and C based derivatives) software that touches it.
With an address in 's-Hertogenbosch to help people who are lazy about escaping.
Nah, it will end up simply as "John" in the database. You need "John%sDoe" to crash C software with unsafe printf() calls, and even then it's better to use several "%s"
C and C derivatives will be fine unless they're fucking up encoding.
Which rarely, if ever, happens. Especially with US software.