Skip to content

Commit

Permalink
update md to html
Browse files Browse the repository at this point in the history
  • Loading branch information
gaolei-he committed Dec 29, 2023
1 parent 7ef2ddd commit 444dc48
Show file tree
Hide file tree
Showing 18 changed files with 1,084 additions and 24 deletions.
15 changes: 0 additions & 15 deletions README.md

This file was deleted.

103 changes: 103 additions & 0 deletions html/log_in_to_campus_network.html

Large diffs are not rendered by default.

176 changes: 176 additions & 0 deletions html/matrix_calc.html

Large diffs are not rendered by default.

283 changes: 283 additions & 0 deletions html/multi_thread.html

Large diffs are not rendered by default.

84 changes: 84 additions & 0 deletions html/nginx.html

Large diffs are not rendered by default.

133 changes: 133 additions & 0 deletions html/pbds.html

Large diffs are not rendered by default.

100 changes: 100 additions & 0 deletions html/pointer.html

Large diffs are not rendered by default.

99 changes: 99 additions & 0 deletions html/pointer_code.html

Large diffs are not rendered by default.

90 changes: 90 additions & 0 deletions html/swap_caps_esc.html

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,25 @@ <h1>Welcome to my blog</h1>
<nav>
<ul>
<li>
<a href="pointer.md">指针:循环队列的实现</a>
<a href="html/pointer.html">指针:循环队列的实现</a>
</li>
<li>
<a href="pbds.md">PBDS的使用</a>
<a href="html/pbds.html">PBDS的使用</a>
</li>
<li>
<a href="swap_caps_esc.md">交换Caps键和Esc键的几种方法</a>
<a href="html/swap_caps_esc.html">交换Caps键和Esc键的几种方法</a>
</li>
<li>
<a href="log_in_to_campus_network.py">自动登录河南大学 henu 校园网</a>
<a href="html/log_in_to_campus_network.html">自动登录河南大学 henu 校园网</a>
</li>
<li>
<a href="matrix_calc.md">多线程测试:矩阵计算</a>
<a href="html/matrix_calc.html">多线程测试:矩阵计算</a>
</li>
<li>
<a href="multi_thread.md">多线程实例</a>
<a href="html/multi_thread.html">多线程实例</a>
</li>
<li>
<a href="nginx.md">nginx的使用</a>
<a href="html/nginx.html">nginx的使用</a>
</li>
</ul>
</nav>
Expand Down
6 changes: 5 additions & 1 deletion log_in_to_campus_network.py → md/log_in_to_campus_network.md
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
$Code$
```python3
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

Expand Down Expand Up @@ -60,4 +62,6 @@ def main():


if __name__ == '__main__':
main()
main()

```
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 4 additions & 1 deletion pointer_code.cpp → md/pointer_code.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
$Code$
```cpp
#include <iostream>
using namespace std;
typedef int Elem;
Expand Down Expand Up @@ -57,4 +59,5 @@ int main()
clear(tail);
//modify in windows
return 0;
}
}
```
File renamed without changes.

0 comments on commit 444dc48

Please sign in to comment.