Charles Xu

Results 26 comments of Charles Xu

@gclxry Given that the UC browser has a certain market share in the global market, will the UC team be willing to submit a PR to this repo? It is...

附录视频作为参考 [Philip Roberts: What the heck is the event loop anyway? | JSConf EU 2014](https://www.youtube.com/watch?v=8aGhZQkoFbQ&feature=youtu.be)

Update: forget it, I search the [BrowserFetcher.ts](https://github.com/lucacasonato/deno-puppeteer/blob/main/src/deno/BrowserFetcher.ts),it is old or has been modified, the variable `PUPPETEER_EXPERIMENTAL_CHROMIUM_MAC_ARM` does not exist ---- @mjarkk I found this `PUPPETEER_EXPERIMENTAL_CHROMIUM_MAC_ARM` env variable in the [v14...

Update: [email protected] and [email protected] works --- The same problem here: ```js import { bundle } from "https://deno.land/x/[email protected]/mod.ts"; const result = await bundle( "https://deno.land/[email protected]/collections/binary_heap.ts", ); console.log(result); ``` Output: ``` error: Uncaught...

The same `clone` issue also mentioned [here](https://github.com/denoland/deno_std/issues/2522#issuecomment-1214397443)

对于50题,补充了处理幂是负数的情况 ```js const myPow = function (x, n) { if (n == 0) return 1; if (n < 0) { return 1 / myPow(x, Math.abs(n)); } else if (n %...

刚搜到这个 Issue, [NSSpeechSynthesizer](https://developer.apple.com/documentation/appkit/nsspeechsynthesizer) 可以接入吗? 我发觉这个接口应该和快捷指令中的是类似的

感谢花时间调研 API,在 StackOverflow 上发现有人提了类似的[问题](https://stackoverflow.com/a/62017898/19868378),实现起来会有 Bug 或者需要不时杀掉进程,可以先关闭这个 Issue,以后有更好的解决办法再考虑集成

@wlingke You can try this fork if you want https://github.com/react-component/react-hammerjs

Certainly, from a maintainer's perspective, it is ideal to discover and resolve software compatibility issues as early as possible. I'm not sure about the user base of DietPi, but it's...