Feng Yu

Results 225 comments of Feng Yu

OK. If I have enough time, I will give a try.

Thanks @bherila . But it seems a little inefficient and complex. I have to handle all of the output file names manually. I wish guetzli could support: guetzli **/*.png :)

I've found a good method to do batch compress on bash. find -name '*.png' -print0 | xargs -0 -I{} -P0 guetzli --verbose --quality 85 {} {}.jpg This command uses `xargs`...

@FrankDraws I don't find any good ways to use variables in `xargs`. I have to use `echo | sed` to replace the suffix `.png` to `.jpg`. find -name '*.png' -print0...

From: https://github.com/linuxdeploy/linuxdeploy-plugin-qt/issues/81 I'm running the latest Continuous build on Ubuntu 16.04 docker container. Here is the github action log: https://github.com/abcfy2/qBittorrent-Enhanced-Edition/runs/1546180473?check_suite_focus=true And here is the terminal output: ```txt linuxdeploy version 1-alpha...

不知道是否可以考虑拦截到的时候先不要着急交给AriaNG,而是弹出像截图那样的对话框,可以再次做某些调整呢?

I'm using grails 3.3.6 with hibernate 5.2.17.final. I find that if `beforeInsert` returns `false`, the `dateCreated` will throw `NPE`: ``` def beforeInsert() { return false } ``` ``` java.lang.NullPointerException: Cannot...

Sorry, but it's still blocked. ``` # curl -Lv --compressed https://front-frt.flathub.org/repo * Trying 45.79.93.189... * TCP_NODELAY set * connect to 45.79.93.189 port 443 failed: Connection timed out * Failed to...

And also, I think the most simple way is support mirror site. Like [Gitlab-CE](https://about.gitlab.com/install/). There are so many mirror sites in China. If flathub support mirror site, I think many...