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
// ==UserScript== | |
// @name 自动翻译->字幕中文简体 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description translate to Chinese automatically. | |
// @author qwertyuiop6 | |
// @match https://www.youtube.com/watch* | |
// @require https://cdn.bootcss.com/jquery/3.4.0/jquery.min.js | |
// @grant none | |
// ==/UserScript== |
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
sudo docker -v | |
sudo apt-get remove docker | |
sudo apt-get remove --auto-remove docker | |
sudo apt-get remove --purge lxc-docker | |
sudo apt-get autoremove --purge |
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
#-*- coding: utf-8 -*- | |
#pip install chardet | |
import codecs | |
import os | |
import shutil | |
import re | |
import chardet |
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
#dwb收集整理 | |
#索尼系列主机加速 | |
address=/www.ign.com/63.219.18.170 | |
address=/assets.ign.com/63.219.18.170 | |
address=/assets1.ignimgs.com/63.219.18.170 | |
address=/.ww.np.dl.playstation.net/63.219.18.170 | |
address=/a0.ww.np.dl.playstation.net/23.49.148.62 | |
address=/a1.ww.np.dl.playstation.net/23.49.148.62 | |
address=/gs-sec.ww.np.dl.playstation.net/23.49.148.62 |
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
#include "iostream" | |
#include "string" | |
using namespace std; | |
string int2str(int n) { | |
char t[24]; | |
int i = 0; | |
while (n) { |