Jamie Talbot
Jamie Talbot
# Bug report I originally raised this as a [discussion](https://github.com/zeit/next.js/discussions/11773), but now I think it's a bug. ## Describe the bug When using a [barrel file](https://dev.to/luispa/how-to-create-barrels-in-typescript-or-javascript-59ma) to re-export components from...
If a server is broken and returns an invalid or missing content-length, colly reports "unexpected EOF", despite having received data. Repro: 1. use colly to visit https://regexr.com/39p0t 2. res.ContentLength is...
This makes colly more permissive to servers that don't send a ContentLength header. Fixes https://github.com/gocolly/colly/issues/511
I'm using exec.Cmd() to run graphics magick to convert an image, reading from stdin and writing to stdout. ```go stdout := bytes.Buffer{} stderr := bytes.Buffer{} gm := exec.Command("gm", "convert", args...)...
### Do you want to request a _feature_ or report a _bug_? request a feature ### What is the current behaviour? Many of the types are not exposed, so if...
I'd like to run an event handling service on a serverless platform, like Cloud Run or Cloud Functions. This requires the service respond to http requests ([example](https://cloud.google.com/run/docs/triggering/pubsub-push)). The current cloudevents...
I'd love to see the ability to statically generate code (not just interfaces) as part of a build process, instead of creating it dynamically when the application starts. I'm currently...
When developing, I want to use a `VOL` command in my Dockerfile which I can bind to a hostPath at runtime, so I can work with hot-reloading. When deploying, I...
**Do you want to request a *feature* or report a *bug*?** *bug* **What is the current behavior?** Given the following (simplified) snippet: ```jsx class HoverMenu extends React.Component { render() {...
This is a feature request. At the moment, if an error is thrown by a handler, the entire process crashes. I would love a facility to define an `uncaughtErrorHandler` so...