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
@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 |
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
(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 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
# !/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 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
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 |
Note: This gist may be outdated, thanks to all contributors in comments.
adb
is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
Don't hesitate to read comments, there is useful tips, thanks guys for this !