摘要: ## Start a new code base without history from the existing one If you want to create a new code base without any history from an existing Git reposito 阅读全文
posted @ 2023-05-26 12:29 Ying‘s 阅读(7) 评论(0) 推荐(0) 编辑
摘要: [Cool, but obscure unix tools](https://kkovacs.eu/cool-but-obscure-unix-tools/) 1. `dstat` and `sar` are both system monitoring tools that collect and 阅读全文
posted @ 2023-04-11 22:18 Ying‘s 阅读(24) 评论(0) 推荐(0) 编辑
摘要: Jenkins 的安装 1. 选择合适的版本: Installing Jenkins 2. 插件的安装:Managing Plugins 在 Web UI 使用 "插件管理器"。 使用 Jenkins CLI install-plugin 命令。 除了以上官方推荐的两种方式,Advanced Ins 阅读全文
posted @ 2023-02-01 20:02 Ying‘s 阅读(29) 评论(0) 推荐(0) 编辑
摘要: * Use MySQL Image * Manage Image/Container * Container Shell Access MySQL 阅读全文
posted @ 2022-04-28 16:26 Ying‘s 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 回退 git reset --hard [索引] git reset --hard HEAD^^ = git reset --hard HEAD~2 日志 查看日志 git log --pretty=oneline git log --graph --pretty=oneline --abbrev- 阅读全文
posted @ 2020-12-02 21:50 Ying‘s 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 聚合继承 parent@聚合 pom.xml <modules> <module>XXXXXX-web</module> <module>XXXXXX-service</module> <module>XXXXXX-dao</module> </modules> children@继承 pom.xm 阅读全文
posted @ 2020-12-02 19:59 Ying‘s 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 時間複雜度 Big-O Complexity | Big-O Notation| Time Complexity | 時間複雜度| | : | : | : | |O(1)|Constant Complexity|常數時間複雜度| |O(log n)|Logarithmic Complexity|對數 阅读全文
posted @ 2020-10-28 13:15 Ying‘s 阅读(84) 评论(0) 推荐(0) 编辑
摘要: LinkedList 是特殊化的 Tree Tree 是特殊化的 Graph 二叉樹遍歷 Pre-order/In-order/Post-order 前序 (Pre-order): 根-左-右 中序 (In-order): 左-根-右 後序 (Post-order): 左-右-根 二叉搜索樹 (Bi 阅读全文
posted @ 2020-10-27 14:58 Ying‘s 阅读(19) 评论(0) 推荐(0) 编辑
摘要: sequenceDiagram participant ArrayList participant LinkedList Note right of ArrayList: prepend O(1)<br/>append O(1) Note left of ArrayList: lookup O(1) 阅读全文
posted @ 2020-10-26 15:04 Ying‘s 阅读(25) 评论(0) 推荐(0) 编辑
摘要: GoF: Gang of Four Design Patterns: Elements of Reusable Object-Oriented Software Erich Gamma, Richard Helm, Ralph Johnson and John Vlissides sequenceD 阅读全文
posted @ 2020-10-24 23:38 Ying‘s 阅读(15) 评论(0) 推荐(0) 编辑