This script parses the emoji list given by the unicode organization, and saves them as image files
- Login to CR660X, open Wi-Fi, disable "merge 2.4G with 5G"
- Get another router, open 2.4G Wi-Fi, set LAN ip as
169.254.31.3
, disable DHCP, connect LAN with CR660X's LAN - Get a laptop, connect LAN with CR660X's LAN, connect CR660X's 5G Wi-Fi. Set wired IP as
169.254.31.1
, run the python script - Login to CR660X's web page, get its IP, and get stok in URL
- Open the html page, fill in the IP, stok, SSID, password, and get URLs. Clicks the URLs one by one.
网易博客停运,但是不支持打包下载。 于是可以从某个页面上下载回来所有的博客文字的xml,还可以下载出来博客配图的xml。 用这个xml配合上述脚本即可快速将图片下载回来。
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
def process_name(name): | |
names=[] | |
for nm in [x.strip() for x in name.split()]: | |
if '-' in nm: | |
tmp = [x.strip() for x in nm.split('-')] | |
tmp = [x[0]+"." for x in tmp] | |
names.append("-".join(tmp)) | |
else: | |
names.append(nm[0]+".") | |
return " ".join(names) |
网易邮箱问候语收集汇总
部分来源于当前接口,部分来源于豆瓣。
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 Shame Eyesdroper | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match *://*/* | |
// @grant none | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js | |
// @run-at document-start |
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 configparser | |
import sqlite3 | |
from os.path import join | |
from gammu import smsd | |
class ForwardTargetBase: | |
def send(self, message): | |
raise NotImplementedError() |
NewerOlder