minus-squarehomo_ignotus@programming.devtoProgramming@programming.dev•JSON Patchlinkfedilinkarrow-up9·5 months agoWhy use JSON Pointer? We already have structured data (JSON), so what’s wrong with ["biscuits", 0, "name"] instead of "biscuits/0/name"? This sidesteps the escaping problem. And the reason is clearly not brevity, given the rest of the spec. linkfedilink
minus-squarehomo_ignotus@programming.devtoMemes@lemmy.ml•Email clientslinkfedilinkarrow-up12·1 year agomutt ftw or elm, if you wanna go oldschool linkfedilink
minus-squarehomo_ignotus@programming.devtoMemes@lemmy.ml•Truckselinkfedilinkarrow-up2arrow-down1·1 year agoapropos xkcd … https://goatkcd.com/ (nsfw) linkfedilink
minus-squarehomo_ignotus@programming.devtoMemes@lemmy.ml•Shit would have gone down differently on the biggest continent, just sayin'.linkfedilinkarrow-up6·1 year agowe cannot agree on a name linkfedilink
Why use JSON Pointer? We already have structured data (JSON), so what’s wrong with
["biscuits", 0, "name"]
instead of"biscuits/0/name"
? This sidesteps the escaping problem.And the reason is clearly not brevity, given the rest of the spec.