[G1-Sync] Manual knowledge update
This commit is contained in:
@@ -2,91 +2,148 @@
|
||||
id: wiki-2026-0508-atomism
|
||||
title: Atomism
|
||||
category: 10_Wiki/Topics
|
||||
status: needs_review
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: [P-Reinforce-AUTO-ATOM-001]
|
||||
aliases: [Logical Atomism, Reductionism, Atomic Decomposition]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.88
|
||||
tags: [auto-reinforced, atomism, Philosophy, Physics, reductionism, material-Logic]
|
||||
confidence_score: 0.86
|
||||
verification_status: applied
|
||||
tags: [philosophy, reductionism, decomposition, design, software-architecture]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-04-20
|
||||
last_reinforced: 2026-05-10
|
||||
github_commit: pending
|
||||
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
|
||||
tech_stack:
|
||||
language: unspecified
|
||||
framework: unspecified
|
||||
language: TypeScript/Python
|
||||
framework: design-systems
|
||||
---
|
||||
|
||||
# [[Atomism|Atomism]]
|
||||
# Atomism
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> "세상의 최소 단위: 모든 복잡한 사물은 결국 더 이상 쪼개지지 않는 작고 견고한 '원자'들의 조합일 뿐이라는 철학적/과학적 환원주의."
|
||||
## 매 한 줄
|
||||
> **"매 whole 의 indivisible part 의 sum — 매 understand 의 decompose."**. Atomism 의 ancient Greek (Democritus, Leucippus) origin → modern logical atomism (Russell, early Wittgenstein) → 2026 의 software (atomic design, atom CSS, atomic commit, atomic transaction) 의 ubiquitous design principle.
|
||||
|
||||
## 📖 구조화된 지식 (Synthesized Content)
|
||||
원자론(Atomism)은 우주가 무수한 개별적이고 파괴 불가능하며 변화하지 않는 입자들로 구성되어 있다는 사상입니다.
|
||||
## 매 핵심
|
||||
|
||||
1. **철학적 원류**:
|
||||
* 고대 그리스 데모크리토스가 제안. "탄생과 죽음은 우연히 모였다가 흩어지는 원자들의 배열 변화일 뿐"이라고 주장.
|
||||
2. **과학적 도약**:
|
||||
* 근대 화학과 물리학의 토대가 되었으며, 물질의 성질을 구성 요소의 결합 방식으로 규명하는 데 성공함.
|
||||
3. **지적 태도 (Logical Atomism)**:
|
||||
* 복잡한 문장이나 지식도 최소 단위인 '원자 명제'로 분석할 수 있다는 비트겐슈타인의 철학으로 계승됨. ([[Analysis|Analysis]]와 연결)
|
||||
### 매 Philosophical Roots
|
||||
- **Democritus (~460 BC)**: matter 의 indivisible atom.
|
||||
- **Russell's logical atomism (1918)**: world 의 logical atom (sense data) 의 사실.
|
||||
- **Wittgenstein's Tractatus**: atomic facts → propositions.
|
||||
- **Reductionism**: complex → simple components.
|
||||
- **Counter**: holism (Quine), emergence — 매 whole > sum.
|
||||
|
||||
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
|
||||
- **과거 데이터와의 충돌**: 과거에는 원자가 정말 '최소 단위'라고 믿었으나, 현대 물리학 정책은 원자 내부의 쿼크나 끈 이론(String Theory) 등 더 미세한 층위와 '파동-입자 이중성' 정책을 수용하며 원자론적 사고의 한계를 인정함(RL Update).
|
||||
- **정책 변화(RL Update)**: 소프트웨어 설계 정책에서, 거대한 단일 코드(Monolith) 대신 작고 독립적인 원자 단위의 기능을 조립하는 '마이크로서비스 아키텍처(MSA) 정책'으로 원자론적 철학이 공학적 표준이 됨.
|
||||
### 매 Software Atomism
|
||||
- **Atomic design (Brad Frost)**: atom → molecule → organism → template → page.
|
||||
- **Atomic CSS (Tailwind, UnoCSS)**: utility class 의 single property.
|
||||
- **Atomic commit (Git)**: 1 commit = 1 logical change.
|
||||
- **Atomic transaction (DB)**: ACID 의 A — all-or-nothing.
|
||||
- **Atomic operation (concurrency)**: indivisible CPU instruction (CAS).
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- [[Analysis|Analysis]], [[Structuralism|Structuralism]], Reductionism, [[Arrangement-and-Composition|Arrangement-and-Composition]], Philosophy of Science
|
||||
- **Modern Tech/Tools**: [[Atomic Design|Atomic Design]] (UI/UX), Microservices [[Architecture|Architecture]].
|
||||
---
|
||||
### 매 응용
|
||||
1. Component-driven UI (Storybook, Bit).
|
||||
2. Microservice / function decomposition.
|
||||
3. Test atomicity (1 test = 1 assertion principle).
|
||||
4. Knowledge management (atomic note, Zettelkasten).
|
||||
|
||||
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
|
||||
## 💻 패턴
|
||||
|
||||
**언제 이 지식을 쓰는가:**
|
||||
- *(TODO)*
|
||||
### Pattern 1 — Atomic design (React)
|
||||
|
||||
**언제 쓰면 안 되는가:**
|
||||
- *(TODO)*
|
||||
```tsx
|
||||
// atom
|
||||
export const Button = ({ children, ...p }) =>
|
||||
<button className="px-3 py-1 rounded" {...p}>{children}</button>;
|
||||
|
||||
## 🧪 검증 상태 (Validation)
|
||||
// molecule
|
||||
export const SearchBar = () => (
|
||||
<div className="flex gap-2">
|
||||
<Input placeholder="search" />
|
||||
<Button>Go</Button>
|
||||
</div>
|
||||
);
|
||||
|
||||
- **정보 상태:** needs_review
|
||||
- **출처 신뢰도:** A
|
||||
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
|
||||
|
||||
## 🧬 중복 검사 (Duplicate Check)
|
||||
|
||||
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
|
||||
- **처리 방식:** UPDATE (자동 정규화)
|
||||
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
|
||||
|
||||
## 🕓 변경 이력 (Changelog)
|
||||
|
||||
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|
||||
|------|-----------|-----------|--------|
|
||||
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
|
||||
|
||||
## 💻 코드 패턴 (Code Patterns)
|
||||
|
||||
**패턴 1:** *(TODO: 이 프로젝트 컨벤션 반영한 구조 스켈레톤)*
|
||||
|
||||
```text
|
||||
# TODO
|
||||
// organism
|
||||
export const Header = () => (
|
||||
<header><Logo /><SearchBar /><UserMenu /></header>
|
||||
);
|
||||
```
|
||||
|
||||
## 🤔 의사결정 기준 (Decision Criteria)
|
||||
### Pattern 2 — Atomic CSS (Tailwind)
|
||||
|
||||
**선택 A를 써야 할 때:**
|
||||
- *(TODO)*
|
||||
```html
|
||||
<button class="px-4 py-2 bg-blue-500 hover:bg-blue-600 rounded text-white">
|
||||
Submit
|
||||
</button>
|
||||
```
|
||||
|
||||
**선택 B를 써야 할 때:**
|
||||
- *(TODO)*
|
||||
### Pattern 3 — Atomic commit (Git)
|
||||
|
||||
**기본값:**
|
||||
> *(TODO)*
|
||||
```bash
|
||||
# BAD: 1 commit, 3 unrelated changes
|
||||
git commit -m "fix bug + refactor + add feature"
|
||||
|
||||
## ❌ 안티패턴 (Anti-Patterns)
|
||||
# GOOD: 3 atomic commits
|
||||
git add src/bug.ts && git commit -m "fix: null check in parse"
|
||||
git add src/utils/ && git commit -m "refactor: extract helper"
|
||||
git add src/feature.ts && git commit -m "feat: add export csv"
|
||||
```
|
||||
|
||||
- **[안티패턴]:** *(TODO: 무엇을 하면 안 되는가 + 이유 + 대신 무엇을)*
|
||||
### Pattern 4 — Atomic CAS (Rust)
|
||||
|
||||
```rust
|
||||
use std::sync::atomic::{AtomicUsize, Ordering};
|
||||
|
||||
let counter = AtomicUsize::new(0);
|
||||
counter.compare_exchange(0, 1, Ordering::SeqCst, Ordering::SeqCst).ok();
|
||||
```
|
||||
|
||||
### Pattern 5 — Atomic note (Zettelkasten)
|
||||
|
||||
```markdown
|
||||
# 20260510-1432-recursive-decomposition
|
||||
|
||||
매 problem 의 self-similar subproblem 의 split → solve → combine.
|
||||
대표 의 merge sort, quicksort, divide-and-conquer.
|
||||
|
||||
→ [[20260509-2210-master-theorem]]
|
||||
→ [[20260510-1450-dynamic-programming]]
|
||||
```
|
||||
|
||||
## 매 결정 기준
|
||||
|
||||
| 상황 | Approach |
|
||||
|---|---|
|
||||
| UI design | Atomic design hierarchy |
|
||||
| Styling | Atomic CSS (Tailwind/UnoCSS) |
|
||||
| VCS | Atomic commit |
|
||||
| Concurrency | atomic primitives + lock-free |
|
||||
| Notes | Atomic note (1 idea / file) |
|
||||
| Architecture | weigh atomism vs holism (some properties emergent) |
|
||||
|
||||
**기본값**: atomic decomposition + holistic review (avoid reductionist trap).
|
||||
|
||||
## 🔗 Graph
|
||||
- 부모: [[Reductionism]] · [[Philosophy-of-Science]]
|
||||
- 변형: [[Holism]] · [[Emergence]] · [[Logical-Atomism]]
|
||||
- 응용: [[Atomic-Design]] · [[Atomic-CSS]] · [[Atomic-Commit]] · [[Zettelkasten]]
|
||||
- Adjacent: [[Composition-over-Inheritance]] · [[Single-Responsibility-Principle]]
|
||||
|
||||
## 🤖 LLM 활용
|
||||
**언제**: design system creation, refactoring monolith, documentation structure, knowledge graph.
|
||||
**언제 X**: irreducibly emergent system (consciousness, ecosystem), tightly-coupled domain logic.
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **Reductionist fallacy**: 매 whole 의 part 의 sum 의 X — emergence 무시.
|
||||
- **Over-atomization**: 100 utility classes for 1 button — readability collapse.
|
||||
- **Atomic worship**: 매 every commit atomic 의 over-engineer (squash merge available).
|
||||
- **Lost-context note**: atomic note 의 link 없음 — 매 island.
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (Russell "Philosophy of Logical Atomism", Brad Frost "Atomic Design", classical CS).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — FULL content (philosophy + 5 software patterns) |
|
||||
|
||||
Reference in New Issue
Block a user