William Wolf

Results 20 comments of William Wolf

I think an underrated reason to port to TypeScript is that it could make contributing back to Mosaic easier for the uninitiated like myself. Currently, reading the code involves jumping...

We could also improve the [toNumber type coercion function](https://vega.github.io/vega/docs/expressions/#toNumber) ([source](https://github.com/vega/vega/blob/938abf2d7226302ebec2dc4e74bc363d0e271c6b/packages/vega-util/src/toNumber.js#L2)) to use `Number(_)` instead of `+_` for casting (which isn't currently and [will likely never be](https://github.com/tc39/proposal-bigint/blob/master/ADVANCED.md#dont-break-asmjs) supported for BigInt). obviously...

I'm not sure I understand what you mean by "faceting into columns". If I understand correctly, you just want to make sure this only applies when the `row` _xor_ `column`...

@alexeypetrushin yep. this issue outlines how the fix would work. you can go ahead and take it on, since this has fallen in priority for my use case.

Yep, will prioritize this. Thanks @grauscher!!!

The practical implications for color encoding are a fine reason to keep the ordinal type, but is there a reason to keep ordinal and not add a ratio/interval distinction or...

> That said, the mark-level interactive property does support signals, so libraries like VL that generate Vega specs could in theory modulate the interactive state of the brush (and thus...

Because Vega supports both SSR and client-side rendering, I assume everything before the [renderModule](https://github.com/vega/vega/blob/master/packages/vega-scenegraph/src/modules.js) function in vega-scenegraph must be pure enough to run in a worker or node process. So,...

Is it feasible to extend this so that mem0 might have access to the resourceId and threadId much like MastraMemory does?

wow, I totally [missed this](https://github.com/mastra-ai/mastra/blob/main/packages/core/src/action/index.ts#L26). it would be cool if we could access the `agentId` too. Need to [update the docs](https://mastra.ai/en/reference/tools/create-tool) ;) I couldn't find this at 3am, so I...