Charles Duffy

Results 71 issues of Charles Duffy

`ENOSYS` and `EBADF` are both handled in the pathfs `GetAttr` implementation, but the Linux-kernel NFS server can return `ESTALE` as well. This would explain `fi` not being set, and causing...

obsolete

Provides a means to get a seekable, incrementally-readable handle on each individual file, rather than requiring reads to be directly into memory. Always easier to discuss a concrete implementation. :)

Returning `[]byte`s means that tools using this library need to have enough memory available to store the data they're reading, even if the algorithms they're applying to that data would...

When given a public key created with the [`age-plugin-yubikey`](https://github.com/str4d/age-plugin-yubikey) plugin, agebox refuses to encrypt for it: ``` WARN[0000] Could not load public key: invalid public key key=keys/charles.age svc=storage.fs.KeyRepository version=0.6.1 ```...

This permits any user running NixOS to run `nix-build` to install all dependencies and build the local tree. Tested on NixOS 19.03.

Out-of-the-box, cljx auto does not provide a means of calling cljsbuild (once?) upon run. Some workflow or configuration for getting the effect of both "lein cljx auto" and "lein cljsbuild...

``` #!/usr/bin/env bash test ! "$@" && echo "Specify a key." && exit 1 KEYGRIPS="$(gpg --with-keygrip --list-secret-keys $@ | grep Keygrip | awk '{print $3}')" ``` Consider instead: ``` #!/usr/bin/env...

For installation performance (streaming one file being considerably faster than a multitude of little ones), I was intending to generate a .catar as part of my build process, archiving it...

RFE

I'm attempting to extract content with both a local store and a remote extra store. Thus, usage looks something like: ``` casync extract \ --store=/local/path \ --extra-store=server:/remote/path \ test-blob.caibx \...

Right now, one can't unpack an archive into a tree with preexisting mount points unless every such mount point has at least one file in the archive, or `--delete` is...