Jan Misker

Results 51 comments of Jan Misker

A very hacky workaround I found: 1. Run parcel with `--no-cache`, and 2. Whenever the locally linked packaged changes, save `package.json` to trigger a rebuild But I definitely agree that...

I encountered the same problem, and did some step-debugging. I found a difference in the `onDOMBeforeInput` that when a alphabet value is inserted, the flow https://github.com/ianstormtaylor/slate/blob/20acca4bc8f31bd1aa6fbca2c49aaae5f31cadfe/packages/slate-react/src/components/editable.tsx#L514 goes in the `native...

You can also get the duration if you assign the mediaBlobUrl to an `` or `` element, I used [react-use/useAudio](https://github.com/streamich/react-use/blob/master/docs/useAudio.md) for this.

Sure makes sense, good to have the list. I'll have a look. I only saw svg.select.js and that is still 'old style' it seems, even though compatible with 3.0?

How about this? I took _inspiration_ for the package.json, rollup config and eslint config from svg.draggable.js. Also I got rid of the draw.extend because I didn't really see how to...

I just found out about the awesome svg.js tools a couple of days ago, so still figuring out how stuff exactly works. I suppose the release notes are best way...

Did you see I made the changes? And just wondering: how are you thinking to re-implement the extension? I'm thinking there could be more integrating between the draw, select and...

I really like the plugin structure that allows me to draw anything I can `SVG.invent`, for example things with paths. See [here for an example](https://gist.github.com/JanMisker/6e084e398490318080c1ed8359a5498d) (not 100% sure that gist...

hey @mindok and @Bernix01, thanks for the kinds words ;) I use standard svg.js but modified plugins. I must admit that after I got things working for my project I...

@thegnuu Looks interesting! The samples provided in the MLKit docs are already pretty close to what the plugin should provide, so indeed should be pretty doable to implement a PoC.