Marco Cilloni
Marco Cilloni
Both perl and sed support the \L and \U modifiers to convert a match to lowercase or uppercase respectively: ``` $ echo 'cat dog cow' | sed 's/\(dog\)/\U\1/' cat DOG...
The Makefile [hardcodes](https://github.com/Microsoft/ProcDump-for-Linux/blob/7efe055198799e4c8640c433310e0b51dd9c1586/Makefile#L2) the CC variable as `CC=gcc`, forcing users to comment it out in case they want to use clang/a different version of gcc. It would be wiser IMHO...
### Describe the bug I've noticed that MSVC (both ARM and X64) does not build cleanly whenever `threads.h` is included (with the `/std:c11` flag on): ```c #include #include #include thread_local...
The protobuf main repository now includes [a php implementation](https://github.com/google/protobuf/tree/master/php). Does that make this repository obsolete? Is that implementation still unfeasible to be used with gRPC, given that both Docker images...