Matthew Tingum

Results 27 comments of Matthew Tingum

Ah, I see this option now: ``` --savedir DIRECTORY, -s DIRECTORY save files in all volumes to the specified directory ``` Maybe a simple README update is in order.

I have opened a pull request that updates the README. Still, extracting a single file is not particularly convenient. Consider making the cat option only output file contents to stdout....

I guess it bothers me that the import is inlined in the function too. Maybe we could discuss changing that?

I'm getting the same error when attempting to install `antlr_python_runtime-3.1.3.tar.gz`.: ```sh $ pip install http://www.antlr3.org/download/Python/antlr_python_runtime-3.1.3.tar.gz Collecting http://www.antlr3.org/download/Python/antlr_python_runtime-3.1.3.tar.gz Downloading http://www.antlr3.org/download/Python/antlr_python_runtime-3.1.3.tar.gz (76 kB) |████████████████████████████████| 76 kB 936 kB/s ERROR: Command errored out...

Xrefing #66 #71 and #76 for the people coming from search engines.

Interesting. I didn't know that. I'm a little confused about what > server-side source code means. To pedantically describe my view: - I'm talking about a server that can speak...

Interesting. From that diagram, it looks like we just talk some HDT protocol at the end of the day. The only thing that locks one out is the lack of...

The example is just showing that the new `ExAllocatePool2` function zeros the memory [for you](https://docs.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/nf-wdm-exallocatepool2#remarks). > Memory is zero initialized unless POOL_FLAG_UNINITIALIZED is specified. The docs for `ExAllocatePool2` also say:...

I'll put in a PR for this. My biggest concern is breaking existing workflows. The READAME states that this project is not production ready. There are tags and releases in...

> !!! and i didnt replace ExAllocatePoolWithTag with ExAllocatePool2, > instead i turn off 'treat warnings as errors'... This isn't surprising..... Deprecation of APIs generally involves deterrence of usage in...