Chris Vest

Results 15 issues of Chris Vest

If we're pooling network connections, and a sysadmin wants to change the topology, e.g. to do a graceful fail-over, then he'd like a way to close and reopen all the...

feature

Expose an explicit BackgroundProcess, which will be in charge of allocating background allocation threads, and other background threads, such as the time keeper proposed in #92. The BackgroundProcess would be...

performance

It's not entirely clear what this means, precisely. Something already exists for this use case, which may provide inspiration: https://github.com/madsen/vbindiff Best bet is probably the Myers diff algorithm, or a...

We need `fseek(3)` for navigating, so we'll probably have to pipe the data into a temporary file and open a hex view on that. Can we move data lazily as...

Clipboard integrations: * https://github.com/aweinstock314/rust-clipboard/pull/65 * https://github.com/YaLTeR/wl-clipboard-rs * https://github.com/quininer/x11-clipboard

Should bookmarks be per file, or is it more useful to be able to jump between files?

I had the following method: ```java private boolean useIpv6(InetAddress address) { … } ``` and changed it to ```java protected final boolean useIpv6(InetAddress address) { … } ``` which produced...

This PR is using #312 as a base line. Work harder, @nitsanw 😛 This is not yet ready to merge, I think. But it is ready for discussing the API....

The WFIStack is added to the set of experimental data structures. This data structure has, from experience, proven useful for implementing a number of other concurrency primitives. Let me know...

The javadoclet APIs changed a lot in Java 9. And is now much more locked down. Adding support (in this case for Java 11) for asciidoclet unfortunately requires a lot...