seaQueue@lemmy.world to Programmer Humor@lemmy.ml · 2 年前50 million rendered polygons vs one spicy 4.2MB boilemmy.worldimagemessage-square138linkfedilinkarrow-up11.38Karrow-down113
arrow-up11.37Karrow-down1image50 million rendered polygons vs one spicy 4.2MB boilemmy.worldseaQueue@lemmy.world to Programmer Humor@lemmy.ml · 2 年前message-square138linkfedilink
minus-squarebjornsno@lemm.eelinkfedilinkarrow-up12·2 年前Except if it’s a single line file, only god can help you then. (Or running prettier -w on it before opening it or whatever.)
minus-squareexpr@programming.devlinkfedilinkarrow-up4·2 年前https://porkmail.org/era/unix/award#cat jq < file.json cat is for concatenating multiple files, not redirecting single files.
minus-squarejimbolauski@lemm.eelinkfedilinkarrow-up4arrow-down2·2 年前Render Media works the best rm file.json
minus-squarexavier666@lemm.eelinkfedilinkEnglisharrow-up3·2 年前Yes, Render Media is the best. It’s hard to believe that not many people know about this tool. It’s also natively installed in all Linux distros.
minus-squarefl42v@lemmy.mllinkfedilinkarrow-up7·2 年前4.2 megs on one line? Vim probably can handle it fine, although syntax won’t be highlighted past a certain point
minus-squarebjornsno@lemm.eelinkfedilinkarrow-up5·2 年前I’ve accidentally opened enormous single line json files more than once. Could be lsp config or treesitter or any number of things but trying to do any operations after opening such a file is not a good time.
minus-squarefl42v@lemmy.mllinkfedilinkarrow-up1·2 年前Yeah, very well may be. LSPs always slow down opening big files, so I usually inspect those with an empty/different config
minus-squareBaldProphet@kbin.sociallinkfedilinkarrow-up4arrow-down1·2 年前Technically every JSON file is a single line, with line break characters here and there
Except if it’s a single line file, only god can help you then. (Or running
prettier -won it before opening it or whatever.)cat file.json | jqalso workshttps://porkmail.org/era/unix/award#cat
jq < file.jsoncatis for concatenating multiple files, not redirecting single files.Render Media works the best
rm file.jsonYes, Render Media is the best. It’s hard to believe that not many people know about this tool. It’s also natively installed in all Linux distros.
4.2 megs on one line? Vim probably can handle it fine, although syntax won’t be highlighted past a certain point
I’ve accidentally opened enormous single line json files more than once. Could be lsp config or treesitter or any number of things but trying to do any operations after opening such a file is not a good time.
Yeah, very well may be. LSPs always slow down opening big files, so I usually inspect those with an empty/different config
Technically every JSON file is a single line, with line break characters here and there
:syntax offand it works just fine.