Results 262 comments of Andrew M

It seems to happen when running commands via `pnpm` that fork other processes. Specifically I use [concurrently](https://github.com/open-cli-tools/concurrently) to run dev scripts from pnpm and it reliably locks up nushell when...

@adifyr Another alternative would be to use a supabase edge function with a different client library such as https://github.com/porsager/postgres which supports transactions. You can keep your complex business logic in...

@neildhar Maybe related but I was having performance problems in my app on Android so I tested it with JSC and v8. JSC is approx 4x faster than hermes. V8...

@tmikov I wish I had a benchmark but at the moment I don't know exactly what's causing the problem. Startup time and overall performance appears to be approx 5x worse...

I double checked and I am definitely not running from source. I think I must be tripping over a performance corner case such as https://github.com/facebook/hermes/issues/811 https://github.com/facebook/hermes/issues/930 https://github.com/facebook/hermes/issues/1008 or the original...

I landed here wondering the same thing. I thought my postinstall script wasn't running because I didn't see any output. Would be great for bun to include full output from...

I'm being blocked by this. The implementation of effect rpc (https://github.com/Effect-TS/effect) uses ReadableStream to stream the reponse to the client. I'm seeing the same issue, the response body is empty...

Yep that works fine! Perhaps the --help for `supabase start` should mention it however.

Nushell is maturing quickly, the latest release includes a standard library and testing support. IMO it's a vastly superior experience at this point to all legacy shells, except that is...

@ajsmth It causes issues with native modules that don't expect to be called twice from the same running app. `react-native-firebase` emulator support is a big one affecting us. The double...