archlinux
换源
参考
修复 keyring 错误
命令
1 2 3 4pacman-key --init pacman-key --populate pacman-key --refresh-keys pacman -Sy archlinux-keyriit
一键换源
| |
AUR package 安装
Fish Shell ---- Friendly Interactive Shell
completion 自动补全
快捷键
Ctrl + F
- 接受所有建议
Alt + F
- 接受部分建议
- 一个单词
变量处理
set 命令实现
eg:
| |
Google Search Skills
参考
双引号 "more than one keyword"
文件格式
格式
关键词:format
- 注:冒号后不允许空格
eg:
语法:
- keyword:pdf
- keyword:torrent
实例:
- site:hello.com
站内搜索 keyword site: website.com
关键词过滤
- 必须含有
- 不包含
搜索框快捷键 /
Manjaro Notes
教程
官方
换源
| |
AUR
使用 工具 pamac
search
- pamac search -a
安装
- pamac build <package>
chemacs debug
命令
1emacs -q --eval '(setq user-emacs-directory "/home/sawyer/.emacs.d.default")' -l ~/.emacs.d.default/init.el --debug-init
sshd
sshd -t 报错
# sshd -t # output error: sshd: no hostkeys available -- exiting.
解决方法
- sudo ssh-keygen -A
Python UML class Diagram
工具
- Java
pyreverse
- 类图制作工具
异常解决
Max Recursion Error 异常
错误提示
1 2 3 4 5 6 7 8 9 10.... File "/home/sawyer/miniconda3/envs/cde2/lib/python3.7/site-packages/astroid/decorators.py", line 111, in wrapped for res in _func(node, context, **kwargs): File "/home/sawyer/miniconda3/envs/cde2/lib/python3.7/site-packages/astroid/inference.py", line 481, in _filter_operation_errors for result in infer_callable(self, context): File "/home/sawyer/miniconda3/envs/cde2/lib/python3.7/site-packages/astroid/inference.py", line 769, in _infer_binop lhs_context = copy_context(context) File "/home/sawyer/miniconda3/envs/cde2/lib/python3.7/site-packages/astroid/context.py", line 188, in copy_context return context.clone() RecursionError: maximum recursion depth exceeded解决方法
提高 递归限制
- 修改文件 ~/miniconda/envs/py38/bin/pyreverse
添加代码