JuTemp

Results 4 comments of JuTemp

谢谢作者的回复 我把我的实现过程写下来 可以给别人看看 先把本项目git clone下来 进入文件夹内 根据[Makefile文件](https://github.com/enfein/mieru/blob/main/Makefile#L213C6-L213C114) 编译项目 只需要mita二进制文件就行 因为我运行在Alpine容器内 所有我添加里一个环境变量 `GOCC=musl-gcc` 也就是 ``` GOOS=linux GOARCH=amd64 CGO_ENABLED=0 GOCC=musl-gcc go build -ldflags="-s -w" -o mita-musl cmd/mita/mita.go ``` 然后将这个二进制文件放进Alpine容器内 Dockerfile: ``` FROM...

I'm writing related documents, but I encountered a problem. The downloaded dependencies cannot be cached. Here are the relevant files: ,github/workflows/caddy.yml: ``` on: - push permissions: contents: read packages: write...

[Shadowsocks-rust Config](https://github.com/shadowsocks/shadowsocks-rust?tab=readme-ov-file#getting-started) Here is my Shadowsocks-rust config file (desensitized) ```json { "servers": [ { "server": "0.0.0.0", "server_port": 23000, "password": "tCQVWysYldR8D4AkOf4AfGgmy1x9q2yoQJP/qYhjko8=", "method": "2022-blake3-chacha20-poly1305" }, { "server": "0.0.0.0", "server_port": 23001, "password": "BoJ+dzSxqQntCCpsgRGhPHlh4JvzV+m6H4VLf+dU/Ks=",...

@database64128 Thanks for your reply. I also want to ask a question. My judgment is that low-performance devices (mobile phones) use chacha20, and high-performance devices (computers) use aes. Is this...