Jake Teton-Landis

Results 129 comments of Jake Teton-Landis

Ok, that makes sense. I only expected “pause during rebalance_cb” to work because a Confluence support engineer suggested it. Maybe I misunderstood their guidance.

It would be good if the CKJS layer making this configuration transform also reported an error, rather than lowering a know-incorrect config to rdkafka which reports a nonsense error that...

Your bundler transpiled `import.meta.url` to `import_meta.url`, and this property isn't a valid URL. This property is supposed to give a URL (like file:// or http://) to the current file so...

quickjs itself provides functions to read and write bytecode, including function bytecode. This is used by the `qjsc` program to compile JS sources into bytecode that can be included in...

The type error is confusing because it seems like there are two copies of `@jitl/quickjs-ffi-types` at different locations inside `node_modules`: ``` 'import("/Users/project/node_modules/.pnpm/@[email protected]/node_modules/@jitl/quickjs-ffi-types/dist/index").QuickJSAsyncVariant' 'import("/Users/project/node_modules/ @jitl/quickjs-ffi-types/dist/index").QuickJSAsyncVariant' ``` Is it possible there are...

Module evaluation always returns a module or a promise of a module. You will need to set a global variable you can read later, call an injected callback function, or...

Unfortunately there’s plenty of user-agent differences that you cannot reasonably detect by feature sniffing. We’ve often used user-agent logic to work around bugs or normalize rendering across browsers. Examples: -...