Jhen-Jie Hong
Jhen-Jie Hong
I have signed the CLA!
I’ve been created a new package for testing and integrating into my projects. Also added exampletvos for testing easily: https://github.com/Shopify/react-native-skia/assets/3001525/2dd76e09-af62-48a3-9bc0-15df3a40d1d4 Most of examples are works well, but some problems: -...
## Result of Turbo Native Module (Debug mode) Hermes: ``` LOG Call to test took 154.2415769994259 milliseconds. (native: 109ms) LOG Call to test took 111.8033449947834 milliseconds. (native: 68ms) LOG Call...
I'm investigating a performance issue with Whisper tiny.en, and it looks like the performance is not as expected in the example. I quickly add log for `onnxruntime-react-native/lib/backend.ts`, this is the...
FYI: I found processor like [this part (WhisperFeatureExtractor)](https://github.com/xenova/transformers.js/blob/main/src/processors.js#L1113) is very slow on Hermes, changing to JSC speed things up.
Thanks! But it seems related to packager, not debugger. If you are use the official `http://localhost:8081/debugger-ui`, the problem will not be reproduced? Also, I can't reproduce the problem with same...
@smooJitter would be great if you can provide your React Native version, I'll try to reproduce. Also, I have https://github.com/facebook/react-native/issues/10927 for React Native ^0.37 (with Chrome debugger), I recommend use...
@peggyrayzis I recently tried with Chrome debugger, I can get the same error, just click `Product -> Clean` in Xcode then start rebuild, but it doesn't appear in the next...
Actually the error isn't directly related to debugger, just `client debugger-proxy`, we can tracking the [`webSocketProxy`](https://github.com/facebook/react-native/blob/master/local-cli/server/util/webSocketProxy.js#L51-L61) of RN packager, and [`RCTWebSocketExecutor`](https://github.com/facebook/react-native/blob/c5004d5dd087d851fce0e77f2c0496ab8496ccd0/Libraries/WebSocket/RCTWebSocketExecutor.m#L59) of iOS. It's hard to me because I no...
@Viral-Inc Thanks! Now I can reproduce the error by enable Hot Reloading in Expo project, but it actually got the same issue by using official debugger-ui page, and I can't...