Samuel Laurén

Results 10 issues of Samuel Laurén

This patch adds support for storing encryption keys on external devices. It's fairly trivial and seems to work for me, but I haven't done extensive testing.

Currently, the save to selection functionality does not support very large data transfers. This is likely not too critical for xcolor's use case as color representations tend to be small...

It would be really cool to better test xcolor in the CI. Currently, we only have unit tests for the parsing code but do not test X11 related code. We...

https://github.com/KVM-VMI/kvm-vmi/blob/efd07d68b7527e7602cee9a8c89bbe2bdd4639f0/vagrant/provision_full/libkvmi.yml#L15 Is this correct? By looking at [Makefile](https://github.com/KVM-VMI/kvm/blob/kvmi/tools/kvm/kvmi/Makefile) it seems that libkvmi.so is not created in the `kvmi` directory but inside `host` and `sva` sub-directories.

I created this ticket for brainstorming how Nitro could be used and what kind of APIs would be needed to support these use cases. The use cases could be low-level...

Currently, the code in `Backend` [dispatch_hook](https://github.com/KVM-VMI/nitro/blob/master/nitro/backends/backend.py#L29) is kind of messy. I guess it made sense when there was only a single back end. To be more specific, I would like...

Nitro is currently lacking in documentation, this should be improved. I am creating this issue to track the progress of documentation project. As of what the documentation should contain, as...

Today, Nitro's back ends rely on libvmi configuration files being present. The configuration file paths are not specified explicitly but instead the config file is found by checking a list...

I've been thinking that the core of Nitro API could be structured to be more pipeline-oriented. Previously, we were discussing what information backends should extract and what should their responsibilities...

Currently, Nitro backends simply clear all libvmi's caches to avoid possible inconsistencies. However, this has possible performance implications since we need to do more work at each incoming event. I...