-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
246 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "mkdocs-toolchain"] | ||
path = mkdocs-toolchain | ||
url = https://github.com/TonyCrane/mkdocs-toolchain.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
## Deploy | ||
|
||
git add . | ||
git commit -m "xxx" | ||
git push origin main:main | ||
|
||
mkdocs gh-deploy --clean | ||
mkdocs gh-deploy --clean | ||
|
||
## Acknowledgments | ||
|
||
Most of the blog configurations are from [Xiaokang2022](https://github.com/Xiaokang2022/) | ||
|
||
The category menu plugin is from [TonyCrane](https://github.com/TonyCrane/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# 算法与数据结构 | ||
|
||
!!! note | ||
有关算法与数据结构的一点笔记,先占个坑,之后慢慢填充 | ||
|
||
|
||
{{ BEGIN_TOC }} | ||
- 算法: | ||
- 贪心算法: algorithm/greedy-algo | ||
- 动态规划算法: algorithm/dynamic-algo | ||
- 图算法: algorithm/graph-algo | ||
- 分支定界算法: algorithm/branch-and-bound-algo | ||
- 数据结构: | ||
- 数组: data-structure/array | ||
- 堆栈: data-structure/stack | ||
- 队列: data-structure/queue | ||
- 链表: data-structure/linkedlist | ||
- 树: data-structure/tree | ||
- 图: data-structure/graph | ||
{{ END_TOC }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# 编程语言 | ||
|
||
!!! note | ||
有关各类编程语言的一点学习笔记,不定期更新 | ||
|
||
|
||
{{ BEGIN_TOC }} | ||
- 编译型: | ||
- C: c | ||
- C++: cpp | ||
- Go: go | ||
- Java: java | ||
- 解释型: | ||
- Python: python | ||
- 优化: | ||
- 优雅编程: code-gracely | ||
{{ END_TOC }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# 软件安全 | ||
|
||
!!! note | ||
有关软件安全的一点笔记,主要包括一点CTF笔记(虽然不是ctfer),以及学习一些程序逆向、程序分析时的一点笔记。 | ||
|
||
|
||
{{ BEGIN_TOC }} | ||
- 程序分析: | ||
- 逆向分析: reverse/ | ||
- LLVM: program-analysis/llvm | ||
- CTF: | ||
- pwn.college: ctf/pwn-college-cse365-spring2023 | ||
{{ END_TOC }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Submodule mkdocs-toolchain
added at
c53ad8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters