Derek Zhu

Results 40 comments of Derek Zhu

also, while on this, can we also add an option to support headless login? although it might be technically difficult to achieve I was using it in a docker

我也是 休眠唤醒自动放歌哈哈

清空对应目录 > Mac OS: ~/Library/Application Support/ Windows: C:\Users\\AppData\Local\ Linux: ~/.config/ mac 平台下 = iease-music

I believe it is now 6.1

from what I understand, there's no easy way to work out the obfuscation, however, you can work around it by skipping decompiling resources with `-r ` when decompiling

it seems that the issue is that you can't have multiple versions side by side. would It be possible to make that happen?

I have ipv6 enabled, and I'd love to help, however, my knowledge regarding docker is rather limited alpine:latest doesn't seem to have ipv6 enabled by default, which is probably why...

also found some links that might be useful for future reference https://medium.com/@skleeschulte/how-to-enable-ipv6-for-docker-containers-on-ubuntu-18-04-c68394a219a2 https://docs.docker.com/network/network-tutorial-standalone/ https://docs.docker.com/network/bridge/#use-ipv6

1. update /etc/docker/daemon.json ``` { "ipv6": true, "fixed-cidr-v6": "fd00::/80" } ``` 2. system restart docker 3. check `docker network inspect bridge` "EnableIPv6": true 4. change docker-compose.yml to `network_mode: host` 5....