14 comments

[ 2.7 ms ] story [ 49.8 ms ] thread
The video looks like you are combining keys?

You could just do this with http://jsonunroller.appspot.com/ and grep.

or you could do it with `curl`, output it to sublime and type `json pretty` (json plugin installed) :)
XPath for JSON? Who would have thought of that! Now add namespaces and you reinvented XML 10 years later
Except that, with certain caveats, XML has a slightly nicer syntax for text-heavy documents, and JSON is slightly nicer for hardcore data representation. For example, I'd much rather have a web page in HTML than JSON, but I'd rather have a config file in the latter.
How about Xpath for every configuration file?

    http://augeas.net/
Probably most people would have thought of it.

You wouldn't make that same comparison with regular expressions(tool) and a text document(data) would you? As in, the tool is not part and parcel of the data.

XPath(and JSONPath) are powerful tools for programatically pulling data from complex data structures.

There is a fairly straightforward generalization of the 'axis' concept to allow graph traversal: 'GPath'. (You have to add an annotation for a traversal kind, and an identifier for a property map.) XPath can be straightforwardly desugared to GPath. I implemented this years ago for an EDG IPR[1] back-end, hooked up a number of 'standard queries' over C++ to Todd Veldhuizen's live OpenGL force-directed graph-viewer [2], and watched EDG compile code---pretty wild stuff watching expressions 'bloom', and classes 'become referenced', etc.

[1] https://parasol.tamu.edu/pivot/ [2] http://ubietylab.net

Why such tools are more common on OS X?