This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Safari 常用扩展 | |
| ## QR Coder | |
| https://extensions.apple.com/details/?id=com.sonicbunny.qrcoder-V9VQ2RXE25 | |
| ## Adblock Plus | |
| https://extensions.apple.com/details/?id=org.adblockplus.adblockplussafari-GRYYZR985A | |
| https://extensions.apple.com/details/?id=com.ideashower.pocket.safari-ET279A6R5N |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Usage: | |
| # curl https://raw.githubusercontent.com/linhua55/lkl_study/master/get-rinetd.sh | bash | |
| export RINET_URL="https://github.com/linhua55/lkl_study/releases/download/v1.2/rinetd_bbr" | |
| if [ "$(id -u)" != "0" ]; then | |
| echo "ERROR: Please run as root" | |
| exit 1 | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker run \ | |
| --name v2ray \ | |
| --restart=always \ | |
| -p 10000:10000 \ | |
| -v /home/wwwroot/docker/v2ray/data:/etc/v2ray \ | |
| -d teddysun/v2ray |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker run \ | |
| --name whoogle-search \ | |
| --restart=always \ | |
| -p 5000:5000 \ | |
| -e WHOOGLE_CONFIG_COUNTRY=CN \ | |
| -e WHOOGLE_CONFIG_NEAR=beijing \ | |
| -e WHOOGLE_CONFIG_LANGUAGE=lang_zh-CN \ | |
| -e WHOOGLE_RESULTS_PER_PAGE=20 \ | |
| -e WHOOGLE_AUTOCOMPLETE=1 \ | |
| -d benbusby/whoogle-search:latest |