this post was submitted on 12 Nov 2023
746 points (96.6% liked)

Programmer Humor

19187 readers
1135 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
[–] magic_lobster_party@kbin.social 13 points 10 months ago (3 children)

Json is incredibly easy to prettify.

[–] synae@lemmy.sdf.org 6 points 10 months ago

I do it by converting to yaml ;)

[–] Cratermaker@discuss.tchncs.de 4 points 10 months ago (3 children)

I wrote a json prettifier a couple months ago with just a couple lines of code. I thought it would take a while but ended up taking like 10 minutes.

[–] ElectricCattleman@lemmy.world 5 points 10 months ago

js's JSON.stringify(obj, null, 2);

[–] kbotc@lemmy.world 4 points 10 months ago

Import json Import pprint?

[–] 30p87@feddit.de 2 points 10 months ago
[–] 30p87@feddit.de 2 points 10 months ago (1 children)
[–] magic_lobster_party@kbin.social 2 points 10 months ago

I use jq pretty much every day