Doug Stevenson

Results 50 comments of Doug Stevenson

Also noting here that these lines of code: https://github.com/chiselstrike/turso-cli/blob/main/internal/cmd/db_shell.go#L148-L150 Likely allow invalid hostnames that contain a suffix of an existing database hostname. For example a database with hostname, `foo.turso.io` receives...

There was a conversation where alternative command names were proposed (`hints` is not very descriptive). One option is `db inspect traffic` (while also moving the current `db inspect` to `db...

See also: https://github.com/libsql/libsql-client-ts/issues/92

@penberg is there something in SQLite that documents this inherited behavior, or is this all just assumed to be understood?

@honzasp and I discussed that BigInts are in no way "normal" for JS devs to deal with, and would likely cause more troubles than problems solved if they were the...

One thing we need to decide is if we do user record management or not. Our current NextAuth system attempts to do so, but It will be much easier for...

@rstz This dataset is culled from an entirely customized set of processes, stored in a sqlite database (50M) on my machine and trimmed down to core features by other custom...

@rstz Here's a simple repro. When NUM_ROWS=100, the warning messages happen only very rarely. Set it to 200 to get consistent warning. Set to 20000 to get a crash. Reduce...

@exaby73 No, it doesn't work because `corsOrigin.value()` gets executed at load time time (before the value is known), not at runtime when the function is invoked. The `value()` function only...

I have a fix for this in a fork. It attempts to "push down" an `isEmulator` flag whenever possible to instruct classes to use the emulator, except for one case...