Tim Radvan

Results 137 comments of Tim Radvan

Updating the locales didn't help; I'm not detecting any changes since the last time we did this :thinking: But! I think I've found the bug: we're incorrectly using e.g. `SENSING_OF_SIZE`...

Ooh, you're both right! Exporting the CSS styles as `.sb3-…` rather than `svg .sb3…` seems to make these graphic editors much happier with the styling of our SVGs. I don't...

I think we have to avoid relying on the CSS cascade at all. Moving the style class from the root `svg` element, to an inner `g` element -- like below...

Interesting! I don't think there's a problem with using CSS classes here. It's probably cleaner — and it should mean people can edit the colours in an editor, if they...

I'm not able to look into this in detail, and I don't have all the context, but I may be able to offer a hint. scratchblocks does a couple of...

I'm very glad to hear that! :blush:

Your encoders aren't quite right. They should take a piece of parse tree and return a list, if I remember correctly: ``` x => { return [":", x.recordId, ":", x.content]...

I think `nearley-reverse` is supposed to be used with a tokenizer, yes. If you really need EBNF modifiers, you can always write them yourself, e.g. `A -> B:+` becomes ```...

Thank you :pray: I don't think that will ever happen unfortunately, it would be a tremendous amount of work!

> should I make a pull request? Yes please! Nice find, too, thank you!