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
set system static-host-mapping host-name aaid.umeng.com inet 127.0.0.1 | |
set system static-host-mapping host-name abtest-ch.snssdk.com inet 127.0.0.1 | |
set system static-host-mapping host-name activity-aghbwh.awemeughun.com inet 127.0.0.1 | |
set system static-host-mapping host-name ai.login.umeng.com inet 127.0.0.1 | |
set system static-host-mapping host-name api1.kuaishoupay.com inet 127.0.0.1 | |
set system static-host-mapping host-name api3-core-c-lf.amemv.com inet 127.0.0.1 | |
set system static-host-mapping host-name api3-normal-c-lf.amemv.com inet 127.0.0.1 | |
set system static-host-mapping host-name api5-core-c-lf.amemv.com inet 127.0.0.1 | |
set system static-host-mapping host-name api5-normal-c-lf.amemv.com inet 127.0.0.1 | |
set system static-host-mapping host-name api100-core-c333.amemv.com inet 127.0.0.1 |
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 | |
# | |
# nianfo.py - TudouCode Demo in Python 3 | |
# Credit: https://github.com/lersh/TudouCode/ | |
# | |
# Note: | |
# | |
# This is the first version('佛曰') of TudouCode('与佛论禅'). | |
# The second version('如是我闻') needs compression and I can't debug. | |
# |
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
(http.user_agent contains "QQ/") | |
or (http.user_agent contains "MicroMessenger") | |
or (http.user_agent contains "TaoBrowser") | |
or (http.user_agent contains "Redmi") | |
or (http.user_agent contains "XiaoMi") | |
or (http.user_agent contains "MiuiBrowser") | |
or (http.user_agent contains "HUAWEI") | |
or (http.user_agent contains "HONOR") | |
or (http.user_agent contains "OPPO") |
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
你长的怪像人殊不知是只人面犬 | |
你的脸有碍观瞻 | |
当初惊艳,完完全全,只为世面见得少。 | |
嫉妒是一种不好的情感,我理解你嫉妒我有家人,可你这么说有点过分了 | |
你自拍一张就是你的全家福 | |
远看是美景,近看想报警 | |
你在无中生有 你在暗度陈仓 你在凭空想象 你在凭空捏造 你在无言无语 你在无可救药 你是逝者安息 你是一路走好 你是傻子巴拉 你是永无止境 你是没钱买药 你是头脑有病 你是眼里有泡 你是嘴里刘能 你是污言秽语 你是咎由自取 你是殃及无辜 你是祸害众生 你是仓皇失措 你是暗度陈仓 你是无可救药 | |
胖姑娘袭花衫,花都胖起来。 | |
即使是做咸鱼,也要做最咸的那一条。 | |
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
import requests | |
import json | |
import time | |
import datetime | |
import dateutil.parser | |
from bs4 import BeautifulSoup as bp | |
def get_(data): | |
headers={'User-Agent':'curl/7.12.1 ', | |
'Content-Type':'application/json'} |
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
import requests | |
def get_(data): | |
headers={'User-Agent':'curl/7.12.1 ', | |
'Content-Type':'application/json'} | |
try: | |
r = requests.post(url='https://ssl.bing.com/webmaster/api.svc/json/SubmitUrl?apikey=API_KEY',json=data) | |
print(r.status_code) | |
print(r.content) | |
except Exception.e: |
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
@echo off | |
cls&setlocal enabledelayedexpansion | |
title 身份证校验码计算器 | |
:start | |
echo. | |
echo 身份证校验码计算器 | |
echo. | |
set /p sfz=‘输入无校验码的号码(17位): | |
set /a s1=%sfz:~0,1%*7 | |
set /a s2=%sfz:~1,1%*9 |