Josh Wright
Josh Wright
For anyone seeing this issue - you might be using `res.header` wrong. If you send it one argument, it's not a getter - it's expecting your one argument to be...
For anyone on a different version of Swift than `SAConfettiView`, you can do something like this in CocoaPods: ``` target 'myapp' do # CocoaPods isn't up-to-date, so use the latest...
This may be amiss, but for anyone debugging an `ECONNREFUSED` error, i think this happens if chrome fails to launch - which could be any number of reasons. We ran...
I added a patch (730e59b58bb3af7435e13009616536998d84a5aa) to break `@something` style comments onto new lines. I don't know much about JSDoc, so not sure what people are used to seeing. For now...
I [filed an issue](https://jira.mongodb.org/browse/NODE-688) with mongodb-core and they said `mongodb-core 1.3+` requires node 0.12.x or higher. So looking through [mongojs dependencies](https://gist.github.com/bendytree/38cea54704f0c0972acee5aba1cfba43), `mongojs 1.0.1` is the last version that can be...
Same issue for me on webpack `5.92.1` and Chrome `126.0.6478.127`. The same `events.json` does work in Firefox Profiler: https://profiler.firefox.com
I think it'd be helpful if we could see the source code for `flyio/fastify-functions` to understand how it idles itself. My initial thought was that we should exit the process...
I found the [fastify-functions](https://github.com/fly-apps/fastify-functions) source code but looks like the important part is actually in [tired-proxy](https://github.com/superfly/tired-proxy/blob/master/main.go) where they `exit(0)` to idle. Still a bit confused though because [bfaas](https://github.com/superfly/bfaas/blob/main/server.ts) unbinds the...