nickajacks1

Results 74 comments of nickajacks1

I recently obtained a USB adapter for Windows. Maybe someday I'll open a PR for this 😀

@bluebrown looks like this can be closed due to #896

> Supporting something like one operation with different inputs/outputs based on a version header, or looking up the user's selected version, or some other mechanism is harder to do and...

I found that simply defining different `huma.MediaType`s for a Response's Content *almost* works with media-type parameters. Here's what I mean: ```go Responses: map[string]*huma.Response{ "200": { Content: map[string]*huma.MediaType{ "application/json; version=1": {...

RE: overriding a method in Ctx but not Req/Res, resulting in differing behavior between e.g., `c.Get` and `c.Req().Get`, I fear the only real options to prevent/mitigate this that I could...

The FromContext pattern is a lot easier to use! 👍 Are these the only middlewares in this repo that need updating?

> this concept was copied from fasthttp and is supposed to bring performance what is the alternative without the loss of performance ? This isnt proposing to get rid of...

Could the rate limit be worked around by instead creating PRs that get auto merged when the checks pass? A PR may also make it easier to fix any problems.

Apologies for the novice question, but I figured I'd just ask to be safe: if I play around with the workflows on my own fork to better understand the issue...