564

Meme transcription:

Panel 1: Bilbo Baggins ponders, “After all… why should I care about the difference between int and String?

Panel 2: Bilbo Baggins is revealed to be an API developer. He continues, “JSON is always String, anyways…”

top 50 comments
sorted by: hot top controversial new old
[-] RustyNova@lemmy.world 105 points 4 months ago* (last edited 4 months ago)

To whoever does that, I hope that there is a special place in hell where they force you to do type safe API bindings for a JSON API, and every time you use the wrong type for a value, they cave your skull in.

Sincerely, a frustrated Rust dev

[-] skuzz@discuss.tchncs.de 36 points 4 months ago

"Hey, it appears to be int most of the time except that one time it has letters."

throws keyboard in trash

[-] Username@feddit.de 16 points 4 months ago

Rust has perfectly fine tools to deal with such issues, namely enums. Of course that cascades through every bit of related code and is a major pain.

[-] RustyNova@lemmy.world 23 points 4 months ago

Sadly it doesn't fix the bad documentation problem. I often don't care that a field is special and either give a string or number. This is fine.

What is not fine, and which should sentence you to eternal punishment, is to not clearly document it.

Don't you love when you publish a crate, have tested it on thousands of returned objects, only for the first issue be "field is sometimes null/other type?". You really start questioning everything about the API, and sometimes you'd rather parse it as serde::Value and call it a day.

load more comments (1 replies)
[-] skuzz@discuss.tchncs.de 4 points 4 months ago

True, and also true.

load more comments (1 replies)
[-] Carighan@lemmy.world 5 points 4 months ago

Relax, it's just JSON. If you wanted to not be stringly-typed, you'd have not used JSON.

(though to be fair, I hate it when people do bullshit types, but they got a point in that you ought to not use JSON in the first place if it matters)

[-] RustyNova@lemmy.world 2 points 4 months ago

As if I had a choice. Most of the time I'm only on the receiving end, not the sending end. I can't just magically use something else when that something else doesn't exist.

Heck, even when I'm on the sending end, I'd use JSON. Just not bullshit ones. It's not complicated to only have static types, or having discriminant fields

[-] Mubelotix@jlai.lu 4 points 4 months ago

You HAVE to. I am a Rust dev too and I'm telling you, if you don't convert numbers to strings in json, browsers are going to overflow them and you will have incomprehensible bugs. Json can only be trusted when serde is used on both ends

load more comments (1 replies)
[-] apprehentice@lemmy.enchanted.social 46 points 4 months ago
[-] kionite231@lemmy.ca 47 points 4 months ago
[-] Skua@kbin.earth 26 points 4 months ago

strings are in base two, got it

[-] Rez@sh.itjust.works 38 points 4 months ago

Wouldn't the answer be "10" in that case?

[-] Skua@kbin.earth 41 points 4 months ago

yes, if I could do maths

[-] joyjoy@lemm.ee 22 points 4 months ago
[-] Eheran@lemmy.world 5 points 4 months ago
[-] CanadaPlus@lemmy.sdf.org 16 points 4 months ago

1 11 111 1111 11111 111111

That's base 1. By convention, because it doesn't really fit the pattern of positional number systems as far as I can tell, but it gets called that.

[-] Eheran@lemmy.world 6 points 4 months ago

Oh, I get it, was reading as base 2 and confused by that. Essentially Roman numerals without all the fancy shortcuts.

load more comments (1 replies)
[-] Klear@sh.itjust.works 2 points 4 months ago
load more comments (4 replies)
[-] SpaceNoodle@lemmy.world 9 points 4 months ago

That's unary.

load more comments (1 replies)
[-] andyburke@fedia.io 44 points 4 months ago

These JSON memes got me feeing like some junior dev out there is upset because they haven't read and understood the docs.

[-] RustyNova@lemmy.world 25 points 4 months ago
load more comments (1 replies)
[-] Valmond@lemmy.world 6 points 4 months ago

Comments? Comments? Who needs comments?

[-] maxinstuff@lemmy.world 20 points 4 months ago

I'll have you know all of my code is stringly typed.

load more comments (1 replies)
[-] ooterness@lemmy.world 19 points 4 months ago
[-] themusicman@lemmy.world 4 points 4 months ago

If you're moving away from text formats, might as well use a proper serialisation tool like protobuf...

[-] bleistift2@sopuli.xyz 3 points 4 months ago

Hell, no. If I wanted to save bytes, I’d use a binary format, or just fucking zip the JSON. Looking at a request-response pair and quickly understanding the transferred data is invaluable.

load more comments (4 replies)
[-] chicken@lemmy.dbzer0.com 8 points 4 months ago

Explicit types are just laziness, you should be catching exceptions anyways.

[-] fapforce5@lemmy.world 7 points 4 months ago

I do. I return an error.

[-] brian@programming.dev 7 points 4 months ago

json doesn't have ints, it has Numbers, which are ieee754 floats. if you want to precisely store the full range of a 64 bit int (anything larger than 2^53 -1) then string is indeed the correct type

load more comments (2 replies)
[-] veganpizza69@lemmy.world 7 points 4 months ago

It's the API's job to validate it either way. As it does that job, it may as well parse the string as an integer.

[-] bleistift2@sopuli.xyz 5 points 4 months ago

I refuse to validate data that comes from the backend I specifically develop against.

[-] TrickDacy@lemmy.world 7 points 4 months ago

A string that represents types...

[-] RustyNova@lemmy.world 8 points 4 months ago

If a item can have different type, those label fields are actually quite useful. So I don't see the problem

[-] NigelFrobisher@aussie.zone 5 points 4 months ago

This is String - you’ve seen it before haven’t you, Gollum?

[-] humbletightband@lemmy.dbzer0.com 4 points 4 months ago

The comment section proves that xml is far superior to json

load more comments (1 replies)
load more comments
view more: next ›
this post was submitted on 30 Jun 2024
564 points (100.0% liked)

Programmer Humor

19564 readers
1391 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