摘要: 获取目录中最大的前10个文件 ls -lhS | head -11 du -ah | sort -hr | head -11 du -sh ./* | sort -hr | head -11 ctrl + a /* 光标跳到命令行的开头*/ ctrl + e /* 光标跳到命令行的结尾 */ 在Li 阅读全文
posted @ 2023-03-13 14:02 CeasonCing 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Pycharm上的Latex使用(on MacOS) Visual Studio Code (vscode)配置LaTeX TRANSLATE with x English Arabic Hebrew Polish Bulgarian Hindi Portuguese Catalan Hmong D 阅读全文
posted @ 2022-11-17 18:08 CeasonCing 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 标题行: 必填, 描述主要修改类型和内容主题内容: 描述为什么修改, 做了什么样的修改, 以及开发的思路等等页脚注释: 放 Breaking Changes 或 Closed Issues在这三部分中,<>中的内容分别表示: type: commit 的类型 feat: 新特性fix: 修改问题re 阅读全文
posted @ 2022-11-03 18:02 CeasonCing 阅读(38) 评论(0) 推荐(0) 编辑
摘要: Pixar 故事公式 每个故事都依次分成六个部分。 (1)很久以前:描述一下世界以前的样子。 (2)每天的生活:大家怎么过日子。 (3)直到有一天:一个突发事件引发了巨变。 (4)由于这件事:主人公遭受到了磨难。 (5)由于这件事:主人公下定决心,展开新的冒险,找到出路。 (6)最终:问题解决了,主 阅读全文
posted @ 2022-09-13 14:17 CeasonCing 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 展开 展开当前代码块ctrl = 彻底展开当前代码块ctrl alt = 展开所有代码块ctrl shift + 折叠 折叠当前代码块ctrl - 彻底折叠当前代码块ctrl alt - 折叠所有代码块ctrl shift - 终端中使用vim编辑文件退出问题 https://intellij-su 阅读全文
posted @ 2022-08-23 16:10 CeasonCing 阅读(21) 评论(0) 推荐(0) 编辑
摘要: time.strftime("%Y%m%d%H%M%S", time.localtime(time.time())) today = datetime.now().strftime('%Y-%m-%d %H:%M:%S') def yield_day(start_day, stop_time=Non 阅读全文
posted @ 2022-06-15 10:30 CeasonCing 阅读(124) 评论(0) 推荐(0) 编辑
摘要: from pathlib import Path print(__file__) print(Path(__file__)) print(Path(__file__).resolve()) print(Path(__file__).resolve().parent.parent) sys.path. 阅读全文
posted @ 2022-06-15 10:03 CeasonCing 阅读(16) 评论(0) 推荐(0) 编辑
摘要: https://qa.1r1g.com/sf/ask/2575980291/ docker container prune -f docker image prune -f docker volume prune -f 阅读全文
posted @ 2022-06-07 15:49 CeasonCing 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 功能:杀死进程名称中包含qemu的所有进程 ps aux|grep qemu|awk '{print $2}'|xargs kill -9 TRANSLATE with x English Arabic Hebrew Polish Bulgarian Hindi Portuguese Catalan 阅读全文
posted @ 2022-05-27 21:18 CeasonCing 阅读(63) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_43038622/article/details/84304620 下载相应whl TRANSLATE with x English Arabic Hebrew Polish Bulgarian Hindi Portuguese Catala 阅读全文
posted @ 2022-05-18 13:39 CeasonCing 阅读(9) 评论(0) 推荐(0) 编辑