删除如下三个目录中的 .plist 文件,或转移到一个备份文件夹里。 ~/Library/LaunchAgents/ ~/Library/LaunchAgents/ ~/Library/LaunchDaemons/ Quote from ravbug.com: OS to automatically run and re-launch headless background processes. There are at minimum three such folders on macOS. They are: /Library/LaunchAgents, ~/Library/LaunchAgents/, and /Library/LaunchDaemons
ffprobe -v error -select_streams v:0 -show_entries stream=height,width -of csv=s=x:p=0 input.mp4 参考: https://trac.ffmpeg.org/wiki/FFprobeTips
pathlib.Path.unlink() removes a file or symbolic link. 删除单个文件或文件符号链接 os.rmdir() 或 pathlib.Path.rmdir() removes an empty directory. 删除一个空文件夹 os.removedirs() remove recursive empty directories 删除多层的空文件夹 shutil.rmtree() deletes a directory and all its contents. 删除文件夹,包括其中所有子
使用 PyNaCl 库: import nacl.bindings # scalar multiplication: curve25519_key * public pin_key = nacl.bindings.crypto_scalarmult(curve25519_key, pin_token_bytes)
使用 PyNaCl 这个库:pip install PyNaCl import nacl.bindings # ed25519 to curve25519 curve25519_key = nacl.bindings.crypto_sign_ed25519_sk_to_curve25519(private_key) # scalar multiplication: curve25519_key * public pin_key = nacl.bindings.crypto_scalarmult(curve25519_key, pin_token_bytes)
某个 collection 的所有 tags {% assign tags = '' | split: ',' %} {% for doc in collection.docs %} {% assign tags = tags | concat: doc.tags %} {% endfor %} {% assign tags = tags | uniq %}
系统自动功能, 截屏到剪切板,截屏到文件。 基本的全屏截图、手动框选自定义区域截图。 shottr (好用) 可免费使用(会提醒购买授权)。除了基本的全屏、手动
自动自带的 “Digital Color Meter” 鼠标移到要取的颜色上,再按 Shift + Command + C 就可以复制十六进制颜色值到剪切板 Pixeur 免费。用起来更方便和舒适。
不涉及本地化'{:,}'.format(value) # For Python ≥2.7 f'{value:,}' # For Python ≥3.6 涉及本地化import locale locale.setlocale(locale.LC_ALL, '') # '' 空字符自动
🔍搜索框快捷键:Ctrl + K 使用类 Unix 搜索命令语法。 例如搜索包含 hello 和 world 的文章:'hello 'world 语法详情: 空格充当**逻辑与(AND)**操作符,