Results 34 comments of Shun Sakai

I think it would be better to add `curl(1)` and `http(1)` to the SEE ALSO. 1. `xh` has `--curl` flag, so it is useful to be able to see curl's...

@sharkdp I think it can be solved by including the generated file in the repo. This makes both maintainability and portability.

Implemented Camellia in #293.

I tried to implement this feature, but there are some issues such as the need to set `RUSTFLAGS='--cfg reqwest_unstable'` environment variable, so I think it's better to implement this feature...

このリポジトリが提供するものは画像ファイルであり、スクリプトなどで生成できる種類の画像でもないので、画像ファイルはバージョン管理の対象に含めたままの方が良いと思います。 リポジトリの肥大化を抑えるにはWebPなどのPNGよりはファイルサイズが小さくなるファイルフォーマットに変更すれば良いかもしれません。 e1cf3d2 の時点では全てのPNG画像が32ビットRGBA形式なようなのでWebPに可逆圧縮できるはずです。

Hi. I created a [package](https://pkg.go.dev/github.com/sorairolake/lzip-go) which supports reading and writing lzip compressed streams using the [`github.com/ulikunitz/xz/lzma`](https://pkg.go.dev/github.com/ulikunitz/xz/lzma) package.

@ulikunitz At the moment, is it possible to set the match length limit for `lzma.Writer` when compressing? The dictionary size and this are used to set the compression level of...

I think it would be useful to be able to also generate documentation which doesn't include binary files (`main.wasm` and `sources.tar`) if possible. This should help reduce the repository size...

I think this can be resolved by making the following changes when bumping the version (e.g., at 23659dc): ```diff diff --git a/CMakeLists.txt b/CMakeLists.txt index cb24d6f..82780ed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt...

I think it would be useful to have an initialization macro for `DateTime`. ```rs // DateTime datetime!(2023-09-08 7:03:25Z); // DateTime datetime!(2023-09-08 7:03:25+00:00); ```