摘要:
tmux 默认使用 Ctrl-b 作为激活快捷键的开关 运行 tmux $ tmux 显示所有会话 $ Ctrl-b s 或者 $ tmux ls 新建会话 使用 new 命令新建会话,并且该命令允许以参数的形式传递一个会话名。我的建议是在新建时要提供一个会话名以便于日后管理。 $ tmux new 阅读全文
摘要:
20220520 https://www.cnblogs.com/bigberg/p/6430095.html json import json with open('config/smith_mdct.json', 'r') as json_file: load_dict = json.load( 阅读全文
摘要:
20220601 https://mlhive.com/2022/02/read-and-write-pascal-voc-xml-annotations-in-python def get_bounding_box(xml_path): """ this function used for get 阅读全文
摘要:
yaml文件写入 Yaml文件写入 http://www.pythonck.com/archives/docs/1-2/15-2/15011-2 yaml_data = yaml_example_data left_bounding_box, right_bounding_box = get_bou 阅读全文
摘要:
if __name__ == 'main' 的作用 20220512 name 是当前模块名,当模块被直接运行时模块名为 main 。这句话的意思就是,当模块被直接运行时,以下代码块将被运行,当模块是被导入时,代码块不被运行。 阅读全文
摘要:
Pylint for code review 20220512 https://www.jianshu.com/p/6a313c843f0d 用法: pylint evaluation_and_generate_result.py --rcfile='pylint.conf' --disable=E 阅读全文
摘要:
Python程序计时 20220601 对于每一个程序,需要他们的运行时间 import time time_start = time.time() main() time_end = time.time() print('time cost', time_end - time_start, 's' 阅读全文
摘要:
python语言规范 20220512 https://zh-google-styleguide.readthedocs.io/en/latest/google-python-styleguide/python_language_rules/ 模块名写法: module_name ; 包名写法: p 阅读全文