Josh Baker
Josh Baker
Hi, is this a bug?
@mmcloughlin Thought I might chime in. With the pinhole examples I used Go's builtin image package. But I've since moved to exporting each frame as an individual PNGs and using...
The `actionTypeEntries` results in the empty array `[]`. An empty array technically exists, even though it's empty.
Hi @migopsdinesh, Wow this is a big PR. 😅 Adding Regex is a significant update. On the surface I like the idea but unfortunately I'm not much of a "regexpert"....
> The current syntax is a little awkward using the "~" separator I wonder if using forward slashes might be easier to read? I don't think that the forward slash...
It probably should be documented, but you need to escape the path. ``` #(a\!\=e>15)# -> [{"a!=e": 20}] ```
I was playing around with this how this would work. The issue is that two '#' will return an array of an array, but the `Paths` require that the number...
Sadly, I don't know of any easy way without adding a new modifier. Here's one I named `@fill`, which fills the last value in the array (which must be an...
For this json: ```json { "first": "Andy", "fav.movie": "Deer Hunter", "city": "Phoenix", "friends": [ {"first": "Dale"}, {"movie":"Overboard","first": "Roger"}, {"city":"Anchorage","first": "Jane", "last": "Murphy"} ] } ``` ``` [{movie:fav\.movie,city},friends].@fill ``` ```json [...
Dates are tough. There isn't a way to do a straight up GJSON query on dates unless they are in lexicographical order or the represented as a numerical timestamp. I...