this post was submitted on 16 Nov 2024
1027 points (99.3% liked)

Programmer Humor

19585 readers
1030 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 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 32 points 1 day ago* (last edited 1 day ago) (2 children)

\n already is an escape sequence, consisting of \, the escape character, and n, the code that is responsible for the new line. Together they form an escape sequence.

[–] [email protected] 1 points 2 hours ago* (last edited 2 hours ago)

Sure, but if you don't escape the \ then you likely won't even be able to get the name into the first system. You need the name to contain \n so that it gets passed correctly to other systems, otherwise his name may wind up just being "John" .

[–] [email protected] 5 points 1 day ago

This person unicodes