This file contains 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/python3 | |
''' | |
同花顺自选股文件格式: | |
0000000: 0900 0721 3030 3039 3731 0711 3630 3036 ...!000971..6006 | |
0000010: 3738 0721 3030 3231 3134 0721 3030 3232 78.!002114.!0022 | |
0000020: 3336 0721 3330 3031 3034 0711 3630 3031 36.!300104..6001 | |
0000030: 3133 0711 3630 3033 3638 0711 3630 3032 13..600368..6002 | |
0000040: 3030 0711 3630 3030 3630 0a 00..600060. |
This file contains 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 | |
apply_mangle() { | |
ip rule add fwmark 1 table 100 | |
ip route add local 0.0.0.0/0 dev lo table 100 | |
iptables -t mangle -N V2RAY_MASK | |
iptables -t mangle -A V2RAY_MASK -m set --match-set white_list dst -j RETURN | |
iptables -t mangle -A V2RAY_MASK -p udp -m multiport --ports 53,67:68,135:139 -j RETURN |
This file contains 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
StatsService API获得数据统计功能,配置里面必须满足以下条件 | |
1. `"stats":{}`对象的存在 | |
2. `"api"`配置对象里面有`StatsService` | |
3. `"policy"`中的统计开关为true,除了各个用户的统计,还有全局统计 | |
4. clients里面要有email | |
5. 有个专用的`dokodemo-door`协议的入口,tag为api | |
6. routing里面有inboundTag:api -> outboundTag:api的规则 | |
另外: |
This file contains 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 | |
# | |
# Cloudflare API Dynamic AAAA DNS Updater for IPv6 addresse in Bash | |
# | |
# Credit: | |
# Part of this script got inspired from the work of `benkulbertis`@github: | |
# https://gist.github.com/benkulbertis/fff10759c2391b6618dd | |
# And of `4ft35t`@github for the OpenWrt mod in grep command. | |
# https://gist.github.com/4ft35t/510897486bc6986d19cac45b3b9ca1d0 |
This file contains 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
upstream php { | |
server 127.0.0.1:9000; | |
} | |
server { | |
listen 80; | |
gzip on; | |
gzip_min_length 1000; | |
gzip_types application/json text/css application/x-javascript; |
This file contains 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 sqlite3 | |
import sys | |
import subprocess | |
from urllib.parse import quote | |
def main(): | |
if len(sys.argv) < 2: |