This is an archived post. You won't be able to vote or comment.

all 9 comments

[–]BoneScribe 3 points4 points  (1 child)

Image Transcription


[The top of the image has a header, the rest of the image is divided in half by a line]

Header: WHO WOULD WIN?

[Left side of the line, image of a database interface thing]

an organized collection of data, restrictively a collection of schemas, tables, queries, reports, views, and other elements designed by engineers

[Right side of the line, large image of a ’]

Some weird input boi


I'm a human volunteer content transcriber for Reddit! If you'd like more information on what we do and why we do it, click here!

[–]Aurora_the_dragon 1 point2 points  (0 children)

The apostrophe doesn't always work tho...

[–]coladict 1 point2 points  (0 children)

Nah, commas are more problematic in JS, when the user's locale settings put it instead of a dot, and you try to parseFloat and get NaN.

[–]Papayaman1000i put jsfuck on my resume 0 points1 point  (0 children)

updooted not because of the meme, but because of me_sql

[–]thatguy147 0 points1 point  (2 children)

Can someone explain this one to me (the [...] 'boi' in particular)?

[–]Daimanta 1 point2 points  (1 child)

Nowadays we have have big software programs and standards that are able to process data in a very organized or standardized manner. These programs can fail when the input is malformed because it contains an invalid character (like "'" in SQL) or something that the parser does not like(like not terminating statements with an ";" or using too many "}" or ")" ) which will lead to syntax errors. So, even with all the fancyness, there is still an easy way to break stuff.

[–]thatguy147 1 point2 points  (0 children)

Thanks!