jeremyrsmith

Results 87 comments of jeremyrsmith

Hi @aaronclong, `Interpreter` is the abstraction you're looking for. It's an interface (https://github.com/polynote/polynote/blob/master/polynote-kernel/src/main/scala/polynote/kernel/interpreter/Interpreter.scala) that's used for both Scala and Python (and would be the way to add a new language)....

@aaronclong let me know if you want to collab on this at some point. I actually really want to have some example of a plugin-based language interpreter (especially one that...

@antonkulaga Doesn't your browser have a context menu "Save image"?

Hmm, I wonder if this is due to SVG being directly embedded into the document rather than in an `` tag? Maybe that would solve it? If so, I don't...

@rathboma Yep, we've seen this issue too. The underlying problem is that `bigint` (e.g. `Long`) data types have a workaround so that they work in the plot editor, but that...

(the underlying problem being that 64-bit integers turn into `BigInt` on the browser-side, but Vega doesn't support those.)

`int8` is in fact 8-byte integer, which is a 64-bit integer. `mean` casts it to `float8`, because `mean` requires division.

@holdenk ARM has not even entered my radar at this point, TBH. Any help with this would be appreciated.

@zzeekk Thanks for taking a pass at this – I like the idea of configurable key bindings. I'm not sure whether they should be configured _for the whole server_ as...

I'm guessing this is because the height (based on width) doesn't get calculated until later. And we either don't get an event for it, or we're not listening to the...