Max Seiden
Max Seiden
The `rustc_serialize` library has a streaming / token-based parser, which can be used in advanced applications to implement very efficient json extraction while keeping the memory overhead of the parsing...
As it stands, each single boolean value requires a full byte in the backing array; this is not very compact and could be addressed by adding a BITSET (boolean array)...
We are seeing the following error bubble up on occasion. It looks like it's coming from the `ocsp` library that y'all are using. ``` ERROR: [9:34:45.3445 AM]: OCSP validation failed:...
Currently, the internals assume that the pixel sorting happens row-by-row, where each line has no notion of the other lines. This does create interesting results, however there are certainly other...
As of the time of writing, I have not tested error handling with regards to file IO. It's probably pretty bad. Ideally, the program should fail in predictable and helpful...
In line with adding more CLI arguments and flags, it would be good to use an actual library. Getopts seems like an obvious choice.
The title captures this one pretty well. There should be CLI options for the thresholds, rather than hard coded values.
The project was written with C in mind, however in my haste of trying to get it pushed up to Github, I cut some corners and used C++ niceties. Given...
As the internals change and expand to support new algorithms, it is imperative that we have regression testing for all prior algorithms. This should take the form of "gold-standard" style...