- Hum 151010 URL Schemes 使用详解
- Hum 160427 OmniFocus 的 URL Schemes 用法
- Hum 171115 通过 Bear 来认识 Launch Center Pro 的进阶用法
- Hum 171122 通过 Bear 来认识 Drafts 的 [[line]] 用法
- Hum 180518 入门 iOS 自动化:读懂 URL Schemes
- Hum 180823 Universal Link 使用详解
- Hum 181229 x-callback-URL 的使用方法
- JamesHopbourn 210204 Drafts + vim = URL Scheme 复用
- JamesHopbourn 210405 Drafts 5 与 Bear 联手,让我可以快速追加笔记
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
# Python code to remove emoji | |
# source: http://www.unicode.org/charts/ | |
import re | |
def remove_emojis(data): | |
emoj = re.compile("[" | |
u"\U00002700-\U000027BF" # Dingbats | |
u"\U0001F600-\U0001F64F" # Emoticons | |
u"\U00002600-\U000026FF" # Miscellaneous Symbols |
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
// https://awakesecurity.com/wp-content/uploads/2020/06/GalComm-Malicious-Chrome-Extensions-Appendix-B.txt | |
malicious = [ | |
"acmnokigkgihogfbeooklgemindnbine", | |
"apgohnlmnmkblgfplgnlmkjcpocgfomp", | |
"apjnadhmhgdobcdanndaphcpmnjbnfng", | |
"bahkljhhdeciiaodlkppoonappfnheoi", | |
"bannaglhmenocdjcmlkhkcciioaepfpj", | |
"bgffinjklipdhacmidehoncomokcmjmh", | |
"bifdhahddjbdbjmiekcnmeiffabcfjgh", |
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
Attribute VB_Name = "ExcelDeepL" | |
' # Installation | |
' 1. Activate MicroSoft XML. v6.0 and MicroSoft Scripting Runtime | |
' 2. Get VBA-JSON(JsonConverter.bas) from https://github.com/VBA-tools/VBA-JSON | |
' 3. Install JsonConverter and this script | |
' # How to use | |
' deepl(target_lang, select a cell) | |
' Example: deepl("JA",A1) |
OlderNewer