基本展示 配置文件:iDvel/rime-settings 基本套路 Squirrel 0.15.0 简中全拼 0.15.0 后 charset_filter@gb2312失效,放弃了朙月拼
我的 Rime 配置
已更新,详见 我的 Rime 配置 2021 我的 Rime 配置 方案:luna_pinyin_simp 简中全拼 输入法全局设定 default.custom.yaml 常规设置,最好开启 Tab 移动光标的功能,这个太好
用 sleepwatcher 让 Mac 在睡眠及唤醒时自动执行一些脚本
macOS 自带的 Automator.app 并没有给出睡眠及唤醒时的条件变量,不过可以通过 sleepwatcher 来监测并执行一些脚本。 sleepwatcher 安装: 1 $ brew install sleepwatcher 启动服务: 1 $ brew services start sleepwatcher 查看进程: 1 2 3 $ ps
解决 pyenv 导致的 brew warning
brew doctor 的错误提示: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 Please note that these warnings are just used to help the Homebrew maintainers with debugging if you file an issue. If everything you use Homebrew for is working fine: please don't worry or file an issue; just ignore this. Thanks! Warning: "config" scripts exist outside
《SQL 必知必会》笔记
《SQL 必知必会》 第 4 版 豆瓣:https://book.douban.com/subject/24250054/ SQL 文件下载地址:https:
Git 自总结
虽然用了很久的 Git 了,但基本上只是 add、commit、push、pull,这次系统性的学习了一遍。 整体是按照 Github 官方教程,由牛客网翻译的视频 的
Python 数独
这么多年来,排队、无聊、打发时间的手机游戏就是 2048 和 数独了。 既然还没有学会深度优先算法,不如先以人类解数度的方式,用代码来实现。 我回顾了一下代