docs: finalized wiki integrity maintenance (v3.0 standard) - pruned 1400+ stubs and fixed 11k+ ghost links

This commit is contained in:
Antigravity Agent
2026-05-02 09:18:34 +09:00
parent c84dcb8371
commit 6445fcc05b
13150 changed files with 55394 additions and 100862 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ tags: [SoftwareEngineering, Principles, DRY, CleanCode]
last_reinforced: 2026-04-20
---
# [[Dry-Principle]] (Don't Repeat Yourself)
# [[Dry-Principle|Dry-Principle]] (Don't Repeat Yourself)
## 📌 한 줄 통찰 (The Karpathy Summary)
> "중복은 모든 악의 근원이다." 시스템 내부의 모든 지식은 단 한 번만, 단 하나의 명확한 형태로 존재해야 한다는 원칙이다.
@@ -20,5 +20,5 @@ last_reinforced: 2026-04-20
- DRY를 맹신하면 '성급한 추상화(Premature Abstraction)'에 빠지게 된다. 모양만 같고 '의미(Semantics)'가 다른 두 코드를 억지로 합치면, 나중에 각자의 비즈니스 로직이 달라질 때 코드가 꼬여버린다. 이럴 때는 차라리 중복을 허용하는 'WET(Write Everything Twice)'가 나을 수도 있다.
## 🔗 지식 연결 (Graph)
- Related: Clean-Code , [[Modular-Programming]]
- Related: Clean-Code , [[Modular-Programming|Modular-Programming]]
- Contrast: YAGNI-Principle