Paul Draper

Results 263 comments of Paul Draper

> I got bit by this today too. It is not just from glob, it happens with explicit paths to directories as well. Correct. `glob()` simply returns a list of...

@cameron-martin , yes. This is what I meant when I said > This [affects] directory expansion in args as well.

#814 https://github.com/microsoft/clarity/commit/4344e2cecea5617b16bc7347332dddf11a9f0ea3 @ender336

@yehuda-MoonShot I believe that means that the clarity.ms URL is not using the latest version anymore.

A workaround is to remove the runner through the GitHub API. If the runner is busy, the call fails. If it not busy, the runner is removed, and the process...

The workaround is to add a noop flag. The one that I use: ``` common:myconfig --announcerc=false ```

@acao What does it take? --- There's no way there's an assumption that there is only ever one GraphQL schema in all of existence..... Lots of APIs, lots of GraphQL...

A command line with several thousand arguments. (Can be *really* long if `@flagfile` is used.) ```sh ./compiler.js --src=src1.js --src=src2.js --src=src3.js ... output ``` For years, I've been curious why a...

> copying the list of every item takes below 100ms The performance problem definitely appears. ```js const { ArgumentParser } = require("argparse"); const parser = new ArgumentParser({ description: "Test", fromfile_prefix_chars:...