Skip to content

Instantly share code, notes, and snippets.

@TTTPOB
TTTPOB / cvim.rc
Created January 10, 2020 02:17
keybinding of cvim
unmap f
map f createHint
@TTTPOB
TTTPOB / MSService.list
Last active March 11, 2023 17:20
https://docs.microsoft.com/en-us/office365/enterprise/urls-and-ip-address-ranges domains(plus some windows related domains) for clash and surge list
DOMAIN-SUFFIX,aadrm.com
DOMAIN-SUFFIX,acompli.com
DOMAIN-SUFFIX,acompli.net
DOMAIN-SUFFIX,aka.ms
DOMAIN-SUFFIX,akadns.net
DOMAIN-SUFFIX,aspnetcdn.com
DOMAIN-SUFFIX,assets-yammer.com
DOMAIN-SUFFIX,azure.com
DOMAIN-SUFFIX,azure.net
DOMAIN-SUFFIX,azureedge.net
@TTTPOB
TTTPOB / SortPhotosInOneDrive.py
Last active November 7, 2019 06:45
OneDrive for android will backup all photos, screenshots and saved pictures into the same folder. and if you use CHN as system language, it will save the photo in a CHN-named folder(图片) not “Picture”. This python script (recommended run in wsl) helps to solve this problem.
import os
from datetime import date
import glob
today=date.today()
for x in list(range(1, today.month+1)):
year=str(today.year)
# year='2018'
month=format(x, '02d')
# Photo
@TTTPOB
TTTPOB / github.css
Last active October 11, 2018 13:01 — forked from theconektd/github.css
Github Markdown CSS - for Markdown Editor Preview
body {
font-family: "Sarasa Gothic SC", arial, sans-serif;
font-size: 14px;
line-height: 1.6;
padding-top: 10px;
padding-bottom: 10px;
background-color: white;
padding: 30px; }
body > *:first-child {