Kevin Minder
Kevin Minder
It would be convenient if every header automatically generated an HTML ID that could be used as a fragment link. Note: Must use Edit mode to see actual markup. For...
I'd like to be able to break a large document up into sections and then have a master document that imports all of the sections. The master document would then...
In some cases I need to have license header files in my markdown docs but I don't want these in the output. I've seen the use of this style comment...
We are experiencing timing issues with the application of changes resulting from trait and scope processing to application resources. In particular we have an example of workload type of which...
In the current OAM spec (v0.2.1) scopes supported as an attribute of component. I believe that the most common use case for a scope will be to apply the scope...
I recently upgraded from a rather old version of rest-assured. I had to make several adjustments but one that I didn't think was particularly valid was needing to "clear" a...
I was expecting this to work but it does not. I'm using commit 5415b5b32da8a0e1aca8a637944fc5bd3f285669 ``` func TestLookupMapSliceIndex(t *testing.T) { assert := assert.New(t) m := map[string]any{ "test-name": []string{"test-value"}, } v, e...
I'm trying to add lua-resty-jwt to Kubernetes ingress-nginx. In their recent versions they have stopped using luarocks and are installing Lua modules manually. See https://github.com/kubernetes/ingress-nginx/blob/master/images/nginx/rootfs/build.sh#L597 I've tried installing both lua-resty-jwt...
Might be working as designed but for me not as expected. To illustrate, this works JsonPath.compile( "$['field-A']" ); and this doesn't. JsonPath.compile( "$.field-A" ); I more complete test case follows....