Mingye Wang

Results 347 comments of Mingye Wang

I seem to have worked on the `#{num}` thing for a while at https://github.com/Artoria2e5/gpp/tree/var, but there's no way I have tested it. I have no idea what got into my...

The fix for #26 seems to have broken some formatting. Might be a good idea to save up the command.

Could using `ld.lld` (`-fuse-ld=lld`) help too? They seem to have always handled that sort of stuff ([even for static libs](https://reviews.llvm.org/D43786)) without issue, and it's a faster linker anyways. If LLVM...

`thefuck` actually has a long way to go regarding whitespace/metachar-safety. Take 237f43e as an example (I found the cd issue when searching for 'whitespace' in issues to make sure that...

And who came up with the idea of committing built stuff to master anyways?

The failures are mainly due to new eslint rules being enabled. Confirm that you want these things fixed. (No false positives, so I guess it should be a go.)

We need to do an `open` first per nodejs/node#26936. Amending. For the record, this one is possibly due to this part in [`copyfile`]( https://opensource.apple.com/source/copyfile/copyfile-146.250.1/copyfile.c.auto.html): `if(chmod(s->dst, (s->sb.st_mode | S_IWUSR) & ~S_IFMT)...

fstat is not the best idea because ACL is a thing on macOS. The correct way to do so is via the access(2) family of APIs, but macOS does not...

Hmm, looks like there is faccessat(2) on macOS >= 10.10. What's the OS support policy for libuv and nodejs? (Looks like I can do that for node, which only supports...