Results 9 comments of Zoey Li

transformIgnorePatterns did not work for me. Had to use: moduleNameMapper: { "jsoneditor-react": a file with empty stub }

@dmfolgado you can either use the built-in "Sphereize data" option or normalize the embedding yourself. I think all you need to make sure each one is a unit vector in...

@cannoneyed a bit late to the party. I found a way to get UMAP to work without blocking the main thread by simply relying on [Asynchronous fitting](https://github.com/PAIR-code/umap-js/blob/main/README.md#asynchronous-fitting). However I am...

Thanks @NeilFraser! I've updated the PR with some simplifications to only execute code in a worker. I will see if I can draft something up regarding instructions and send it...

minimum node version for [webpack 5](https://webpack.js.org/migrate/5/#preparations) which dev-script uses is 10.13 so IMO it should at least that. But Node 16 is out of maintenance so I would prefer if...

Currently the [blockly-scripts build](https://github.com/google/blockly-samples/blob/a63b0a244ff57287d09cb81f49c8bbcc01bb5141/plugins/dev-scripts/config/webpack.config.js#L121) step forces a eslint check with `@blockly/eslint-config`

does it work if you call `Blockly.ContextMenuRegistry.registry.unregister('blockCopyToStorage');` in place of `plugin.dispose()`

Thanks Bart! =) The typescript declarations are fairly straightforward I think, you can a new function declaration [here](https://github.com/google/blockly-samples/blob/master/plugins/cross-tab-copy-paste/src/index.d.ts): ``` dispose(): void; ``` I took a look at `CrossTabCopyPaste` and suspect...

@bileschi thanks for taking a look! yes firefox worked great on M1 Mac Pro and computing knn using tensorflow.js via GPU greatly speedup the process (40% speedup from 25s to...