Skip to content

Commit

Permalink
update 20241209
Browse files Browse the repository at this point in the history
  • Loading branch information
c01dkit committed Dec 9, 2024
1 parent 7adafcb commit 56bd76c
Show file tree
Hide file tree
Showing 164 changed files with 7,652 additions and 1,063 deletions.
1,040 changes: 1 addition & 1,039 deletions .cache/plugin/git-committers/page-authors.json

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ statistics: true
- <span id="busuanzi_container_site_pv">总访问次数:<span id="busuanzi_value_site_pv">若干</span>次

!!! example "推荐阅读"
- [根因分析](https://tech.c01dkit.com/rca/)
- [LLVM初学笔记](https://tech.c01dkit.com/llvm/)
- [C++回火](https://tech.c01dkit.com/cpp/)
- [Python爬虫编写](https://tech.c01dkit.com/crawler/)
- [Linux服务器端口复用](https://tech.c01dkit.com/porting/)
- [根因分析](https://tech.c01dkit.com/researching-is-living/related/rca/)
- [LLVM初学笔记](https://tech.c01dkit.com/software-security/program-analysis/llvm/)
- [C++回火](https://tech.c01dkit.com/programming-languages/cpp/)
- [Python爬虫编写](https://tech.c01dkit.com/programming-languages/crawler/)
- [Linux服务器端口复用](https://tech.c01dkit.com/misc-notes/environments/porting/)
7 changes: 7 additions & 0 deletions docs/software-security/program-analysis/llvm.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,13 @@ class FunctionPass : public Pass {

#### llvm::BasicBlock

```cpp
const llvm::BasicBlock BB;
BB.getTerminator(); // 获取基本块最后一条指令

```


#### llvm::Instruction

```cpp
Expand Down
11 changes: 6 additions & 5 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ extra_javascript:
- js/typing.js # 打字机效果
- js/mathjax.js # 数学表达式
- js/tablesort.js # 表格排序功能
# - js/toc.js
# - js/canvas-nest.js # 背景图
# - js/background.js # 背景图
- https://unpkg.com/mathjax@latest/es5/tex-mml-chtml.js # 数学表达式运行环境
Expand All @@ -330,7 +331,7 @@ extra_javascript:
- https://unpkg.com/tablesort@latest/dist/sorts/tablesort.number.min.js # 表格排序功能(数字类型)
- //busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js # 卜蒜子站点访问统计
# - https://unpkg.com/oh-my-live2d@latest
# - js/oml2d.js # 看板娘配置
# - js/oml2d.js # 看板娘配置

extra_css:
- css/counter.css # 章节数字编号
Expand Down Expand Up @@ -373,10 +374,10 @@ plugins:
enable_git_follow: true
enabled: true
strict: true
- git-committers:
repository: c01dkit/tech-blog
branch: main
token: !ENV GH_TOKEN # 需要自行在终端中设置临时环境变量,强烈不建议显式地在此处设置 token
# - git-committers:
# repository: c01dkit/tech-blog
# branch: main
# token: !ENV GH_TOKEN # 需要自行在终端中设置临时环境变量,强烈不建议显式地在此处设置 token
- minify:
minify_html: true
htmlmin_opts:
Expand Down
28 changes: 28 additions & 0 deletions overrides/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!--
Copyright (c) 2016-2024 Martin Donath <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
-->

{% extends "main.html" %}

<!-- Content -->
{% block content %}
<h1>404 - 页面不存在捏</h1>
{% endblock %}
Loading

0 comments on commit 56bd76c

Please sign in to comment.