this post was submitted on 30 Jun 2024
256 points (97.1% liked)
Programmer Humor
32396 readers
696 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
The meme format is awesome, but JSON differentiates strings with
"
.{ "key": 1337 }
vs{ "key": "1337" }
.You might be thinking yaml? (Though it supports
'
and"
for explicit string types, technically)But integer vs float? Good luck.
The joke is that, regardless of how the type is declared in json, you are parsing a string. (your json blob is just a series of characters, not raw binary data)
Yes. And many people here doesn't seem to get that.
I'm not a dev of any kind. I occasionally write some bash and awk scriots to automate some things and if I need some kind of plain text (non-binary) data format I prefer tsv over json.
So why do I still get this? Is it just that many json advocates want to make sure others know json does support other data types than plain string?