hexcowboy

Results 40 comments of hexcowboy

Also I'm using `go1.23.0 darwin/arm64` and `golang.org/x/tools/gopls v0.16.2` which may be the issue. Edit: I changed `go 1.23` and `toolchain go1.23.0` to `go 1.22` and `toolchain go1.22.0` and `coc-go` began...

For anyone else needing help here, you can use `gopls` directly in coc by changing your `~/.config/nvim/coc-settings.json` like so: ```json { ...other config here "languageserver": { "go": { "command": "gopls",...

Can you explain what this is and what your use case is

does anyone have a workaround for this until it's fixed?

here's an example of how to work around this issue ```ts try { await signIn("email", { email, callbackUrl, redirect: false, }); } catch (error) { if (error instanceof TypeError) {...

Hi @penalosa here is a very basic reproduction: https://github.com/hexcowboy/cf-workers-remote-binding-bug ![Image](https://github.com/user-attachments/assets/4cc1d77d-933a-437c-accf-e0ac1f33775d) ```bash ➜ curl -X POST http://localhost:3009/upload/test-3 Internal Server Error% ``` To reproduce, let the dev server sit idle. I'm not...

Also seeing this for other R2 operations like `head` ``` ▲ [WARNING] workerd/api/r2-rpc.c++:122: warning: R2 error response does not contain the CF-R2-Error header.; respons e.statusCode = 400 ✘ [ERROR] [Error:...

@CarmenPopoviciu After about 1.5h idle with `--remote` instead of `--x-remote-bindings`, I'm seeing a different error ![Image](https://github.com/user-attachments/assets/7a699480-ec0a-4ec3-87b4-65c6a437e8e2) ``` ➜ curl -X POST http://localhost:3009/upload/test-5 error code: 1031% ```

StikDebug is way easier to get working for now. https://stikdebug.xyz/routes/download.html

I also am seeing this error on the dev server with React 19. Pretty basic repro steps here: ```package.json { "name": "email", "version": "1.0.0", "type": "module", "scripts": { "dev": "email...