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
-----BEGIN CERTIFICATE----- | |
MIICTTCCAfICCQDEbaPd5qWgtzAKBggqhkjOPQQDAjCBrTELMAkGA1UEBhMCVVMx | |
EzARBgNVBAgMCkNhbGlmb3JuaWExEDAOBgNVBAcMB0J1cmJhbmsxFTATBgNVBAoM | |
DERXWCBOZXR3b3JrczEVMBMGA1UECwwMVHJ1c3QgQ2VudGVyMSowKAYDVQQDDCFE | |
V1ggTmV0d29ya3MgVHJ1c3QgQ2VudGVyIENBIDIwMjExHTAbBgkqhkiG9w0BCQEW | |
DnRjQGR3eC5uZXR3b3JrMB4XDTIxMTAyNTAzMDYwMFoXDTMxMTAyMzAzMDYwMFow | |
ga0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRAwDgYDVQQHDAdC | |
dXJiYW5rMRUwEwYDVQQKDAxEV1ggTmV0d29ya3MxFTATBgNVBAsMDFRydXN0IENl | |
bnRlcjEqMCgGA1UEAwwhRFdYIE5ldHdvcmtzIFRydXN0IENlbnRlciBDQSAyMDIx | |
MR0wGwYJKoZIhvcNAQkBFg50Y0Bkd3gubmV0d29yazBZMBMGByqGSM49AgEGCCqG |
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
# squirrel.custom.yaml | |
# encoding: utf-8 | |
patch: | |
preset_color_schemes: | |
selfae: | |
name: "Selfae" | |
horizontal: false # 候选条横向显示 | |
inline_preedit: true # 启用内嵌编码模式,候选条首行不显示拼音 | |
candidate_format: "%c.\u2005%@\u2005" # 用 1/6 em 空格 U+2005 来控制编号 %c 和候选词 %@ 前后的空间。 | |
corner_radius: 6 # 候选条圆角半径 |
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
[Rainmeter] | |
; 1000 = 1s | |
; Note that Each key is rate limited to 180 requests for every 3 minutes. | |
; Offical documents: https://nodequery.com/help/developer-api | |
Update=1000 | |
AccurateText=1 | |
DynamicWindowSize=1 | |
MiddleMouseDownAction=!Execute [!RefreshApp] | |
[Metadata] |
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
# Install Pcap_DNSProxy-0.4.7.7 for Debian 8.2 | |
# For using iptables to limit DNS query, please visit http://falkhusemann.de/blog/2012/07/iptables-dns-query-limiting-with-burst-rate/ | |
# For increase limit of hitcount, please visit https://www.deamwork.com/archives/iptables-increase-hitcount-limit.orz6 | |
apt-get install g++ gcc bison m4 flex cmake automake autoconf libtool build-essential | |
wget http://www.tcpdump.org/release/libpcap-1.8.1.tar.gz | |
wget http://www.tcpdump.org/release/libpcap-1.8.1.tar.gz.sig | |
wget http://www.tcpdump.org/tcpdump-workers.asc | |
gpg --import tcpdump-workers.asc | |
rm tcpdump-workers.asc | |
gpg libpcap-1.8.1.tar.gz.sig |
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
function convertTimestamp(timestamp) { | |
var d = new Date(timestamp * 1000), // Convert the passed timestamp to milliseconds | |
yyyy = d.getFullYear(), | |
mm = ('0' + (d.getMonth() + 1)).slice(-2), // Months are zero based. Add leading 0. | |
dd = ('0' + d.getDate()).slice(-2), // Add leading 0. | |
hh = d.getHours(), | |
h = hh, | |
min = ('0' + d.getMinutes()).slice(-2), // Add leading 0. | |
ampm = 'AM', | |
time; |