Gary Tierney

Results 47 comments of Gary Tierney

Hi @workergnome, The included Dockerfile is built into a container image by Maven at build time, so running `mvn package` should produce a container image locally named 'dlcs/elucidate-server' tagged with...

Hi @jpadfield, there is a syntax error in one of the SQL scripts that is fixed and merged, but yet to be released. It's likely the one here that you...

Hi @jpadfield, You'll want to change the `base.scheme`, `base.path`, `base.port`, and `base.host` parameters in `elucidate-server.properties` to point at your own web-server. E.g., ```properties base.scheme=http base.host=localhost base.port=8080 base.path=/annotation ```

Hi @atomotic, Could you please attach the stacktrace and any additional info for that Maven run? You can re-run using `mvn -e -X package` to get the complete error information....

Hi! I've had a go at this following the instructions above (installed the BPF drivers from `udev-hid-bpf`, setup `udev` to run `huion-switcher` and put my device into vendor mode, and...

> I have some concerns about whether this is the right direction. The approach introduces an additional copy. That is simply a limitation of the `bus` API in use. Replacing...

Working on replacing the bus with a ring buffer that eliminates the copies now. I think we can get away with very little ato mic usage on x64, references: -...

> At this point, I'm unsure if the write_npz method needs to be included in the library. Would it be sufficient to implement this method within the benchmark code, or...

Oops, few `todo!()`s left in there. Will fix those.

Yes, I think we can start by testing that the `ProcessorState` is correctly doing what `process_data()` was doing previously. From there I think we can write some more tests now...