Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# AI agent infra — 公开(AGENTS.md / CLAUDE.md / .claude 资产库),仅以下保持私有
.claude/settings.local.json
.claude/cache/
.claude/drafts/
.claude/issues/
.claude/prompts/produce-vol5-labs.md
.claude/prompts/vol5-code-verification.md
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
---

<!-- COVERAGE_START -->
![English Coverage](https://img.shields.io/badge/en_coverage-100%25-green.svg) 492/492 docs translated
![English Coverage](https://img.shields.io/badge/en_coverage-99%25-green.svg) 491/494 docs translated
<!-- COVERAGE_END -->

## 这是什么项目
Expand Down
1 change: 0 additions & 1 deletion documents/en/vol8-domains/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ An estimated 80 to 100 articles.

<ChapterNav variant="sub">
<ChapterLink href="embedded/">Embedded Development</ChapterLink>
<ChapterLink href="networking/">Network Programming — Planned</ChapterLink>
<ChapterLink href="gui-graphics/">GUI and Graphics — Planned</ChapterLink>
<ChapterLink href="data-storage/">Data Storage — Planned</ChapterLink>
<ChapterLink href="algorithms/">Algorithms and Data Structures — Planned</ChapterLink>
Expand Down
28 changes: 0 additions & 28 deletions documents/en/vol8-domains/networking/index.md

This file was deleted.

398 changes: 398 additions & 0 deletions documents/vol6-performance/10-asan-family-and-memory-safety.md

Large diffs are not rendered by default.

486 changes: 486 additions & 0 deletions documents/vol6-performance/11-memory-safety-asan-valgrind.md

Large diffs are not rendered by default.

332 changes: 332 additions & 0 deletions documents/vol6-performance/12-sanitizer-toolchain-and-memory-safety.md

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions documents/vol6-performance/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ tags:
<ChapterLink href="02-inline-and-compiler-optimization">内联与编译器优化</ChapterLink>
<ChapterLink href="06-evaluating-performance-and-size">性能与大小评估</ChapterLink>
<ChapterLink href="avx-avx2-deep-dive">AVX/AVX2 深入</ChapterLink>
<ChapterLink href="10-asan-family-and-memory-safety">ASan 工具家族与内存安全</ChapterLink>
<ChapterLink href="11-memory-safety-asan-valgrind">Valgrind 与 ASan 对照:JIT 解释 vs 编译期插桩</ChapterLink>
<ChapterLink href="12-sanitizer-toolchain-and-memory-safety">Sanitizer 工具链全景:从 -fsanitize 到内核 KASAN/KFENCE</ChapterLink>
</ChapterNav>
1 change: 0 additions & 1 deletion documents/vol8-domains/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ tags:

<ChapterNav variant="sub">
<ChapterLink href="embedded/">嵌入式开发</ChapterLink>
<ChapterLink href="networking/">网络编程 — 规划中</ChapterLink>
<ChapterLink href="gui-graphics/">GUI 与图形 — 规划中</ChapterLink>
<ChapterLink href="data-storage/">数据存储 — 规划中</ChapterLink>
<ChapterLink href="algorithms/">算法与数据结构 — 规划中</ChapterLink>
Expand Down
1 change: 0 additions & 1 deletion documents/vol8-domains/networking/.pages

This file was deleted.

23 changes: 0 additions & 23 deletions documents/vol8-domains/networking/index.md

This file was deleted.

3 changes: 3 additions & 0 deletions scripts/tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
# General
'基础', '入门', '进阶', '实战', '优化', '工程实践',

# Domains / engineering practices (notebook-migration batch)
'网络编程', '内存安全', '调试', '测试',

# Platforms
'host', 'stm32f1',

Expand Down
Loading