Results 12 comments of Aero

我可能搞错了,但是我觉得以下这个代码片段 ``` /* part 1 */ function a() { a = 1; console.log("a1:", a); }; /* part 2 */ function a() { a = 2; console.log("a1:", a); }; a(); console.log("a2:",...

对于从无到有的数据,update的方法其实慢于setData,不精确的测试的结果是大概170ms vs 200ms这样。

setData 还是可以写成同步的,利用regeneratorRuntime可以这样写: ``` setDataSync = async (obj) => { const that = this return await new Promise(resolve => that.setData(obj, resolve) ) } ```

Note if I run `proxychains4 curl google.com` similar error would not occur.

@Menci i think workerize would create the default for you, and the module u will be importing is really imported to a workerize module as its functions but not directly...

I also ran into this issue. `Instagram authentication failed (challenge required erro)` from `Instagram.auth('username', 'password')`

Which version are you testing with? Mine doesn't even load the steps from Alipay...

> > @shuosiw, [scrcpy v2.0](https://github.com/Coool/scrcpy-macOS-Binaries/releases/tag/v2.0) for macOS. > > P.S. Report on which macOS version binary is working! > > Please update to v2.2 or refer to the provided tutorial...

I can get it to run on TPU VM but it's very slow.

> Can it support Google TPU(like Google Colab) i looked into the source code it looks like it would take a massive effort to support TPU. First we need custom...