Marc Rousavy
Marc Rousavy
Hi! Sorry for the delay, been really busy with RNEU. That crash seems really weird, I'll take a look. Thanks for the report! 🖤
does that crash happen 100% of the time or just sometimes?
Resources: * [react-native-macos getting started](https://microsoft.github.io/react-native-windows/docs/rnm-getting-started) * [react-native-webview](https://github.com/react-native-community/react-native-webview) for example usage with iOS code sharing * [reactnative.directory filtered by libraries with macos support](https://reactnative.directory/?macos=true)
Progress is on the [support-macos branch](https://github.com/mrousavy/react-native-blurhash/tree/support-macos). ⌛
Would make a lot more sense to provide this extension via **Homebrew**, since it's also not available in my Store (Austria). Also it's a lot more convenient to use Homebrew...
For example, for `atob` and `btoa` this JSI library by @craftzdog is 4x faster than base64-js: https://github.com/craftzdog/react-native-quick-base64
~~I'd love to make the pbkdf2 function asynchronous (run the algorithm on a separate Thread, return a Promise) to not block the entire JS interaction (pressing buttons, updating loading percentage,...
I did it. @zemse @mirceanis @ricmoo how do I swap the pbkdf2 function? The one from this library takes **14 seconds**: ``` ether's pbkdf2 took 14279.91887497902ms ``` and my pure...
So I patched `@ethersproject/pbkdf2/lib/browser-pbkdf2.js` to use my custom C++ implementation instead of the JS one, and here's the results: ### Before ``` 💰 Importing wallet from phrase: .... 💰 Successfully...
I'll try to play with resolutions too, right now I have used `patch-package` to locally patch it - quick and dirty but it works. Since getting the wallet still takes...