Kristian Bolino

Results 12 comments of Kristian Bolino

You can also simply set the timezone inline when you run the command, e.g. ```console $ echo '"2022-08-29T19:00:00Z"' | TZ=US/Eastern jq fromdateiso8601 1661803200 $ date --date=@1661803200 -u -Iseconds 2022-08-29T20:00:00+00:00 ```...

Further thoughts: given the low-level nature of `RenderGeometryRaw`, it may be best to discard the slice parameter types in favor of something more generic. I know the C signature uses...

Sure. The biggest reason I think it's misleading is because the strides are specified in bytes. Here's an example of how `uv` and `uv_stride` are used inside `SDL_RenderGeometryRaw`: ```c for...

I tested it out and it works fine. Definitely more ergonomic to pass pointers instead of slices, since I had to make fake slice headers for them before.

@sevmonster that doesn't seem to make any difference I think `Host` is handled specially by nginx, the same as with `Connection`. The docs imply that the default is equivalent to...

@cateiru In my experience, the best workaround is: - Use `proxy_set_header` *exclusively* for `Host` and `Connection` and if you need to set both, be sure to set them at the...

I figured some code was worth more than words, so I set up a simple test. Running this Python server as the `proxy_pass` target, which simply echoes the headers back:...

There are indentation-related inconsistencies even with regular heredocs. The following output different values even though as I read it they should produce the same result: ```terraform output "hello_heredoc" { value...

@karenetheridge The `Set-Cookie` response header is not well represented by `type: array` because each time the header is repeated it uses a different cookie name, and those names are part...

@darrelmiller It's not so much that I want to _build_ an API that relies on cookies, so much as I want to _document_ an API that already does, or has...