daveycodez

Results 43 comments of daveycodez

Thanks for this. I noticed an inconsistent FPS in my server.

> Can tick B finish before tick A if computation of A is super long/buggy? I'd hope tick B cannot run until tick A completes.

Oof. 2.0.0 fixes this, but scrolling is broken even with scrollBehavior outside if the modal is too big... ruh roh. EDIT: For scrollBehavior: outside to work you also need placement...

The model dropdown really needs a way to write in a custom model, I want to use the new models today ;p TBH I'll probably make a new version of...

Doesn't work with streaming though? It's still calling /transcription via Open AI with streaming, only calls my API when I press stop...

Both of these no longer exist on NextRequest

For sure I was just noting it if anyone stumbles here from Google tbh. Best way to get IP is req.headers['x-forwarded-for'] || '').split(',').pop().trim() This always gets the last entry, gets...

``` const supabase = createAdminClient() for (let i = 0; i < 10; i++) { const { data: products, error } = await supabase.from('stripe_products').select('*').limit(3) console.log(`Fetch ${i}: `, products?.length) console.log(error) }...

> oduction"`. Follow this issue for progress on Serwist + Turbopack: https://github.com/serwist/serwist/issues/54. > You can also suppress this warning by setting SERWIST_SUPPRESS_TURBOPACK_WARNING=1. Need to add this to env, but not...

```bash Checked 72 files in 13ms. No fixes applied. [@serwist/next] WARNING: You are using '@serwist/next' with `next dev --turbopack`, but Serwist doesn't support Turbopack at the moment. It is recommended...