Please see this for more detail.
The formated cert is here
http { | |
# Other configs | |
map $uri $url_short { | |
default /404; | |
/ /; | |
include url.map; | |
} | |
server { | |
# Other configs |
#!name=少数派流量监控 | |
#!desc=实时查询还剩多少流量 | |
#!system=ios | |
[Panel] | |
ssp_bandwidth_check = script-name=ssp_bandwidth_check, title="少数派流量监控", update-interval=300 | |
[Script] | |
ssp_bandwidth_check = type=generic, script-path=PASTE_YOUR_SCRIPT_PATH_HERE |
#!/bin/bash | |
for (( ; ; )); do | |
mv new.txt old.txt 2> /dev/null | |
curl "https://www.apple.com.cn/xc/cn/vieworder/W123456789/[email protected]" -s -L | grep "currentStatus" | jq '.orderDetail.orderItems."orderItem-0000101".orderItemStatusTracker.d.currentStatus' > new.txt | |
DIFF_OUTPUT="$(diff new.txt old.txt)" | |
if [ "0" != "${#DIFF_OUTPUT}" ]; then | |
// DO SOMETHING HERE | |
fi | |
sleep 300 |
#!/bin/bash | |
for (( ; ; )); do | |
mv new.json old.json 2> /dev/null | |
curl 'https://www.ems.com.cn/apple/getMailNoRoutes' --data-raw 'mailNum=EZ690XXXXXXCN' -s > new.json | |
DIFF_OUTPUT="$(diff new.json old.json)" | |
if [ "0" != "${#DIFF_OUTPUT}" ]; then | |
# Send notification here | |
echo "CHANGED" | |
fi |
#!/bin/bash | |
# 北工大选课软件 | |
export ALL_PROXY="" | |
b="" | |
# 需要改三个地方 | |
# 1. 替换 URL | |
url="http://gdjwgl.bjut.edu.cn/xf_xsqxxxk.aspx?xh=18080108&xm=%B9%F9%D4%F3%D3%EE&gnmkdm=N121113" | |
# 2. 替换 POST 的数据 |
addEventListener('fetch', event => { | |
event.respondWith(fetchAndApply(event.request)) | |
}) | |
async function fetchAndApply(request) { | |
if(request.url === 'https://api.tloxygen.com/ip' || request.url === 'http://api.tloxygen.com/ip') { | |
const ip = request.headers.get('cf-connecting-ip') | |
return new Response(ip) | |
} else if (request.url === 'https://api.tloxygen.com/country' || request.url === 'http://api.tloxygen.com/country') { | |
const ip = request.headers.get('cf-ipcountry') |
#!/bin/sh | |
# A simple DDNS tool written in shell, support Rage4, Hurricane Electric DNS and Hurricane Electric Tunnel Broker. | |
# @version 0.1.2 | |
# Global Settings, set to ture to enable | |
use_ipv4=false; | |
use_ipv6=false; | |
logfile="/var/log/ddns.log"; # Set it to "/dev/null" to disable log. | |
get_ip_service="http://api.tlo.xyz:8081/myip/ip.php"; # Need to support IPv4 and IPv6 |
jQuery.noConflict(); | |
jQuery(document).ready(function($) { | |
// ... | |
$('#commentform').submit(function() { | |
_paq.push(['trackGoal', '1']); // logs a conversion for goal 1 | |
}); | |
// ... | |
}); |