Results 79 comments of Sam Denty

Is it possible to implement an option to catch two readers existing at the same time and panic, without deadlock detection? Deadlock detection will only catch the problem after it's...

yeah it's a race condition with a writer in the middle of two readers. Are you saying we can fix this in the library or in user-land? > You may...

Additionally there's https://github.com/BurtonQin/lockbud for finding these kind of issues (works with `parking_lot`). I didn't manage to get it working in my case, hence my need for runtime panicking

Should've patched all the port creations, but maybe I left something out If you want to debug, I'd log the messages that are sent and that should reveal more

Yeah some icons could do with custom picked ones instead. I was testing the water as I hadn't seen any project that scraped github repo icons automatically before and thought...

This only fixes the `script will never generate response` error for some cases, but I'm now running into https://github.com/cloudflare/rustwasm-worker-template/issues/22 which I think may? be the root cause

This may be fixed in https://github.com/cloudflare/workers-rs/pull/256

You can test it out with `cargo install -q worker-build2 && worker-build2 --release` in your `[build] command =`

i'm also getting right click along when three finger clicking on an M3 macbook. On my intel one it works fine

Hi @ElectricCodeGuy I tried to reproduce this and wasn't able to. Here's what I tried: models: `gemini-2.5-pro-exp-03-25` & `gemini-2.5-pro-preview-03-25` useChat with: ```ts onToolCall({ toolCall }) { console.log('Tool call:', toolCall); },...