Maximilian Knespel

Results 234 comments of Maximilian Knespel

I think we discussed this via chat and pragzip as a backend did indeed help. It can be used with ratarmount 0.12.0 via `--use-backend pragzip`.

> Im wondering if there is some tty detection or similar going on in the fuse lib, and whether there is a way to force return/backgrounding Note that your example...

> @iliatimofeev Do you know an alternative for linux? I would try `sudo apt install unrar` or `sudo apt install libarchive-tools`.

The fuse mount does not seem to work at all for files that do not have any prefix. I.e., the `bar` above. ```bash echo foo > bar echo foo >...

For testing, you can install [miniconda](https://docs.conda.io/en/latest/miniconda.html). The `~/.condarc` file is created by `conda config`. E.g., try: ```console > conda config --show-source ==> /home/user/.condarc mkdir $XDG_CONFIG_HOME/conda > cp ~/.condarc "$XDG_CONFIG_HOME/conda/condarc" >...

I don't think inlining works transparently here, because we need to have `acc` as a parameter.

Hi, I'm chiming in because I want to implement many of the stated index improvement ideas in https://github.com/mxmlnkn/rapidgzip/issues/17. > Reading through [DEFLATE RFC section 3.2](https://www.rfc-editor.org/rfc/rfc1951#section-3.2) it appears that there are...

So if I understand this correctly, for your use case, it would already suffice to simply compress the whole index file (with gzip or zstd etc.) because you can decompress...

Thanks for your input. I also did a quick check that implements the "count the actually used window symbols". Assuming there are no errors in the code, the results look...

I did a quick check with a local installation of PyPy 7.3.9 and found that it is almost twice as slow as CPython 3.11 for my use case. So, feel...