Tyler Sebastian

Results 15 comments of Tyler Sebastian

Seems like most api.godoc.org endpoints are erroring, currently? e.g. https://api.godoc.org/packages, https://api.godoc.org/imports/github.com/goburrow/cache, etc. I'm particularly interested in the `imports` endpoint. Has this moved somewhere else or is there a mirror I...

@ZiViZiViZ the way I accomplish this is by making a request to `https://pkg.go.dev/gopkg.in/yaml.v2?tab=licenses` and using an HTML parser to grab the license headers. (replace `gopkg.in/yaml.v2` with whichever package you're looking...

I think I'm running into the same issue as @ridhoperdana. fasthttp uses it's own context-like interface (`RequestCtx`) for its handlers. In my case, I've setup a wrapper for these handlers...

> @tills13 So you modified the RequestCtx of fasthttp to implement the context.Context interface? no, RequestCtx already implements context.Context - if you look below [here](https://github.com/valyala/fasthttp/blob/master/server.go#L541), you'll see that it implements...

> Maybe adding a helper to transfer it into standard context.Context will make it better, That's what `MakeChildSpanContext` does. > since I suppose we don't use fastHttp RequestCtx inside all...

You can write your own definitions ``` /** @see https://github.com/wrakky/react-html-parser#arguments-1 */ type HtmlParserNode = { attribs: { [ name: string ]: string } name: string type: string } declare module...

See https://github.com/emotion-js/emotion/issues/2802 for more discussion

The example repo uses the released version of Next but as noted in the `next info` output above I've verified it against `next@canary`

> FYI everyone, this is just a dev warning and not an actual error. The warning doesn't show up in my production build, ... To be clear, this is because...

I have taken the liberty of submitting an issue to the Emotion repo and I'll have a PR there soon as well. https://github.com/emotion-js/emotion/issues/2423