Results 5 issues of Thomas Roth

Hi! Thanks a lot for this awesome implementation! What license is the source-code under? Thanks, Thomas

Hello, The load_imgs function, used in https://github.com/kevinhughes27/TensorKart/commit/6ab288dbf59add326c7ecfbf426e38d21c685f37, is missing from the codebase :) Thanks for this awesome project!

# What's new The dictionary attack re-activated the tag more often than is necessary - this patch improves on that. # Verification I compared behavior with multiple different cards (some...

nprintf does not check bounds of its buffer. Example code: ``` char *testbuf = calloc(1, sizeof(char) * 1000001); memset(testbuf, 'A', 1000000); printf("Testbuf len: %ld\n", strlen(testbuf)); nprintf(client, testbuf); ```

After having a quick look at the code I think you should put a big warning on the README that this code is not at all ready for anything that...