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
weekly.caixin.com##.xiangguan | |
weekly.caixin.com##.f_ri | |
weekly.caixin.com##.weixinmedia | |
weekly.caixin.com##.rssBox | |
weekly.caixin.com##.funcri01 | |
weekly.caixin.com##.fenxiangRig | |
weekly.caixin.com##.conri | |
weekly.caixin.com##.fenghui_code | |
weekly.caixin.com##.multimedia | |
weekly.caixin.com##.copyright |
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
// 手机一键登录SDK(流量认证) | |
// ref: https://docs.geetest.com/onelogin/deploy/miniapp | |
// Updated at: Mar 3, 2021 | |
// 感谢某不知名群友… | |
// 运营商流量认证服务 | |
DOMAIN-SUFFIX,nishub1.10010.com,REJECT // 联通 | |
DOMAIN-SUFFIX,opencloud.wostore.cn,REJECT // 联通 | |
DOMAIN-SUFFIX,cmpassport.com,REJECT // 移动 | |
DOMAIN-SUFFIX,id6.me,REJECT // 电信 |
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
#!/usr/bin/env python3 | |
import os | |
import sys | |
class BTFailure(Exception): | |
pass | |
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
for i in $( docker images --format "{{.Repository}}:{{.Tag}}" ) | |
do | |
docker pull $i | |
done | |
# or | |
# docker images --format "{{.Repository}}:{{.Tag}}" | xargs -L1 docker pull | |
docker image prune -f |
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
[Unit] | |
Description=rclone - rsync for cloud storage | |
Documentation=https://rclone.org/docs/ | |
After=network-online.target | |
Before=caddy.service | |
Wants=network-online.target systemd-networkd-wait-online.service | |
Requires=caddy.service | |
[Service] | |
Restart=on-abnormal |