this post was submitted on 12 Nov 2023
761 points (96.7% liked)

Programmer Humor

18970 readers
521 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] 22 points 9 months ago (1 children)

Could've been worse. Could be unprettified json.

[–] [email protected] 13 points 9 months ago (3 children)

Json is incredibly easy to prettify.

[–] [email protected] 6 points 9 months ago

I do it by converting to yaml ;)

[–] [email protected] 4 points 9 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.

[–] [email protected] 5 points 9 months ago

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

[–] [email protected] 4 points 9 months ago

Import json Import pprint?

[–] [email protected] 2 points 9 months ago (1 children)
[–] [email protected] 2 points 9 months ago

I use jq pretty much every day