Mathias Lafeldt

Results 121 comments of Mathias Lafeldt

Looks like I could also use https://github.com/standard-webhooks/standard-webhooks/tree/main/libraries/javascript as a lightweight alternative. However, it expects different non-branded headers... Update: This works perfectly fine. ```ts // Map unbranded webhook headers to Svix...

I tried this again today because I was excited to see Clerk adding a `verifyWebhook` helper to their Astro package: https://github.com/clerk/javascript/blob/main/packages/astro/CHANGELOG.md#250 The bundle size situation has improved, but it's still...

Looks like a memory exhaustion issue during compilation. 2GB RAM is insufficient for compiling DuckDB's C++ source code. Possible solutions: a) use a beefier machine with more RAM (see #99)...

That's a known limitation. Please use one of the `query_*` methods with `RETURNING`. See the tests in #597 for some examples.

I already found one complication: `v8_enable_sandbox` requires `v8_enable_pointer_compression`, which was disabled in #1302 due to a mem leak. ```diff diff --git .gn .gn index f7097dd..0c1f746 100644 --- .gn +++ .gn...

duckdb-rs supports `NaiveDate` and friends natively with the `chrono` feature enabled, see the tests in https://github.com/duckdb/duckdb-rs/blob/main/crates/duckdb/src/types/chrono.rs > This information should at least be mentioned in the documentation: https://docs.rs/duckdb/latest/duckdb/types/enum.Value.html#variant.Date32 Agreed.

@fabioarnold I was excited about this change and tried it with Zig 0.14.0. However, it seems that I'm holding it wrong. ``` .duckdb_cli_1_2_1 = .{ .url = "https://github.com/duckdb/duckdb/releases/download/v1.2.1/duckdb_cli-osx-universal.zip", .hash =...

Could this be an endianess problem? ``` ❯ xxd /Users/mathias/.cache/zig/p/N-V-__8AAKDAHwa3isStyx3RY4D3NzBMIEdXJyQsBB67L4AG/duckdb | head -n1 00000000: cafe babe 0000 0002 0100 0007 0000 0003 ................ ``` This seems to match `FAT_CIGAM` but...

@owenbrooks Yeah, thanks. Opened a new PR: #23193