mw10013

Results 8 comments of mw10013

@lasseklovstad : Thank you for this. Seems to have fixed a production issue for me where assets were not being found. Much gratitude for your painstaking work in tracking this...

https://github.com/mw10013/remix-vite-cloudflare-auth-repro/blob/b30db7343c8c2ff4ce66ef64c2d1442082a3e45c/app/auth/auth.ts#L7 ```ts const secret = process.env.COOKIE_SECRET || "default"; ``` Cloudflare runtime does not have `process.env` so you'll need to follow the Cloudflare way for environment variables: https://developers.cloudflare.com/workers/configuration/environment-variables/ Since it's a...

Note that converting the `sql` to `query` and putting that into D1 batch directly and not via drizzle works. ```ts const sqliteDialect = new SQLiteSyncDialect(); const upsertQuery = sqliteDialect.sqlToQuery(upsertSql); const...

@dario-piotrowicz : I tried the PR prerelease and it works perfectly for my use case. World class typing. Thanks!

I'm sending a fair amount of events to a slow osc server. The events are processed out of real time and just need to be in order. In the previous...

Still seeing this behavior with drizzle-orm 0.33.0 and latest version of wrangler.

Use case is to bring in intentui form components incrementally. And then expand from there.

@johtso I'm still a newbie at effect and cloudflare and you seem further along. I just used the pathological type assertion to get going with a proof-of-concept (POC) integrating effect...