分享實用、有趣的教程、VPS評測......
關於Hy2我剛剛測試了,用Hysteria2協議對比ss直連協議網速居然可以達到2:1,這協議也太强悍了。(The Hysteria2 protocol was 2 times faster than the Shadowsocks protocol in a speed test in my environment. This protocol is awesome.)首先需要一個域名解析到節點機IP。(We need a domain name that has been resolved to the IP of the node)注意:服務端口、連接端口第一次不可以是80,因爲申請ssl/tls證書時會使用到80端口(Attention: 80 cannot be used as our port when first connect to the server since it should be reserved to apply a ssl/tls certificate.)面板操作:(My board configuration)節點機操作:(Run the scrip
開了好幾臺了,儅解鎖新地區吧。注意:雖然模板給的debian但是實際安裝是alpine。下單地址
wap.ac、miaomiaomoe、wawoimport re import time from time import sleep from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC import random import string import threading def generate_random_string(length): characters = string.ascii_letters + string.digits # 包含大小写字母和数字的所有字符 return ''.join(random.choice(characters) for _ in range(length)) # 指定生成字符串的长
測試結果 || 購買地址
这个随机字符串由大小写字母和数字组成,长度为10。(This random string composed with 10 uppercase or lowercase letters and digitals)def generate_random_string(length): characters = string.ascii_letters + string.digits # 包含大小写字母和数字的所有字符(Include all possible uppercase or lowercase letters and digitals) return ''.join(random.choice(characters) for _ in range(length)) # 指定生成字符串的长度 (Custom the length of the string) length = 10 # 生成随机字符串 (Generate a random string and assign it to a variable) random_string = generate_