Edited: 2018-03-12
||washingtonpost.com/*/adblocker-feature^$xhr
Script block
// License belongs to @serapath | |
// https://gistcdn.githack.com/ookangzheng/98af01a88a0ab8937d24e12f0c5d307e/raw/afb42195ba4f1542d2dffe634179458a79de9c11/require-js.js | |
// CDN: https://yerl.org/nLBxY | |
window.require = (function (modules) { | |
function init (name, _module) { | |
var se = document.createElement('script') | |
var module = JSON.parse(_module)[name] | |
se.text = module.bundle | |
document.head.appendChild(se) |
// JavaScript 字符串编码使用 UTF-16 | |
"💩".length === 2; | |
"💩" === "\u{1F4A9}"; // es6 | |
"💩" === "\uD83D\uDCA9"; // es5 | |
// 同一个编码可能使用不同的码位 | |
"ò" === "ò"; // ❎ | |
"ò" === "\xF2"; // ✅ | |
"ò" === "o\u0300"; // ✅ | |
"o\u0300".normalize("NFC") === "\xF2"; // ✅ es6 提供了 normalize 函数 |
iptables -t nat -A PREROUTING -i eth0 -p udp ! --source 192.168.2.196 ! --destination 192.168.2.196 --dport 53 -j DNAT --to 192.168.2.196
iptables -t nat -A PREROUTING -i eth0 -p tcp ! --source 192.168.2.196 ! --destination 192.168.2.196 --dport 53 -j DNAT --to 192.168.2.196
or
iptables -t nat -I PREROUTING -i br-lan -p tcp --dport 53 -j DNAT --to 192.168.2.4:53
iptables -t nat -I PREROUTING -i br-lan -p udp --dport 53 -j DNAT --to 192.168.2.4:53
Do the following to trigger the gitignore
Step 1: Commit all your pending changes in the repo which you want to fix and push that.
Step 2: Now you need to remove everything from the git index in order to refresh your git repository. This is safe. Use this command:
git rm -r --cached . Step 3: Now you need to add everything back into the repo, which can be done using this command:
git add .