diff --git a/10_Wiki/Topics/AI/Caliskan-Islam 등의 프로그램 바이너리 작성자 식별 연구.md b/10_Wiki/Topics/AI/Caliskan-Islam 등의 프로그램 바이너리 작성자 식별 연구.md deleted file mode 100644 index 61426348..00000000 --- a/10_Wiki/Topics/AI/Caliskan-Islam 등의 프로그램 바이너리 작성자 식별 연구.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0C1C8B -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Caliskan-Islam 등의 프로그램 바이너리 작성자 식별 연구" ---- - -# [[Caliskan-Islam 등의 프로그램 바이너리 작성자 식별 연구]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **특징 추출 (Feature Extraction):** - 이 연구는 하이브리드 방식을 취하여 다양한 수준에서 프로그램의 특징을 추출했습니다. Netwide 및 Radare2 역어셈블러를 통해 어셈블리 코드 n-그램, 제어 흐름 그래프(CFG) 블록 유니그램 및 바이그램을 추출했습니다 [1, 2]. 또한 IDA Pro와 Hex-Rays 역컴파일러로 얻은 코드에서 단어 유니그램 및 라이브러리/내부 함수 이름을 추출하고, Joern 파서를 이용해 구문 분석을 수행하여 노드 유형 유니그램 같은 AST 기반의 특징도 활용했습니다 [1, 2]. -* **특징 차원 축소 (Feature Reduction):** - 초기에는 750,000개라는 방대하고 희소성(sparse)이 높은 특징 세트가 생성되었습니다. 랜덤 포레스트 훈련에 있어 희소성이 문제가 되자, 저자들은 이전 소스 코드 스타일로메트리 연구에서처럼 정보 이득(Information gain)을 기반으로 한 특징 선택 기법을 적용했습니다 [2]. 이를 통해 특징 차원을 2,000개 미만으로 줄였으며, 그 결과 분류 성공률이 30%에서 90%로 대폭 향상되었습니다 [2]. -* **통제된 환경에서의 식별 성능 (Google Code Jam 데이터):** - 구글 코드 잼의 C++ 제출 코드를 바탕으로 동일한 9개 문제를 푼 프로그래머 100명의 데이터를 평가했습니다. 500개의 트리로 구성된 랜덤 포레스트 분류기를 사용하여 9겹 교차 검증(9-fold cross-validation)을 진행한 결과, 축소된 특징 세트로 89.8%의 정확도를 달성했습니다 [2, 3]. 겹치지 않는 다른 100명 그룹에 적용했을 때도 92.8%의 정확도를 보였으며, 작성자 수를 600명으로 확대했을 때도 78.1%라는 비교적 높은 정확도를 유지했습니다 [3]. -* **야생(In the wild) 환경에서의 식별 성능 (GitHub 데이터):** - 실제 오픈소스 환경에서의 식별 가능성을 확인하기 위해 단일 기여자로 이루어진 GitHub의 C/C++ 저장소를 대상으로 테스트했습니다 [3, 4]. 복사된 코드나 라이브러리의 노이즈를 수작업으로 필터링한 후, 파일 수가 6~15개인 50명의 프로그래머 집단을 대상으로 실험했을 때 60.1%의 정확도를 기록했습니다 [3, 4]. -* **컴파일 최적화 및 난독화의 영향:** - 최적화 레벨 3을 적용한 컴파일 환경에서는 100명의 작성자를 대상으로 한 정확도가 85.7%로 다소 감소했으며, 심볼(Symbol) 정보를 완전히 제거한 경우에는 정확도가 23%나 급락했습니다 [3]. 그러나 Obfuscator-LLVM과 같은 도구를 통한 전문적인 난독화를 적용했을 때는 정확도 하락 폭이 단 3.6%에 불과하여, 작성자의 특정 코딩 스타일 패턴이 강력하게 유지됨을 확인했습니다 [3]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Code Stylometry]], [[Random Forest]], [[Abstract Syntax Tree (AST)]], [[Control Flow Graph (CFG)]] -- **Projects/Contexts:** [[Google Code Jam]], [[GitHub]] -- **Contradictions/Notes:** 소스 [2, 3]에 따르면, 초기 75만 개의 특징을 그대로 머신러닝에 투입했을 때는 성능이 30%에 그쳤으나, 정보 이득(Information gain)을 사용하여 특징을 2,000개 미만으로 대폭 줄였음에도 불구하고 정확도가 90% 근방으로 상승하는 반직관적인 결과를 보였습니다. 또한 심볼 정보 제거는 23%의 뚜렷한 성능 저하를 일으켰으나, 본격적인 소스 코드 난독화(Obfuscator-LLVM)는 식별 성능을 겨우 3.6%만 낮췄다는 흥미로운 점을 발견했습니다 [3]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Caliskan-Islam 등의 프로그램 바이너리 작성자 식별 연구.md]] ---- diff --git a/10_Wiki/Topics/AI/Chrome 브라우저 렌더링 성능.md b/10_Wiki/Topics/AI/Chrome 브라우저 렌더링 성능.md deleted file mode 100644 index 252f4029..00000000 --- a/10_Wiki/Topics/AI/Chrome 브라우저 렌더링 성능.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -id: P-REINFORCE-AUTO-EC1033 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Chrome 브라우저 렌더링 성능" ---- - -# [[Chrome 브라우저 렌더링 성능]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -소스에 Chrome의 핵심 렌더링 파이프라인(HTML/CSS 파싱, Layout, Paint, Composite 등)에 대한 관련 정보가 부족합니다. 단, 제공된 소스에서는 JavaScript 엔진(V8)의 메모리 관리 동작이 렌더링 및 화면 표시 성능에 미치는 영향을 다음과 같이 구체적으로 설명하고 있습니다. - -* **가비지 컬렉션(GC)과 렌더링 지연(Jank):** - V8과 같은 엔진에서 메모리를 관리하는 가비지 컬렉션 프로세스가 비효율적으로 실행될 경우, 길고 예측 불가능한 실행 일시 정지(Pause)가 발생할 수 있습니다 [1]. 이러한 일시 정지는 메인 스레드의 작업을 차단하여 상호작용이 많은 시스템이나 애니메이션의 렌더링 지연(Janky pages) 및 대기 시간(Latency) 저하 문제를 초래합니다 [2-4]. - -* **Orinoco 프로젝트와 메인 스레드 부하 감소:** - V8은 메인 스레드의 부담을 줄이기 위해 병렬(Parallel), 점진적(Incremental), 동시(Concurrent) 기법을 활용하는 Orinoco 가비지 컬렉터를 도입했습니다 [3, 5-8]. 백그라운드 작업으로 GC 부하를 분산시킴으로써 메인 스레드가 JavaScript 실행 및 렌더링을 자유롭게 처리할 수 있게 되어 애니메이션, 스크롤 및 사용자 상호작용이 훨씬 매끄러워졌으며 무거운 WebGL 게임 등에서의 일시 정지 시간을 최대 50% 단축했습니다 [9]. - -* **유휴 시간 가비지 컬렉션(Idle-time GC)을 통한 프레임 최적화:** - Chrome은 초당 60프레임(FPS)을 렌더링하기 위해 각 프레임당 약 16.6ms의 시간을 갖습니다 [10]. 애니메이션 및 렌더링 작업이 예상보다 일찍 완료될 경우, Chrome은 다음 프레임이 시작되기 전 남은 '유휴 시간(Idle time)'을 활용하여 백그라운드에서 GC 작업을 선제적으로 수행합니다 [9-11]. 이를 통해 메인 렌더링 작업의 중단을 방지하면서도 효과적으로 메모리를 관리할 수 있습니다. - -* **백그라운드 파싱(Background Parsing):** - 페이지가 로드되는 동안 V8 엔진은 백그라운드 파싱을 활용하여 스크립트를 처리합니다. 파싱 완료 즉시 사용된 임시 메모리(Zone)를 해제함으로써 메모리 소비를 줄여, 전반적인 브라우저 리소스 효율성과 렌더링 준비 속도 향상에 기여합니다 [12]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[가비지 컬렉션 (Garbage Collection)]], [[Orinoco]], [[유휴 시간 GC (Idle-time GC)]] -- **Projects/Contexts:** [[V8 JavaScript Engine]], [[Blink Renderer]] -- **Contradictions/Notes:** 소스에 관련 정보가 부족합니다. 제공된 문서는 전적으로 V8 메모리 관리, 힙 구조, 메모리 누수 분석 등 JavaScript 엔진 단의 최적화에 집중되어 있습니다. 따라서 Chrome 렌더링 파이프라인(DOM 트리, CSSOM, 컴포지팅 등) 또는 Core Web Vitals(LCP, CLS, INP)의 구체적 동작 원리에 대한 정보는 소스에 포함되어 있지 않아 기술하지 못했습니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Chrome 브라우저 렌더링 성능.md]] ---- diff --git a/10_Wiki/Topics/AI/Circular Economy Transitions.md b/10_Wiki/Topics/AI/Circular Economy Transitions.md deleted file mode 100644 index fe924d5e..00000000 --- a/10_Wiki/Topics/AI/Circular Economy Transitions.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-544952 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Circular Economy Transitions" ---- - -# [[Circular Economy Transitions]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Circular Economy Transitions.md]] ---- diff --git a/10_Wiki/Topics/AI/Computer-Aided-Design (CAD).md b/10_Wiki/Topics/AI/Computer-Aided-Design (CAD).md deleted file mode 100644 index e4ef2ac1..00000000 --- a/10_Wiki/Topics/AI/Computer-Aided-Design (CAD).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-518851 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Computer-Aided-Design (CAD)" ---- - -# [[Computer-Aided-Design (CAD)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Computer-Aided-Design (CAD).md]] ---- diff --git a/10_Wiki/Topics/AI/Connect AI 기술 문서 및 사용 설명서.md b/10_Wiki/Topics/AI/Connect AI 기술 문서 및 사용 설명서.md deleted file mode 100644 index bf563d14..00000000 --- a/10_Wiki/Topics/AI/Connect AI 기술 문서 및 사용 설명서.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D1D238 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Connect AI 기술 문서 및 사용 설명서" ---- - -# [[Connect AI 기술 문서 및 사용 설명서]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Connect AI 기술 문서 및 사용 설명서.md]] ---- diff --git a/10_Wiki/Topics/AI/Connect AI 시스템 아키텍처 및 데이터 흐름 분석.md b/10_Wiki/Topics/AI/Connect AI 시스템 아키텍처 및 데이터 흐름 분석.md deleted file mode 100644 index 612aad98..00000000 --- a/10_Wiki/Topics/AI/Connect AI 시스템 아키텍처 및 데이터 흐름 분석.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3841AD -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Connect AI 시스템 아키텍처 및 데이터 흐름 분석" ---- - -# [[Connect AI 시스템 아키텍처 및 데이터 흐름 분석]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Connect AI 시스템 아키텍처 및 데이터 흐름 분석.md]] ---- diff --git a/10_Wiki/Topics/AI/Conways On Numbers and Games.md b/10_Wiki/Topics/AI/Conways On Numbers and Games.md deleted file mode 100644 index 3e6033d6..00000000 --- a/10_Wiki/Topics/AI/Conways On Numbers and Games.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6026CC -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Conways On Numbers and Games" ---- - -# [[Conways On Numbers and Games]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Conway's On Numbers and Games.md]] ---- diff --git a/10_Wiki/Topics/AI/Data-Augmentation-for-Medical-Imaging.md b/10_Wiki/Topics/AI/Data-Augmentation-for-Medical-Imaging.md deleted file mode 100644 index 91aecaf2..00000000 --- a/10_Wiki/Topics/AI/Data-Augmentation-for-Medical-Imaging.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-258909 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Data-Augmentation-for-Medical-Imaging" ---- - -# [[Data-Augmentation-for-Medical-Imaging]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Data-Augmentation-for-Medical-Imaging.md]] ---- diff --git a/10_Wiki/Topics/AI/Dead Space (Series).md b/10_Wiki/Topics/AI/Dead Space (Series).md deleted file mode 100644 index afd55743..00000000 --- a/10_Wiki/Topics/AI/Dead Space (Series).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-989941 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Dead Space (Series)" ---- - -# [[Dead Space (Series)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Dead Space (Series).md]] ---- diff --git a/10_Wiki/Topics/AI/Declaration Files (dts).md b/10_Wiki/Topics/AI/Declaration Files (dts).md deleted file mode 100644 index dd1ea1d1..00000000 --- a/10_Wiki/Topics/AI/Declaration Files (dts).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D2F3A4 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Declaration Files (dts)" ---- - -# [[Declaration Files (dts)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Declaration Files (.d.ts).md]] ---- diff --git a/10_Wiki/Topics/AI/Deepfake-Detection-Research.md b/10_Wiki/Topics/AI/Deepfake-Detection-Research.md deleted file mode 100644 index e8ec59a9..00000000 --- a/10_Wiki/Topics/AI/Deepfake-Detection-Research.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DD74C9 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Deepfake-Detection-Research" ---- - -# [[Deepfake-Detection-Research]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Deepfake-Detection-Research.md]] ---- diff --git a/10_Wiki/Topics/AI/Dissipative Structures.md b/10_Wiki/Topics/AI/Dissipative Structures.md deleted file mode 100644 index c011afd1..00000000 --- a/10_Wiki/Topics/AI/Dissipative Structures.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-25ABE0 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Dissipative Structures" ---- - -# [[Dissipative Structures]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Dissipative Structures.md]] ---- diff --git a/10_Wiki/Topics/AI/EVE Online (Spreadsheet Economy).md b/10_Wiki/Topics/AI/EVE Online (Spreadsheet Economy).md deleted file mode 100644 index 04580c58..00000000 --- a/10_Wiki/Topics/AI/EVE Online (Spreadsheet Economy).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-442180 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - EVE Online (Spreadsheet Economy)" ---- - -# [[EVE Online (Spreadsheet Economy)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/EVE Online (Spreadsheet Economy).md]] ---- diff --git a/10_Wiki/Topics/AI/Europeana.md b/10_Wiki/Topics/AI/Europeana.md deleted file mode 100644 index c1804dd8..00000000 --- a/10_Wiki/Topics/AI/Europeana.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-683994 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Europeana" ---- - -# [[Europeana]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Europeana.md]] ---- diff --git a/10_Wiki/Topics/AI/Evolutionary-Biology.md b/10_Wiki/Topics/AI/Evolutionary-Biology.md deleted file mode 100644 index 1fa67ec4..00000000 --- a/10_Wiki/Topics/AI/Evolutionary-Biology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-29AB70 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Evolutionary-Biology" ---- - -# [[Evolutionary-Biology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Evolutionary-Biology.md]] ---- diff --git a/10_Wiki/Topics/AI/Exercise-Physiology.md b/10_Wiki/Topics/AI/Exercise-Physiology.md deleted file mode 100644 index c50382a3..00000000 --- a/10_Wiki/Topics/AI/Exercise-Physiology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-415D41 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Exercise-Physiology" ---- - -# [[Exercise-Physiology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Exercise-Physiology.md]] ---- diff --git a/10_Wiki/Topics/AI/Firefox.md b/10_Wiki/Topics/AI/Firefox.md deleted file mode 100644 index f045c8eb..00000000 --- a/10_Wiki/Topics/AI/Firefox.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7265C7 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Firefox" ---- - -# [[Firefox]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -**웹 성능 및 네트워크 최적화** -* Firefox는 Interop 2025 프로젝트의 일환으로 Largest Contentful Paint(LCP) 및 Interaction to Next Paint(INP) 지표 지원 작업을 시작했으며, 2025년 10월 배포된 버전 144부터 INP를 정식 지원하고 있습니다 [1]. -* Time to First Byte(TTFB) 점수를 측정할 때 Firefox는 기존부터 early hint 응답 데이터를 포함하여 계산해왔으며, 2025년 2월 Chrome 역시 이 방식을 따르도록 변경되었습니다 [2]. -* 리소스의 사전 로딩을 위한 추측 규칙(Speculation Rules) 프로토타입을 작업 중이며 [3], 재방문 시 다운로드 크기를 줄일 수 있는 압축 딕셔너리(Compression Dictionaries) 지원도 활발히 개발하고 있습니다 [4]. - -**이미지 포맷 지원** -* 과거 Mozilla는 저수준 언어로 작성된 복잡한 디코더가 일으킬 수 있는 보안 위험을 우려하여 JPEG XL 도입을 꺼렸습니다 [5]. 그러나 2024년 9월 Google과 Rust 기반 디코더에 대해 논의한 후 입장을 선회했습니다 [5]. - -**WebGL 지원 및 프로파일링** -* 보안상의 이유로 듀얼 GPU를 사용하는 Mac 시스템에서는 WebGL 컨텍스트를 생성하기 전에 반드시 개별(Discrete) GPU로 전환하여 머물도록 강제합니다 [6]. GPU가 블랙리스트에 오르더라도 `WebGLRenderingContext` 객체 자체는 존재합니다 [7]. -* 개발자가 WebGL 성능을 분석할 때 `about:config`에서 `layers.acceleration.draw-fps`를 활성화하여 FPS 카운터를 표시할 수 있습니다 [8]. -* Vsync를 비활성화하려면 `layout.frame_rate`를 0으로, `layers.offmainthreadcomposition.frame-rate`를 1000으로 설정하고, ANGLE을 우회하여 네이티브 OpenGL을 테스트하려면 `webgl.prefer-native-gl`을 활성화할 수 있습니다 [9, 10]. -* 다만, 보안을 이유로 `EXT_disjoint_timer_query` 확장은 지원이 중단되었으며, `EXT_disjoint_timer_query_webgl2`가 작동하지 않거나 브라우저 탭을 다운시키는 버그가 보고된 바 있습니다 [11-14]. - -**WebGPU 생태계와 안정성** -* Firefox는 버전 141부터 Windows 플랫폼에 한정하여 WebGPU 지원을 도입하기 시작했습니다 [15]. -* Firefox의 렌더링 엔진인 Gecko는 WebGPU 타임스탬프 쿼리(timestamp queries) 지원에 대해 긍정적인 입장을 냈습니다 [16, 17]. -* 하지만 현재 Firefox 내 WebGPU 생태계는 일부 하드웨어에서 여전히 불안정한 상태입니다. 특정 기기(예: Lenovo MX350)에서는 실행 시 "WebGPU is disabled by blocklist"라는 오류와 함께 차단되며, Intel NUC와 같은 환경에서는 타임스탬프 쿼리가 비정상적으로 긴 프레임 시간을 보고하는 버그가 존재합니다 [18]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[WebGPU]], [[WebGL]], [[Interaction to Next Paint (INP)]], [[JPEG XL]] -- **Projects/Contexts:** [[Interop 2025]] -- **Contradictions/Notes:** 소스에 따르면 Firefox는 보안 문제를 이유로 WebGL의 타이머 쿼리(`EXT_disjoint_timer_query`) 기능을 지원하지 않았으나 [12, 14], WebGPU의 타임스탬프 쿼리 기능에 대해서는 긍정적인 도입 의사를 보였습니다 [16, 17]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Firefox.md]] ---- diff --git a/10_Wiki/Topics/AI/GRPO (Group Relative Policy Optimization).md b/10_Wiki/Topics/AI/GRPO (Group Relative Policy Optimization).md deleted file mode 100644 index 9058702b..00000000 --- a/10_Wiki/Topics/AI/GRPO (Group Relative Policy Optimization).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1312F9 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - GRPO (Group Relative Policy Optimization)" ---- - -# [[GRPO (Group Relative Policy Optimization)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/GRPO (Group Relative Policy Optimization).md]] ---- diff --git a/10_Wiki/Topics/AI/Gait-Analysis-Methodologies.md b/10_Wiki/Topics/AI/Gait-Analysis-Methodologies.md deleted file mode 100644 index e6399682..00000000 --- a/10_Wiki/Topics/AI/Gait-Analysis-Methodologies.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-ECB110 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Gait-Analysis-Methodologies" ---- - -# [[Gait-Analysis-Methodologies]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Gait-Analysis-Methodologies.md]] ---- diff --git a/10_Wiki/Topics/AI/Game Balance Theory.md b/10_Wiki/Topics/AI/Game Balance Theory.md deleted file mode 100644 index f4b69677..00000000 --- a/10_Wiki/Topics/AI/Game Balance Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FE4B62 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game Balance Theory" ---- - -# [[Game Balance Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game Balance Theory.md]] ---- diff --git a/10_Wiki/Topics/AI/Game Economy Modeling.md b/10_Wiki/Topics/AI/Game Economy Modeling.md deleted file mode 100644 index 1bda3a09..00000000 --- a/10_Wiki/Topics/AI/Game Economy Modeling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-80302B -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game Economy Modeling" ---- - -# [[Game Economy Modeling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game Economy Modeling.md]] ---- diff --git a/10_Wiki/Topics/AI/Game Engine Architecture (Jason Gregory).md b/10_Wiki/Topics/AI/Game Engine Architecture (Jason Gregory).md deleted file mode 100644 index b1f1c45e..00000000 --- a/10_Wiki/Topics/AI/Game Engine Architecture (Jason Gregory).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5CDF1A -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game Engine Architecture (Jason Gregory)" ---- - -# [[Game Engine Architecture (Jason Gregory)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game Engine Architecture (Jason Gregory).md]] ---- diff --git a/10_Wiki/Topics/AI/Game Engine Architecture.md b/10_Wiki/Topics/AI/Game Engine Architecture.md deleted file mode 100644 index e411e03e..00000000 --- a/10_Wiki/Topics/AI/Game Engine Architecture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BD4476 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game Engine Architecture" ---- - -# [[Game Engine Architecture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game Engine Architecture.md]] ---- diff --git a/10_Wiki/Topics/AI/Gamification Theory.md b/10_Wiki/Topics/AI/Gamification Theory.md deleted file mode 100644 index 7c04375b..00000000 --- a/10_Wiki/Topics/AI/Gamification Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2DF448 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Gamification Theory" ---- - -# [[Gamification Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Gamification Theory.md]] ---- diff --git a/10_Wiki/Topics/AI/Geographic-Information-Systems (GIS).md b/10_Wiki/Topics/AI/Geographic-Information-Systems (GIS).md deleted file mode 100644 index d009d8d2..00000000 --- a/10_Wiki/Topics/AI/Geographic-Information-Systems (GIS).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-395A13 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Geographic-Information-Systems (GIS)" ---- - -# [[Geographic-Information-Systems (GIS)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Geographic-Information-Systems (GIS).md]] ---- diff --git a/10_Wiki/Topics/AI/Goal Misgeneralization (목표 오일반화).md b/10_Wiki/Topics/AI/Goal Misgeneralization (목표 오일반화).md deleted file mode 100644 index ee53e944..00000000 --- a/10_Wiki/Topics/AI/Goal Misgeneralization (목표 오일반화).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-85A1A5 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Goal Misgeneralization (목표 오일반화)" ---- - -# [[Goal Misgeneralization (목표 오일반화)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Goal Misgeneralization (목표 오일반화).md]] ---- diff --git a/10_Wiki/Topics/AI/Growth Mindset Intervention in Education.md b/10_Wiki/Topics/AI/Growth Mindset Intervention in Education.md deleted file mode 100644 index 743c6681..00000000 --- a/10_Wiki/Topics/AI/Growth Mindset Intervention in Education.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D9A336 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Growth Mindset Intervention in Education" ---- - -# [[Growth Mindset Intervention in Education]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Growth Mindset Intervention in Education.md]] ---- diff --git a/10_Wiki/Topics/AI/HBO Prestige Television.md b/10_Wiki/Topics/AI/HBO Prestige Television.md deleted file mode 100644 index 4fb8cd81..00000000 --- a/10_Wiki/Topics/AI/HBO Prestige Television.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4ED001 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - HBO Prestige Television" ---- - -# [[HBO Prestige Television]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/HBO Prestige Television.md]] ---- diff --git a/10_Wiki/Topics/AI/HHH (Helpful Harmless Honest).md b/10_Wiki/Topics/AI/HHH (Helpful Harmless Honest).md deleted file mode 100644 index 9ac6c971..00000000 --- a/10_Wiki/Topics/AI/HHH (Helpful Harmless Honest).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-11A9D4 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - HHH (Helpful Harmless Honest)" ---- - -# [[HHH (Helpful Harmless Honest)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/HHH (Helpful, Harmless, Honest).md]] ---- diff --git a/10_Wiki/Topics/AI/Health Informatics (mHealth).md b/10_Wiki/Topics/AI/Health Informatics (mHealth).md deleted file mode 100644 index 5a5e5da0..00000000 --- a/10_Wiki/Topics/AI/Health Informatics (mHealth).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A9629D -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Health Informatics (mHealth)" ---- - -# [[Health Informatics (mHealth)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Health Informatics (mHealth).md]] ---- diff --git a/10_Wiki/Topics/AI/Heap Snapshot(힙 스냅샷).md b/10_Wiki/Topics/AI/Heap Snapshot(힙 스냅샷).md deleted file mode 100644 index a3fac0ac..00000000 --- a/10_Wiki/Topics/AI/Heap Snapshot(힙 스냅샷).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7C13B9 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Heap Snapshot(힙 스냅샷)" ---- - -# [[Heap Snapshot(힙 스냅샷)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> **Heap Snapshot(힙 스냅샷)**은 특정 시점에 애플리케이션의 전체 객체 그래프와 힙 메모리 상태를 캡처한 데이터이다 [1, 2]. 주로 불필요하게 남아있는 객체의 유지 경로(Retaining path)를 식별하여 메모리 누수를 탐지하고 분석하기 위해 사용된다 [2, 3]. Chrome DevTools나 IntelliJ IDEA 같은 도구를 통해 생성할 수 있으며, 여러 스냅샷을 비교함으로써 메모리 할당 패턴과 가비지 컬렉션 이후의 잔존 메모리를 파악할 수 있다 [1, 4-6]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Memory Leak (메모리 누수)]], [[Garbage Collection (가비지 컬렉션)]], [[Retained Size vs Shallow Size]], [[Closure Variable Retention]] -- **Projects/Contexts:** [[Chrome DevTools Memory Panel]], [[V8 JavaScript Engine]], [[Node.js Production Monitoring]] -- **Contradictions/Notes:** 미니파이(Minified)된 프로덕션 코드에서는 식별자 이름이 변형되어 Retainer 체인을 알아보기 어렵기 때문에, DevTools에 소스 맵(Source maps)을 연결하거나 처음부터 함수에 명시적으로 이름을 지정(Named functions)하는 것이 분석에 훨씬 유리하다 [19, 25]. 또한, 스냅샷에서 메모리가 증가했다고 해서 모두 누수인 것은 아니며, 캐시나 Undo 히스토리처럼 의도적으로 메모리를 유지하는 "의도된 보존(Intentional retention)"과 실제 누수를 구별해야 한다 [19]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Heap Snapshot(힙 스냅샷).md]] ---- diff --git a/10_Wiki/Topics/AI/Hebbian Theory.md b/10_Wiki/Topics/AI/Hebbian Theory.md deleted file mode 100644 index 947ba24b..00000000 --- a/10_Wiki/Topics/AI/Hebbian Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D8B3D2 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Hebbian Theory" ---- - -# [[Hebbian Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Hebbian Theory.md]] ---- diff --git a/10_Wiki/Topics/AI/High-Frequency Trading Models.md b/10_Wiki/Topics/AI/High-Frequency Trading Models.md deleted file mode 100644 index 8b180f54..00000000 --- a/10_Wiki/Topics/AI/High-Frequency Trading Models.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6E0050 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - High-Frequency Trading Models" ---- - -# [[High-Frequency Trading Models]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/High-Frequency Trading Models.md]] ---- diff --git a/10_Wiki/Topics/AI/High-Performance Training Programs (Tier 1 Orgs).md b/10_Wiki/Topics/AI/High-Performance Training Programs (Tier 1 Orgs).md deleted file mode 100644 index a9cb4f03..00000000 --- a/10_Wiki/Topics/AI/High-Performance Training Programs (Tier 1 Orgs).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-30B011 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - High-Performance Training Programs (Tier 1 Orgs)" ---- - -# [[High-Performance Training Programs (Tier 1 Orgs)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/High-Performance Training Programs (Tier 1 Orgs).md]] ---- diff --git a/10_Wiki/Topics/AI/Hyperinflation in Closed-Loop Systems.md b/10_Wiki/Topics/AI/Hyperinflation in Closed-Loop Systems.md deleted file mode 100644 index 75b2932d..00000000 --- a/10_Wiki/Topics/AI/Hyperinflation in Closed-Loop Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-01FD40 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Hyperinflation in Closed-Loop Systems" ---- - -# [[Hyperinflation in Closed-Loop Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Hyperinflation in Closed-Loop Systems.md]] ---- diff --git a/10_Wiki/Topics/AI/IEEE P36521.md b/10_Wiki/Topics/AI/IEEE P36521.md deleted file mode 100644 index 7ccfc2bc..00000000 --- a/10_Wiki/Topics/AI/IEEE P36521.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5A9960 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - IEEE P36521" ---- - -# [[IEEE P36521]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/IEEE P3652.1.md]] ---- diff --git a/10_Wiki/Topics/AI/Immersive Sim Design.md b/10_Wiki/Topics/AI/Immersive Sim Design.md deleted file mode 100644 index 8c18ab92..00000000 --- a/10_Wiki/Topics/AI/Immersive Sim Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A1E36D -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Immersive Sim Design" ---- - -# [[Immersive Sim Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Immersive Sim Design.md]] ---- diff --git a/10_Wiki/Topics/AI/Immersive Sims (eg Deus Ex Dishonored).md b/10_Wiki/Topics/AI/Immersive Sims (eg Deus Ex Dishonored).md deleted file mode 100644 index 5c64c6ee..00000000 --- a/10_Wiki/Topics/AI/Immersive Sims (eg Deus Ex Dishonored).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F70063 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Immersive Sims (eg Deus Ex Dishonored)" ---- - -# [[Immersive Sims (eg Deus Ex Dishonored)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Immersive Sims (e.g., Deus Ex, Dishonored).md]] ---- diff --git a/10_Wiki/Topics/AI/Immersive Sims (eg Deus Ex Thief).md b/10_Wiki/Topics/AI/Immersive Sims (eg Deus Ex Thief).md deleted file mode 100644 index c3d12af2..00000000 --- a/10_Wiki/Topics/AI/Immersive Sims (eg Deus Ex Thief).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B11AD8 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Immersive Sims (eg Deus Ex Thief)" ---- - -# [[Immersive Sims (eg Deus Ex Thief)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Immersive Sims (e.g., Deus Ex, Thief).md]] ---- diff --git a/10_Wiki/Topics/AI/In-Context Learning (ICL 문맥 내 학습).md b/10_Wiki/Topics/AI/In-Context Learning (ICL 문맥 내 학습).md deleted file mode 100644 index 6cc4acab..00000000 --- a/10_Wiki/Topics/AI/In-Context Learning (ICL 문맥 내 학습).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0A8DD5 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - In-Context Learning (ICL 문맥 내 학습)" ---- - -# [[In-Context Learning (ICL 문맥 내 학습)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/In-Context Learning (ICL, 문맥 내 학습).md]] ---- diff --git a/10_Wiki/Topics/AI/Indoor Wayfinding for Smart Cities.md b/10_Wiki/Topics/AI/Indoor Wayfinding for Smart Cities.md deleted file mode 100644 index d5a35407..00000000 --- a/10_Wiki/Topics/AI/Indoor Wayfinding for Smart Cities.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FA7892 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Indoor Wayfinding for Smart Cities" ---- - -# [[Indoor Wayfinding for Smart Cities]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Indoor Wayfinding for Smart Cities.md]] ---- diff --git a/10_Wiki/Topics/AI/Industrial Metaverse.md b/10_Wiki/Topics/AI/Industrial Metaverse.md deleted file mode 100644 index a88b8819..00000000 --- a/10_Wiki/Topics/AI/Industrial Metaverse.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-ED0741 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Industrial Metaverse" ---- - -# [[Industrial Metaverse]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Industrial Metaverse.md]] ---- diff --git a/10_Wiki/Topics/AI/Industrial-Automation.md b/10_Wiki/Topics/AI/Industrial-Automation.md deleted file mode 100644 index 4f4ddb6c..00000000 --- a/10_Wiki/Topics/AI/Industrial-Automation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-879F81 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Industrial-Automation" ---- - -# [[Industrial-Automation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Industrial-Automation.md]] ---- diff --git a/10_Wiki/Topics/AI/Injury-Prevention-Protocols.md b/10_Wiki/Topics/AI/Injury-Prevention-Protocols.md deleted file mode 100644 index 7bbbfae3..00000000 --- a/10_Wiki/Topics/AI/Injury-Prevention-Protocols.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F84241 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Injury-Prevention-Protocols" ---- - -# [[Injury-Prevention-Protocols]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Injury-Prevention-Protocols.md]] ---- diff --git a/10_Wiki/Topics/AI/Interface Segregation Principle.md b/10_Wiki/Topics/AI/Interface Segregation Principle.md deleted file mode 100644 index 25db9f4d..00000000 --- a/10_Wiki/Topics/AI/Interface Segregation Principle.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6A25D0 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Interface Segregation Principle" ---- - -# [[Interface Segregation Principle]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Interface Segregation Principle.md]] ---- diff --git a/10_Wiki/Topics/AI/Interface-Segregation-Principle-in-TS.md b/10_Wiki/Topics/AI/Interface-Segregation-Principle-in-TS.md deleted file mode 100644 index 7f867bc2..00000000 --- a/10_Wiki/Topics/AI/Interface-Segregation-Principle-in-TS.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D46100 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Interface-Segregation-Principle-in-TS" ---- - -# [[Interface-Segregation-Principle-in-TS]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Interface-Segregation-Principle-in-TS.md]] ---- diff --git a/10_Wiki/Topics/AI/Interpolation and Extrapolation.md b/10_Wiki/Topics/AI/Interpolation and Extrapolation.md deleted file mode 100644 index 74fdb579..00000000 --- a/10_Wiki/Topics/AI/Interpolation and Extrapolation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C3D464 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Interpolation and Extrapolation" ---- - -# [[Interpolation and Extrapolation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Interpolation and Extrapolation.md]] ---- diff --git a/10_Wiki/Topics/AI/InversifyJS.md b/10_Wiki/Topics/AI/InversifyJS.md deleted file mode 100644 index 265e6032..00000000 --- a/10_Wiki/Topics/AI/InversifyJS.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-020B35 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - InversifyJS" ---- - -# [[InversifyJS]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/InversifyJS.md]] ---- diff --git a/10_Wiki/Topics/AI/Irrational Games.md b/10_Wiki/Topics/AI/Irrational Games.md deleted file mode 100644 index 7a13e8c6..00000000 --- a/10_Wiki/Topics/AI/Irrational Games.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8F0A9E -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Irrational Games" ---- - -# [[Irrational Games]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Irrational Games.md]] ---- diff --git a/10_Wiki/Topics/AI/Itô Calculus.md b/10_Wiki/Topics/AI/Itô Calculus.md deleted file mode 100644 index afa98168..00000000 --- a/10_Wiki/Topics/AI/Itô Calculus.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D65DD9 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Itô Calculus" ---- - -# [[Itô Calculus]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Itô Calculus.md]] ---- diff --git a/10_Wiki/Topics/AI/J-curve S-curve (AI 발전의 동학).md b/10_Wiki/Topics/AI/J-curve S-curve (AI 발전의 동학).md deleted file mode 100644 index 7f1bbded..00000000 --- a/10_Wiki/Topics/AI/J-curve S-curve (AI 발전의 동학).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-25FEC6 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - J-curve S-curve (AI 발전의 동학)" ---- - -# [[J-curve S-curve (AI 발전의 동학)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/J-curve & S-curve (AI 발전의 동학).md]] ---- diff --git a/10_Wiki/Topics/AI/JSON-Schema.md b/10_Wiki/Topics/AI/JSON-Schema.md deleted file mode 100644 index 3210abfd..00000000 --- a/10_Wiki/Topics/AI/JSON-Schema.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CF1F59 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - JSON-Schema" ---- - -# [[JSON-Schema]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/JSON-Schema.md]] ---- diff --git a/10_Wiki/Topics/AI/Jailbreaking (탈옥).md b/10_Wiki/Topics/AI/Jailbreaking (탈옥).md deleted file mode 100644 index 4955b91d..00000000 --- a/10_Wiki/Topics/AI/Jailbreaking (탈옥).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C6F5E9 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Jailbreaking (탈옥)" ---- - -# [[Jailbreaking (탈옥)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Jailbreaking (탈옥).md]] ---- diff --git a/10_Wiki/Topics/AI/Jenkins.md b/10_Wiki/Topics/AI/Jenkins.md deleted file mode 100644 index c5bcd1bd..00000000 --- a/10_Wiki/Topics/AI/Jenkins.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -id: P-REINFORCE-AUTO-937A74 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Jenkins" ---- - -# [[Jenkins]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **SonarQube와의 통합을 통한 품질 검사 자동화:** Jenkins는 SonarQube와 원활하게 통합될 수 있는 다양한 개발 도구 중 하나입니다 [1]. Jenkins와 같은 CI/CD 파이프라인에 SonarQube를 연동함으로써 개발자는 AI가 생성한 코드 등을 포함한 소스 코드에 대해 즉각적인 피드백을 받을 수 있습니다 [1, 2]. 이는 자동화된 품질 검사를 일상적인 개발 활동의 핵심 구성 요소로 유지하게 해줍니다 [2]. -* **Endor Labs 통합:** Jenkins는 소프트웨어 공급망 보안 플랫폼인 Endor Labs 시스템과 연동 가능한 통합(Integrations) 도구로도 활용됩니다 [3]. -* **정보 부족:** Jenkins의 아키텍처, 역사, 구체적인 기능 및 내부 메커니즘 등 루트 주제를 깊이 이해하는 데 필요한 상세 내용에 대해서는 소스에 관련 정보가 부족합니다. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[SonarQube]], [[CI/CD Pipelines]], [[Endor Labs]] -- **Projects/Contexts:** [[Automated Code Review]], [[Software Supply Chain Security]] -- **Contradictions/Notes:** 소스에 관련 정보가 부족합니다. 소스 문헌들은 Jenkins의 단독적인 기능이나 특성을 설명하지 않으며, 오직 다른 코드 분석/보안 도구(SonarQube, Endor Labs)가 연동할 수 있는 CI/CD 플랫폼의 예시로만 언급하고 있습니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Jenkins.md]] ---- diff --git a/10_Wiki/Topics/AI/KTO (Kahneman-Tversky Optimization).md b/10_Wiki/Topics/AI/KTO (Kahneman-Tversky Optimization).md deleted file mode 100644 index 6b3f793b..00000000 --- a/10_Wiki/Topics/AI/KTO (Kahneman-Tversky Optimization).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-085B91 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - KTO (Kahneman-Tversky Optimization)" ---- - -# [[KTO (Kahneman-Tversky Optimization)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/KTO (Kahneman-Tversky Optimization).md]] ---- diff --git a/10_Wiki/Topics/AI/Ken Levine-Design-Philosophy.md b/10_Wiki/Topics/AI/Ken Levine-Design-Philosophy.md deleted file mode 100644 index 2fe2f556..00000000 --- a/10_Wiki/Topics/AI/Ken Levine-Design-Philosophy.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DE50FF -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ken Levine-Design-Philosophy" ---- - -# [[Ken Levine-Design-Philosophy]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ken Levine-Design-Philosophy.md]] ---- diff --git a/10_Wiki/Topics/AI/Keyof-Operator.md b/10_Wiki/Topics/AI/Keyof-Operator.md deleted file mode 100644 index 663515f1..00000000 --- a/10_Wiki/Topics/AI/Keyof-Operator.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D5D6DC -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Keyof-Operator" ---- - -# [[Keyof-Operator]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Keyof-Operator.md]] ---- diff --git a/10_Wiki/Topics/AI/Kinematic-Modeling.md b/10_Wiki/Topics/AI/Kinematic-Modeling.md deleted file mode 100644 index 8ba31616..00000000 --- a/10_Wiki/Topics/AI/Kinematic-Modeling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-47456C -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Kinematic-Modeling" ---- - -# [[Kinematic-Modeling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Kinematic-Modeling.md]] ---- diff --git a/10_Wiki/Topics/AI/LLM Alignment (LLM 정렬).md b/10_Wiki/Topics/AI/LLM Alignment (LLM 정렬).md deleted file mode 100644 index da75e1fd..00000000 --- a/10_Wiki/Topics/AI/LLM Alignment (LLM 정렬).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E3A7CD -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - LLM Alignment (LLM 정렬)" ---- - -# [[LLM Alignment (LLM 정렬)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/LLM Alignment (LLM 정렬).md]] ---- diff --git a/10_Wiki/Topics/AI/LLM Hallucination (언어 모델 환각).md b/10_Wiki/Topics/AI/LLM Hallucination (언어 모델 환각).md deleted file mode 100644 index f5717e5c..00000000 --- a/10_Wiki/Topics/AI/LLM Hallucination (언어 모델 환각).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3DFBCC -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - LLM Hallucination (언어 모델 환각)" ---- - -# [[LLM Hallucination (언어 모델 환각)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/LLM Hallucination (언어 모델 환각).md]] ---- diff --git a/10_Wiki/Topics/AI/Language-Acquisition-Apps.md b/10_Wiki/Topics/AI/Language-Acquisition-Apps.md deleted file mode 100644 index dd8ed69d..00000000 --- a/10_Wiki/Topics/AI/Language-Acquisition-Apps.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6239D3 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Language-Acquisition-Apps" ---- - -# [[Language-Acquisition-Apps]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Language-Acquisition-Apps.md]] ---- diff --git a/10_Wiki/Topics/AI/Large-Scale-Enterprise-Frontend-Architectures.md b/10_Wiki/Topics/AI/Large-Scale-Enterprise-Frontend-Architectures.md deleted file mode 100644 index bdf8d42a..00000000 --- a/10_Wiki/Topics/AI/Large-Scale-Enterprise-Frontend-Architectures.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-69DDE6 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Large-Scale-Enterprise-Frontend-Architectures" ---- - -# [[Large-Scale-Enterprise-Frontend-Architectures]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Large-Scale-Enterprise-Frontend-Architectures.md]] ---- diff --git a/10_Wiki/Topics/AI/Large-Scale-Knowledge-Integration.md b/10_Wiki/Topics/AI/Large-Scale-Knowledge-Integration.md deleted file mode 100644 index c56c0fba..00000000 --- a/10_Wiki/Topics/AI/Large-Scale-Knowledge-Integration.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E04C5A -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Large-Scale-Knowledge-Integration" ---- - -# [[Large-Scale-Knowledge-Integration]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Large-Scale-Knowledge-Integration.md]] ---- diff --git a/10_Wiki/Topics/AI/Large-scale-Frontend-Architecture.md b/10_Wiki/Topics/AI/Large-scale-Frontend-Architecture.md deleted file mode 100644 index b689d7b5..00000000 --- a/10_Wiki/Topics/AI/Large-scale-Frontend-Architecture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-06FE72 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Large-scale-Frontend-Architecture" ---- - -# [[Large-scale-Frontend-Architecture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Large-scale-Frontend-Architecture.md]] ---- diff --git a/10_Wiki/Topics/AI/Large-scale-TypeScript-Monorepos.md b/10_Wiki/Topics/AI/Large-scale-TypeScript-Monorepos.md deleted file mode 100644 index 3f3c1e1c..00000000 --- a/10_Wiki/Topics/AI/Large-scale-TypeScript-Monorepos.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-EE05DB -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Large-scale-TypeScript-Monorepos" ---- - -# [[Large-scale-TypeScript-Monorepos]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Large-scale-TypeScript-Monorepos.md]] ---- diff --git a/10_Wiki/Topics/AI/Lerna-Legacy-Management.md b/10_Wiki/Topics/AI/Lerna-Legacy-Management.md deleted file mode 100644 index 40550359..00000000 --- a/10_Wiki/Topics/AI/Lerna-Legacy-Management.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0CDF64 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Lerna-Legacy-Management" ---- - -# [[Lerna-Legacy-Management]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Lerna-Legacy-Management.md]] ---- diff --git a/10_Wiki/Topics/AI/Level Design Architecture.md b/10_Wiki/Topics/AI/Level Design Architecture.md deleted file mode 100644 index fdf64fe0..00000000 --- a/10_Wiki/Topics/AI/Level Design Architecture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E822FE -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Level Design Architecture" ---- - -# [[Level Design Architecture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Level Design Architecture.md]] ---- diff --git a/10_Wiki/Topics/AI/Level Design Automation.md b/10_Wiki/Topics/AI/Level Design Automation.md deleted file mode 100644 index fa042bad..00000000 --- a/10_Wiki/Topics/AI/Level Design Automation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1A2A10 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Level Design Automation" ---- - -# [[Level Design Automation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Level Design Automation.md]] ---- diff --git a/10_Wiki/Topics/AI/Level-Design-Automation.md b/10_Wiki/Topics/AI/Level-Design-Automation.md deleted file mode 100644 index 787fcaa7..00000000 --- a/10_Wiki/Topics/AI/Level-Design-Automation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7DF19B -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Level-Design-Automation" ---- - -# [[Level-Design-Automation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Level-Design-Automation.md]] ---- diff --git a/10_Wiki/Topics/AI/Linear Representation Hypothesis (선형 표현 가설).md b/10_Wiki/Topics/AI/Linear Representation Hypothesis (선형 표현 가설).md deleted file mode 100644 index 890000df..00000000 --- a/10_Wiki/Topics/AI/Linear Representation Hypothesis (선형 표현 가설).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CEDE85 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Linear Representation Hypothesis (선형 표현 가설)" ---- - -# [[Linear Representation Hypothesis (선형 표현 가설)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Linear Representation Hypothesis (선형 표현 가설).md]] ---- diff --git a/10_Wiki/Topics/AI/Live Service Game Design.md b/10_Wiki/Topics/AI/Live Service Game Design.md deleted file mode 100644 index 5b36a549..00000000 --- a/10_Wiki/Topics/AI/Live Service Game Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-84B088 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Live Service Game Design" ---- - -# [[Live Service Game Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Live Service Game Design.md]] ---- diff --git a/10_Wiki/Topics/AI/LiveOps Management.md b/10_Wiki/Topics/AI/LiveOps Management.md deleted file mode 100644 index c74ab2e8..00000000 --- a/10_Wiki/Topics/AI/LiveOps Management.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-79CEB3 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - LiveOps Management" ---- - -# [[LiveOps Management]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/LiveOps Management.md]] ---- diff --git a/10_Wiki/Topics/AI/Locus of Control.md b/10_Wiki/Topics/AI/Locus of Control.md deleted file mode 100644 index 96fa72c7..00000000 --- a/10_Wiki/Topics/AI/Locus of Control.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-83F003 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Locus of Control" ---- - -# [[Locus of Control]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Locus of Control.md]] ---- diff --git a/10_Wiki/Topics/AI/Locus-of-Control.md b/10_Wiki/Topics/AI/Locus-of-Control.md deleted file mode 100644 index 2293abab..00000000 --- a/10_Wiki/Topics/AI/Locus-of-Control.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C947BF -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Locus-of-Control" ---- - -# [[Locus-of-Control]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Locus-of-Control.md]] ---- diff --git a/10_Wiki/Topics/AI/Ludology-vs-Narratology.md b/10_Wiki/Topics/AI/Ludology-vs-Narratology.md deleted file mode 100644 index 6632511b..00000000 --- a/10_Wiki/Topics/AI/Ludology-vs-Narratology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-977AD2 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ludology-vs-Narratology" ---- - -# [[Ludology-vs-Narratology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ludology-vs-Narratology.md]] ---- diff --git a/10_Wiki/Topics/AI/MDA-P-Framework.md b/10_Wiki/Topics/AI/MDA-P-Framework.md deleted file mode 100644 index bc3156be..00000000 --- a/10_Wiki/Topics/AI/MDA-P-Framework.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CCDD20 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - MDA-P-Framework" ---- - -# [[MDA-P-Framework]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/MDA-P-Framework.md]] ---- diff --git a/10_Wiki/Topics/AI/MMORPG Economic Management.md b/10_Wiki/Topics/AI/MMORPG Economic Management.md deleted file mode 100644 index 16920a96..00000000 --- a/10_Wiki/Topics/AI/MMORPG Economic Management.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CD65EB -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - MMORPG Economic Management" ---- - -# [[MMORPG Economic Management]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/MMORPG Economic Management.md]] ---- diff --git a/10_Wiki/Topics/AI/Machine Learning in Game Design.md b/10_Wiki/Topics/AI/Machine Learning in Game Design.md deleted file mode 100644 index 54fee637..00000000 --- a/10_Wiki/Topics/AI/Machine Learning in Game Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E6138D -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Machine Learning in Game Design" ---- - -# [[Machine Learning in Game Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Machine Learning in Game Design.md]] ---- diff --git a/10_Wiki/Topics/AI/Machine-Learning-Animation.md b/10_Wiki/Topics/AI/Machine-Learning-Animation.md deleted file mode 100644 index 868adb1c..00000000 --- a/10_Wiki/Topics/AI/Machine-Learning-Animation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-223E1A -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Machine-Learning-Animation" ---- - -# [[Machine-Learning-Animation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Machine-Learning-Animation.md]] ---- diff --git a/10_Wiki/Topics/AI/Market Regulation.md b/10_Wiki/Topics/AI/Market Regulation.md deleted file mode 100644 index 08d0b40c..00000000 --- a/10_Wiki/Topics/AI/Market Regulation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E87A98 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Market Regulation" ---- - -# [[Market Regulation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Market Regulation.md]] ---- diff --git a/10_Wiki/Topics/AI/Mesocortical Pathway.md b/10_Wiki/Topics/AI/Mesocortical Pathway.md deleted file mode 100644 index f9578d3d..00000000 --- a/10_Wiki/Topics/AI/Mesocortical Pathway.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F74D23 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Mesocortical Pathway" ---- - -# [[Mesocortical Pathway]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Mesocortical Pathway.md]] ---- diff --git a/10_Wiki/Topics/AI/Metabolic Efficiency.md b/10_Wiki/Topics/AI/Metabolic Efficiency.md deleted file mode 100644 index a8457606..00000000 --- a/10_Wiki/Topics/AI/Metabolic Efficiency.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-237ED8 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Metabolic Efficiency" ---- - -# [[Metabolic Efficiency]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Metabolic Efficiency.md]] ---- diff --git a/10_Wiki/Topics/AI/Metabolic-Flexibility.md b/10_Wiki/Topics/AI/Metabolic-Flexibility.md deleted file mode 100644 index 0cdfa346..00000000 --- a/10_Wiki/Topics/AI/Metabolic-Flexibility.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1081E3 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Metabolic-Flexibility" ---- - -# [[Metabolic-Flexibility]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Metabolic-Flexibility.md]] ---- diff --git a/10_Wiki/Topics/AI/Metabolic-Resource-Allocation.md b/10_Wiki/Topics/AI/Metabolic-Resource-Allocation.md deleted file mode 100644 index f1702482..00000000 --- a/10_Wiki/Topics/AI/Metabolic-Resource-Allocation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9E2C0F -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Metabolic-Resource-Allocation" ---- - -# [[Metabolic-Resource-Allocation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Metabolic-Resource-Allocation.md]] ---- diff --git a/10_Wiki/Topics/AI/Metro Exodus.md b/10_Wiki/Topics/AI/Metro Exodus.md deleted file mode 100644 index 5c8daf1c..00000000 --- a/10_Wiki/Topics/AI/Metro Exodus.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0E2C65 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Metro Exodus" ---- - -# [[Metro Exodus]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Metro Exodus.md]] ---- diff --git a/10_Wiki/Topics/AI/Microservices-Architecture-Bounded-Contexts.md b/10_Wiki/Topics/AI/Microservices-Architecture-Bounded-Contexts.md deleted file mode 100644 index 5088915f..00000000 --- a/10_Wiki/Topics/AI/Microservices-Architecture-Bounded-Contexts.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-018DBB -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Microservices-Architecture-Bounded-Contexts" ---- - -# [[Microservices-Architecture-Bounded-Contexts]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Microservices-Architecture-Bounded-Contexts.md]] ---- diff --git a/10_Wiki/Topics/AI/Microservices-Architecture-Type-Safety.md b/10_Wiki/Topics/AI/Microservices-Architecture-Type-Safety.md deleted file mode 100644 index c0fdea89..00000000 --- a/10_Wiki/Topics/AI/Microservices-Architecture-Type-Safety.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E27CC2 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Microservices-Architecture-Type-Safety" ---- - -# [[Microservices-Architecture-Type-Safety]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Microservices-Architecture-Type-Safety.md]] ---- diff --git a/10_Wiki/Topics/AI/Microservices-Communication-Patterns.md b/10_Wiki/Topics/AI/Microservices-Communication-Patterns.md deleted file mode 100644 index eeb134be..00000000 --- a/10_Wiki/Topics/AI/Microservices-Communication-Patterns.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8E2D1A -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Microservices-Communication-Patterns" ---- - -# [[Microservices-Communication-Patterns]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Microservices-Communication-Patterns.md]] ---- diff --git a/10_Wiki/Topics/AI/Mobile-App-Development.md b/10_Wiki/Topics/AI/Mobile-App-Development.md deleted file mode 100644 index 13bbe0ae..00000000 --- a/10_Wiki/Topics/AI/Mobile-App-Development.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C0F26C -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Mobile-App-Development" ---- - -# [[Mobile-App-Development]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Mobile-App-Development.md]] ---- diff --git a/10_Wiki/Topics/AI/Model Collapse (모델 붕괴 현상).md b/10_Wiki/Topics/AI/Model Collapse (모델 붕괴 현상).md deleted file mode 100644 index b31ce0d1..00000000 --- a/10_Wiki/Topics/AI/Model Collapse (모델 붕괴 현상).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F2D3E0 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Model Collapse (모델 붕괴 현상)" ---- - -# [[Model Collapse (모델 붕괴 현상)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Model Collapse (모델 붕괴 현상).md]] ---- diff --git a/10_Wiki/Topics/AI/Model Predictive Control (MPC).md b/10_Wiki/Topics/AI/Model Predictive Control (MPC).md deleted file mode 100644 index 531fd7be..00000000 --- a/10_Wiki/Topics/AI/Model Predictive Control (MPC).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-212A93 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Model Predictive Control (MPC)" ---- - -# [[Model Predictive Control (MPC)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Model Predictive Control (MPC).md]] ---- diff --git a/10_Wiki/Topics/AI/Model Spec (모델 스펙 AI 행동 명세서).md b/10_Wiki/Topics/AI/Model Spec (모델 스펙 AI 행동 명세서).md deleted file mode 100644 index af612110..00000000 --- a/10_Wiki/Topics/AI/Model Spec (모델 스펙 AI 행동 명세서).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-73F6B2 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Model Spec (모델 스펙 AI 행동 명세서)" ---- - -# [[Model Spec (모델 스펙 AI 행동 명세서)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Model Spec (모델 스펙, AI 행동 명세서).md]] ---- diff --git a/10_Wiki/Topics/AI/Module Augmentation.md b/10_Wiki/Topics/AI/Module Augmentation.md deleted file mode 100644 index 17a0440f..00000000 --- a/10_Wiki/Topics/AI/Module Augmentation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-43A3F8 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Module Augmentation" ---- - -# [[Module Augmentation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Module Augmentation.md]] ---- diff --git a/10_Wiki/Topics/AI/Module-Augmentation.md b/10_Wiki/Topics/AI/Module-Augmentation.md deleted file mode 100644 index 26baad29..00000000 --- a/10_Wiki/Topics/AI/Module-Augmentation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C5A5E7 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Module-Augmentation" ---- - -# [[Module-Augmentation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Module-Augmentation.md]] ---- diff --git a/10_Wiki/Topics/AI/Module-Boundary-Enforcement.md b/10_Wiki/Topics/AI/Module-Boundary-Enforcement.md deleted file mode 100644 index 1102bc0b..00000000 --- a/10_Wiki/Topics/AI/Module-Boundary-Enforcement.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-32A387 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Module-Boundary-Enforcement" ---- - -# [[Module-Boundary-Enforcement]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Module-Boundary-Enforcement.md]] ---- diff --git a/10_Wiki/Topics/AI/Monetary Policy in Virtual Worlds.md b/10_Wiki/Topics/AI/Monetary Policy in Virtual Worlds.md deleted file mode 100644 index 78ac73fd..00000000 --- a/10_Wiki/Topics/AI/Monetary Policy in Virtual Worlds.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-26E3C1 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Monetary Policy in Virtual Worlds" ---- - -# [[Monetary Policy in Virtual Worlds]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Monetary Policy in Virtual Worlds.md]] ---- diff --git a/10_Wiki/Topics/AI/Monetary Policy.md b/10_Wiki/Topics/AI/Monetary Policy.md deleted file mode 100644 index 4cec84e4..00000000 --- a/10_Wiki/Topics/AI/Monetary Policy.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-97D263 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Monetary Policy" ---- - -# [[Monetary Policy]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Monetary Policy.md]] ---- diff --git a/10_Wiki/Topics/AI/Monosemanticity (일의성).md b/10_Wiki/Topics/AI/Monosemanticity (일의성).md deleted file mode 100644 index c55e10a6..00000000 --- a/10_Wiki/Topics/AI/Monosemanticity (일의성).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5B0FC9 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Monosemanticity (일의성)" ---- - -# [[Monosemanticity (일의성)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Monosemanticity (일의성).md]] ---- diff --git a/10_Wiki/Topics/AI/Multi-Agent Debate (에이전트 간 토론 전략).md b/10_Wiki/Topics/AI/Multi-Agent Debate (에이전트 간 토론 전략).md deleted file mode 100644 index 89f47783..00000000 --- a/10_Wiki/Topics/AI/Multi-Agent Debate (에이전트 간 토론 전략).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A5AF0B -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Multi-Agent Debate (에이전트 간 토론 전략)" ---- - -# [[Multi-Agent Debate (에이전트 간 토론 전략)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Multi-Agent Debate (에이전트 간 토론 전략).md]] ---- diff --git a/10_Wiki/Topics/AI/Multi-Agent System (다중 에이전트 시스템).md b/10_Wiki/Topics/AI/Multi-Agent System (다중 에이전트 시스템).md deleted file mode 100644 index c6b0063f..00000000 --- a/10_Wiki/Topics/AI/Multi-Agent System (다중 에이전트 시스템).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-51D384 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Multi-Agent System (다중 에이전트 시스템)" ---- - -# [[Multi-Agent System (다중 에이전트 시스템)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Multi-Agent System (다중 에이전트 시스템).md]] ---- diff --git a/10_Wiki/Topics/AI/Multi-Hop Reasoning (다중 홉 추론).md b/10_Wiki/Topics/AI/Multi-Hop Reasoning (다중 홉 추론).md deleted file mode 100644 index 76c72a08..00000000 --- a/10_Wiki/Topics/AI/Multi-Hop Reasoning (다중 홉 추론).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-411F75 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Multi-Hop Reasoning (다중 홉 추론)" ---- - -# [[Multi-Hop Reasoning (다중 홉 추론)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Multi-Hop Reasoning (다중 홉 추론).md]] ---- diff --git a/10_Wiki/Topics/AI/Multimodal Sentiment Analysis.md b/10_Wiki/Topics/AI/Multimodal Sentiment Analysis.md deleted file mode 100644 index 290bf024..00000000 --- a/10_Wiki/Topics/AI/Multimodal Sentiment Analysis.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DF5F90 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Multimodal Sentiment Analysis" ---- - -# [[Multimodal Sentiment Analysis]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Multimodal Sentiment Analysis.md]] ---- diff --git a/10_Wiki/Topics/AI/Natural Language Processing (NLP) in Narrative.md b/10_Wiki/Topics/AI/Natural Language Processing (NLP) in Narrative.md deleted file mode 100644 index 3f8d1dbb..00000000 --- a/10_Wiki/Topics/AI/Natural Language Processing (NLP) in Narrative.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B5A38A -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Natural Language Processing (NLP) in Narrative" ---- - -# [[Natural Language Processing (NLP) in Narrative]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Natural Language Processing (NLP) in Narrative.md]] ---- diff --git a/10_Wiki/Topics/AI/Naughty Dog Development.md b/10_Wiki/Topics/AI/Naughty Dog Development.md deleted file mode 100644 index e4c74ae4..00000000 --- a/10_Wiki/Topics/AI/Naughty Dog Development.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-45FC87 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Naughty Dog Development" ---- - -# [[Naughty Dog Development]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Naughty Dog Development.md]] ---- diff --git a/10_Wiki/Topics/AI/NestJS-Architecture.md b/10_Wiki/Topics/AI/NestJS-Architecture.md deleted file mode 100644 index 0b9a5e82..00000000 --- a/10_Wiki/Topics/AI/NestJS-Architecture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-641044 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - NestJS-Architecture" ---- - -# [[NestJS-Architecture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/NestJS-Architecture.md]] ---- diff --git a/10_Wiki/Topics/AI/Network Synchronization in Multiplayer Games.md b/10_Wiki/Topics/AI/Network Synchronization in Multiplayer Games.md deleted file mode 100644 index d21533ab..00000000 --- a/10_Wiki/Topics/AI/Network Synchronization in Multiplayer Games.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DDB7C3 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Network Synchronization in Multiplayer Games" ---- - -# [[Network Synchronization in Multiplayer Games]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Network Synchronization in Multiplayer Games.md]] ---- diff --git a/10_Wiki/Topics/AI/Nodejs 프로덕션 메모리 문제 해결.md b/10_Wiki/Topics/AI/Nodejs 프로덕션 메모리 문제 해결.md deleted file mode 100644 index 0a63f4bd..00000000 --- a/10_Wiki/Topics/AI/Nodejs 프로덕션 메모리 문제 해결.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-490C25 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Nodejs 프로덕션 메모리 문제 해결" ---- - -# [[Nodejs 프로덕션 메모리 문제 해결]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> Node.js는 단일 프로세스로 장기간 실행되는 런타임이므로, 코드 내에서 참조가 제대로 해제되지 않은 객체가 누적되면 V8 힙(Heap) 메모리가 점진적으로 고갈되어 궁극적으로 OOM(Out of Memory) 크래시가 발생할 수 있습니다 [1-3]. 프로덕션 환경에서의 메모리 문제 해결은 정상적인 가비지 컬렉션(GC) 패턴과 누수 패턴을 구분하고, 타임라인 및 힙 스냅샷 분석을 통해 누수 객체의 보존 경로(Retaining Path)를 추적하여 근본 원인을 찾아 수정하는 체계적인 과정을 의미합니다 [4-8]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Garbage Collection (V8)]], [[Heap Snapshot]], [[Memory Leak Patterns]], [[Orinoco Garbage Collector]] -- **Projects/Contexts:** [[Chrome DevTools Memory Panel]], [[Node.js Production Monitoring]] -- **Contradictions/Notes:** 가비지 컬렉션(GC)은 애플리케이션의 힙 메모리를 정리해주지만, 메인 스레드 실행을 멈추는 'stop-the-world' 특성을 지닙니다. V8은 Orinoco 프로젝트를 통해 병렬(Parallel), 점진적(Incremental), 동시적(Concurrent) 처리 기법을 도입하여 지연(Pause) 시간을 최소화했지만 [28-32], 개발자가 `--expose-gc`를 활성화하여 `global.gc()`를 수동으로 강제 호출하는 것은 시스템 성능을 악화시킬 수 있으므로 매우 주의해서 사용해야 한다고 경고하고 있습니다 [33, 34]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Node.js 프로덕션 메모리 문제 해결.md]] ---- diff --git a/10_Wiki/Topics/AI/OWA vs CWA (개방 세계 vs 폐쇄 세계 가정).md b/10_Wiki/Topics/AI/OWA vs CWA (개방 세계 vs 폐쇄 세계 가정).md deleted file mode 100644 index dd87be04..00000000 --- a/10_Wiki/Topics/AI/OWA vs CWA (개방 세계 vs 폐쇄 세계 가정).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BB45FB -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - OWA vs CWA (개방 세계 vs 폐쇄 세계 가정)" ---- - -# [[OWA vs CWA (개방 세계 vs 폐쇄 세계 가정)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/OWA vs CWA (개방 세계 vs 폐쇄 세계 가정).md]] ---- diff --git a/10_Wiki/Topics/AI/Object Pooling (가비지 컬렉션 최적화).md b/10_Wiki/Topics/AI/Object Pooling (가비지 컬렉션 최적화).md deleted file mode 100644 index 0e10309f..00000000 --- a/10_Wiki/Topics/AI/Object Pooling (가비지 컬렉션 최적화).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-345FBB -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Object Pooling (가비지 컬렉션 최적화)" ---- - -# [[Object Pooling (가비지 컬렉션 최적화)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Object Pooling (가비지 컬렉션 최적화).md]] ---- diff --git a/10_Wiki/Topics/AI/PRM (Process Reward Model).md b/10_Wiki/Topics/AI/PRM (Process Reward Model).md deleted file mode 100644 index 1fa2dd2a..00000000 --- a/10_Wiki/Topics/AI/PRM (Process Reward Model).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-58769F -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - PRM (Process Reward Model)" ---- - -# [[PRM (Process Reward Model)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/PRM (Process Reward Model).md]] ---- diff --git a/10_Wiki/Topics/AI/Persuasive Games.md b/10_Wiki/Topics/AI/Persuasive Games.md deleted file mode 100644 index 904a6bd2..00000000 --- a/10_Wiki/Topics/AI/Persuasive Games.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-11DC29 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Persuasive Games" ---- - -# [[Persuasive Games]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Persuasive Games.md]] ---- diff --git a/10_Wiki/Topics/AI/Phase Transition (위상 변이).md b/10_Wiki/Topics/AI/Phase Transition (위상 변이).md deleted file mode 100644 index b9b33041..00000000 --- a/10_Wiki/Topics/AI/Phase Transition (위상 변이).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F09281 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Phase Transition (위상 변이)" ---- - -# [[Phase Transition (위상 변이)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Phase Transition (위상 변이).md]] ---- diff --git a/10_Wiki/Topics/AI/Phyllotaxis-Modeling.md b/10_Wiki/Topics/AI/Phyllotaxis-Modeling.md deleted file mode 100644 index c82e6797..00000000 --- a/10_Wiki/Topics/AI/Phyllotaxis-Modeling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AAE034 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Phyllotaxis-Modeling" ---- - -# [[Phyllotaxis-Modeling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Phyllotaxis-Modeling.md]] ---- diff --git a/10_Wiki/Topics/AI/Physics-Based-Simulation.md b/10_Wiki/Topics/AI/Physics-Based-Simulation.md deleted file mode 100644 index cd3b7c18..00000000 --- a/10_Wiki/Topics/AI/Physics-Based-Simulation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1E824D -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Physics-Based-Simulation" ---- - -# [[Physics-Based-Simulation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Physics-Based-Simulation.md]] ---- diff --git a/10_Wiki/Topics/AI/Platform Economics.md b/10_Wiki/Topics/AI/Platform Economics.md deleted file mode 100644 index bf00dc88..00000000 --- a/10_Wiki/Topics/AI/Platform Economics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2B537F -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Platform Economics" ---- - -# [[Platform Economics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Platform Economics.md]] ---- diff --git a/10_Wiki/Topics/AI/Play-to-Earn (P2E) Economies.md b/10_Wiki/Topics/AI/Play-to-Earn (P2E) Economies.md deleted file mode 100644 index d532c567..00000000 --- a/10_Wiki/Topics/AI/Play-to-Earn (P2E) Economies.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-43C745 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Play-to-Earn (P2E) Economies" ---- - -# [[Play-to-Earn (P2E) Economies]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Play-to-Earn (P2E) Economies.md]] ---- diff --git a/10_Wiki/Topics/AI/Player-Agency.md b/10_Wiki/Topics/AI/Player-Agency.md deleted file mode 100644 index 187ecedf..00000000 --- a/10_Wiki/Topics/AI/Player-Agency.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-058473 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Player-Agency" ---- - -# [[Player-Agency]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Player-Agency.md]] ---- diff --git a/10_Wiki/Topics/AI/Positive-Education.md b/10_Wiki/Topics/AI/Positive-Education.md deleted file mode 100644 index 12189f01..00000000 --- a/10_Wiki/Topics/AI/Positive-Education.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E6C93F -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Positive-Education" ---- - -# [[Positive-Education]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Positive-Education.md]] ---- diff --git a/10_Wiki/Topics/AI/Post-structuralism.md b/10_Wiki/Topics/AI/Post-structuralism.md deleted file mode 100644 index 5afc10e2..00000000 --- a/10_Wiki/Topics/AI/Post-structuralism.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-49AC0F -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Post-structuralism" ---- - -# [[Post-structuralism]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Post-structuralism.md]] ---- diff --git a/10_Wiki/Topics/AI/Precision Medicine Training.md b/10_Wiki/Topics/AI/Precision Medicine Training.md deleted file mode 100644 index 4b7b1fd1..00000000 --- a/10_Wiki/Topics/AI/Precision Medicine Training.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-95109A -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Precision Medicine Training" ---- - -# [[Precision Medicine Training]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Precision Medicine Training.md]] ---- diff --git a/10_Wiki/Topics/AI/Predictive Maintenance (PdM).md b/10_Wiki/Topics/AI/Predictive Maintenance (PdM).md deleted file mode 100644 index 1f069a3a..00000000 --- a/10_Wiki/Topics/AI/Predictive Maintenance (PdM).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E3A437 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Predictive Maintenance (PdM)" ---- - -# [[Predictive Maintenance (PdM)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Predictive Maintenance (PdM).md]] ---- diff --git a/10_Wiki/Topics/AI/Predictive-Modeling.md b/10_Wiki/Topics/AI/Predictive-Modeling.md deleted file mode 100644 index 4fe2ef56..00000000 --- a/10_Wiki/Topics/AI/Predictive-Modeling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2ADF8A -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Predictive-Modeling" ---- - -# [[Predictive-Modeling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Predictive-Modeling.md]] ---- diff --git a/10_Wiki/Topics/AI/Predictive-Urban-Modeling.md b/10_Wiki/Topics/AI/Predictive-Urban-Modeling.md deleted file mode 100644 index 5c59f978..00000000 --- a/10_Wiki/Topics/AI/Predictive-Urban-Modeling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FBB603 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Predictive-Urban-Modeling" ---- - -# [[Predictive-Urban-Modeling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Predictive-Urban-Modeling.md]] ---- diff --git a/10_Wiki/Topics/AI/Prefrontal Cortex Dysfunction.md b/10_Wiki/Topics/AI/Prefrontal Cortex Dysfunction.md deleted file mode 100644 index 4c94c5d7..00000000 --- a/10_Wiki/Topics/AI/Prefrontal Cortex Dysfunction.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A5833A -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Prefrontal Cortex Dysfunction" ---- - -# [[Prefrontal Cortex Dysfunction]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Prefrontal Cortex Dysfunction.md]] ---- diff --git a/10_Wiki/Topics/AI/Prefrontal-Cortex-Dysfunction.md b/10_Wiki/Topics/AI/Prefrontal-Cortex-Dysfunction.md deleted file mode 100644 index cb016890..00000000 --- a/10_Wiki/Topics/AI/Prefrontal-Cortex-Dysfunction.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-832BDA -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Prefrontal-Cortex-Dysfunction" ---- - -# [[Prefrontal-Cortex-Dysfunction]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Prefrontal-Cortex-Dysfunction.md]] ---- diff --git a/10_Wiki/Topics/AI/Probability Theory (Stochastic Processes).md b/10_Wiki/Topics/AI/Probability Theory (Stochastic Processes).md deleted file mode 100644 index be602db9..00000000 --- a/10_Wiki/Topics/AI/Probability Theory (Stochastic Processes).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D3B247 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Probability Theory (Stochastic Processes)" ---- - -# [[Probability Theory (Stochastic Processes)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Probability Theory (Stochastic Processes).md]] ---- diff --git a/10_Wiki/Topics/AI/Procedural Content Generation (PCG) Balancing.md b/10_Wiki/Topics/AI/Procedural Content Generation (PCG) Balancing.md deleted file mode 100644 index c1d75687..00000000 --- a/10_Wiki/Topics/AI/Procedural Content Generation (PCG) Balancing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-231525 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Procedural Content Generation (PCG) Balancing" ---- - -# [[Procedural Content Generation (PCG) Balancing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Procedural Content Generation (PCG) Balancing.md]] ---- diff --git a/10_Wiki/Topics/AI/Procedural Content Generation (PCG).md b/10_Wiki/Topics/AI/Procedural Content Generation (PCG).md deleted file mode 100644 index bfbe8443..00000000 --- a/10_Wiki/Topics/AI/Procedural Content Generation (PCG).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8E0344 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Procedural Content Generation (PCG)" ---- - -# [[Procedural Content Generation (PCG)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Procedural Content Generation (PCG).md]] ---- diff --git a/10_Wiki/Topics/AI/Procedural Content Generation.md b/10_Wiki/Topics/AI/Procedural Content Generation.md deleted file mode 100644 index f932c1a9..00000000 --- a/10_Wiki/Topics/AI/Procedural Content Generation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7E4074 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Procedural Content Generation" ---- - -# [[Procedural Content Generation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Procedural Content Generation.md]] ---- diff --git a/10_Wiki/Topics/AI/Procedural Rhetoric.md b/10_Wiki/Topics/AI/Procedural Rhetoric.md deleted file mode 100644 index d0cf89af..00000000 --- a/10_Wiki/Topics/AI/Procedural Rhetoric.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DDAA23 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Procedural Rhetoric" ---- - -# [[Procedural Rhetoric]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Procedural Rhetoric.md]] ---- diff --git a/10_Wiki/Topics/AI/Procedural-Content-Generation (PCG).md b/10_Wiki/Topics/AI/Procedural-Content-Generation (PCG).md deleted file mode 100644 index 7c9046d6..00000000 --- a/10_Wiki/Topics/AI/Procedural-Content-Generation (PCG).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D3BC93 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Procedural-Content-Generation (PCG)" ---- - -# [[Procedural-Content-Generation (PCG)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Procedural-Content-Generation (PCG).md]] ---- diff --git a/10_Wiki/Topics/AI/Procedural-Content-Generation-via-Machine-Learning.md b/10_Wiki/Topics/AI/Procedural-Content-Generation-via-Machine-Learning.md deleted file mode 100644 index 1ecca8bc..00000000 --- a/10_Wiki/Topics/AI/Procedural-Content-Generation-via-Machine-Learning.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1F2C54 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Procedural-Content-Generation-via-Machine-Learning" ---- - -# [[Procedural-Content-Generation-via-Machine-Learning]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Procedural-Content-Generation-via-Machine-Learning.md]] ---- diff --git a/10_Wiki/Topics/AI/Procedural-Content-Generation.md b/10_Wiki/Topics/AI/Procedural-Content-Generation.md deleted file mode 100644 index 117c8a06..00000000 --- a/10_Wiki/Topics/AI/Procedural-Content-Generation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CE4240 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Procedural-Content-Generation" ---- - -# [[Procedural-Content-Generation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Procedural-Content-Generation.md]] ---- diff --git a/10_Wiki/Topics/AI/Procedural-Texture-Generation.md b/10_Wiki/Topics/AI/Procedural-Texture-Generation.md deleted file mode 100644 index 8db62eec..00000000 --- a/10_Wiki/Topics/AI/Procedural-Texture-Generation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5EABE9 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Procedural-Texture-Generation" ---- - -# [[Procedural-Texture-Generation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Procedural-Texture-Generation.md]] ---- diff --git a/10_Wiki/Topics/AI/Process Supervision (과정 감독).md b/10_Wiki/Topics/AI/Process Supervision (과정 감독).md deleted file mode 100644 index ec4e8b4e..00000000 --- a/10_Wiki/Topics/AI/Process Supervision (과정 감독).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DD3E5C -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Process Supervision (과정 감독)" ---- - -# [[Process Supervision (과정 감독)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Process Supervision (과정 감독).md]] ---- diff --git a/10_Wiki/Topics/AI/Product-Types.md b/10_Wiki/Topics/AI/Product-Types.md deleted file mode 100644 index d67aaeb6..00000000 --- a/10_Wiki/Topics/AI/Product-Types.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9999F1 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Product-Types" ---- - -# [[Product-Types]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Product-Types.md]] ---- diff --git a/10_Wiki/Topics/AI/Prompt Injection (프롬프트 주입 공격).md b/10_Wiki/Topics/AI/Prompt Injection (프롬프트 주입 공격).md deleted file mode 100644 index 3459a1b9..00000000 --- a/10_Wiki/Topics/AI/Prompt Injection (프롬프트 주입 공격).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-755BF7 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Prompt Injection (프롬프트 주입 공격)" ---- - -# [[Prompt Injection (프롬프트 주입 공격)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Prompt Injection (프롬프트 주입 공격).md]] ---- diff --git a/10_Wiki/Topics/AI/Prospect Theory.md b/10_Wiki/Topics/AI/Prospect Theory.md deleted file mode 100644 index 5f97c1c9..00000000 --- a/10_Wiki/Topics/AI/Prospect Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-95BA10 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Prospect Theory" ---- - -# [[Prospect Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Prospect Theory.md]] ---- diff --git a/10_Wiki/Topics/AI/Prosthetic-Design-Optimization.md b/10_Wiki/Topics/AI/Prosthetic-Design-Optimization.md deleted file mode 100644 index 11ce1de9..00000000 --- a/10_Wiki/Topics/AI/Prosthetic-Design-Optimization.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-67AEBB -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Prosthetic-Design-Optimization" ---- - -# [[Prosthetic-Design-Optimization]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Prosthetic-Design-Optimization.md]] ---- diff --git a/10_Wiki/Topics/AI/Psychophysiology.md b/10_Wiki/Topics/AI/Psychophysiology.md deleted file mode 100644 index 78041d1f..00000000 --- a/10_Wiki/Topics/AI/Psychophysiology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DD660D -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Psychophysiology" ---- - -# [[Psychophysiology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Psychophysiology.md]] ---- diff --git a/10_Wiki/Topics/AI/Quantitative-Usability-Testing.md b/10_Wiki/Topics/AI/Quantitative-Usability-Testing.md deleted file mode 100644 index 936664bf..00000000 --- a/10_Wiki/Topics/AI/Quantitative-Usability-Testing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8A68D1 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Quantitative-Usability-Testing" ---- - -# [[Quantitative-Usability-Testing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Quantitative-Usability-Testing.md]] ---- diff --git a/10_Wiki/Topics/AI/RLHF (인간 피드백 기반 강화학습).md b/10_Wiki/Topics/AI/RLHF (인간 피드백 기반 강화학습).md deleted file mode 100644 index c2e7b021..00000000 --- a/10_Wiki/Topics/AI/RLHF (인간 피드백 기반 강화학습).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-628311 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - RLHF (인간 피드백 기반 강화학습)" ---- - -# [[RLHF (인간 피드백 기반 강화학습)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/RLHF (인간 피드백 기반 강화학습).md]] ---- diff --git a/10_Wiki/Topics/AI/ReAct (Reasoning Acting).md b/10_Wiki/Topics/AI/ReAct (Reasoning Acting).md deleted file mode 100644 index e94ee50d..00000000 --- a/10_Wiki/Topics/AI/ReAct (Reasoning Acting).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-382E0C -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - ReAct (Reasoning Acting)" ---- - -# [[ReAct (Reasoning Acting)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/ReAct (Reasoning + Acting).md]] ---- diff --git a/10_Wiki/Topics/AI/Real-Time-Game-Engines.md b/10_Wiki/Topics/AI/Real-Time-Game-Engines.md deleted file mode 100644 index 0ffdab01..00000000 --- a/10_Wiki/Topics/AI/Real-Time-Game-Engines.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9DBB1E -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Real-Time-Game-Engines" ---- - -# [[Real-Time-Game-Engines]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Real-Time-Game-Engines.md]] ---- diff --git a/10_Wiki/Topics/AI/Redux-Reducers-Design.md b/10_Wiki/Topics/AI/Redux-Reducers-Design.md deleted file mode 100644 index 9784b87c..00000000 --- a/10_Wiki/Topics/AI/Redux-Reducers-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4EB691 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Redux-Reducers-Design" ---- - -# [[Redux-Reducers-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Redux-Reducers-Design.md]] ---- diff --git a/10_Wiki/Topics/AI/Redux-State-Management.md b/10_Wiki/Topics/AI/Redux-State-Management.md deleted file mode 100644 index 962f9c3a..00000000 --- a/10_Wiki/Topics/AI/Redux-State-Management.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DBA4CB -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Redux-State-Management" ---- - -# [[Redux-State-Management]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Redux-State-Management.md]] ---- diff --git a/10_Wiki/Topics/AI/Regenerative Design.md b/10_Wiki/Topics/AI/Regenerative Design.md deleted file mode 100644 index 8acaf1d5..00000000 --- a/10_Wiki/Topics/AI/Regenerative Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6EFEA1 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Regenerative Design" ---- - -# [[Regenerative Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Regenerative Design.md]] ---- diff --git a/10_Wiki/Topics/AI/Regenerative-Design.md b/10_Wiki/Topics/AI/Regenerative-Design.md deleted file mode 100644 index c7affdd1..00000000 --- a/10_Wiki/Topics/AI/Regenerative-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9E754B -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Regenerative-Design" ---- - -# [[Regenerative-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Regenerative-Design.md]] ---- diff --git a/10_Wiki/Topics/AI/Rehabilitative-Medicine.md b/10_Wiki/Topics/AI/Rehabilitative-Medicine.md deleted file mode 100644 index 471c45a5..00000000 --- a/10_Wiki/Topics/AI/Rehabilitative-Medicine.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2E9085 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Rehabilitative-Medicine" ---- - -# [[Rehabilitative-Medicine]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Rehabilitative-Medicine.md]] ---- diff --git a/10_Wiki/Topics/AI/Reinforcement Learning in Economics.md b/10_Wiki/Topics/AI/Reinforcement Learning in Economics.md deleted file mode 100644 index b06c53f9..00000000 --- a/10_Wiki/Topics/AI/Reinforcement Learning in Economics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-169C30 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Reinforcement Learning in Economics" ---- - -# [[Reinforcement Learning in Economics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Reinforcement Learning in Economics.md]] ---- diff --git a/10_Wiki/Topics/AI/Reinforcement Learning.md b/10_Wiki/Topics/AI/Reinforcement Learning.md deleted file mode 100644 index b8c10a40..00000000 --- a/10_Wiki/Topics/AI/Reinforcement Learning.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AE51CB -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Reinforcement Learning" ---- - -# [[Reinforcement Learning]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Reinforcement Learning.md]] ---- diff --git a/10_Wiki/Topics/AI/Reinforcement Schedules.md b/10_Wiki/Topics/AI/Reinforcement Schedules.md deleted file mode 100644 index a5591a2f..00000000 --- a/10_Wiki/Topics/AI/Reinforcement Schedules.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8A0BA0 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Reinforcement Schedules" ---- - -# [[Reinforcement Schedules]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Reinforcement Schedules.md]] ---- diff --git a/10_Wiki/Topics/AI/Resilience Science.md b/10_Wiki/Topics/AI/Resilience Science.md deleted file mode 100644 index 0f7a27c1..00000000 --- a/10_Wiki/Topics/AI/Resilience Science.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-06F1DA -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Resilience Science" ---- - -# [[Resilience Science]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Resilience Science.md]] ---- diff --git a/10_Wiki/Topics/AI/Resilience-Engineering.md b/10_Wiki/Topics/AI/Resilience-Engineering.md deleted file mode 100644 index ec2bebc1..00000000 --- a/10_Wiki/Topics/AI/Resilience-Engineering.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-49D143 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Resilience-Engineering" ---- - -# [[Resilience-Engineering]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Resilience-Engineering.md]] ---- diff --git a/10_Wiki/Topics/AI/Retrograde-Games.md b/10_Wiki/Topics/AI/Retrograde-Games.md deleted file mode 100644 index 004442ed..00000000 --- a/10_Wiki/Topics/AI/Retrograde-Games.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3F21E0 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Retrograde-Games" ---- - -# [[Retrograde-Games]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Retrograde-Games.md]] ---- diff --git a/10_Wiki/Topics/AI/Risk Management in Finance.md b/10_Wiki/Topics/AI/Risk Management in Finance.md deleted file mode 100644 index e8bf77fb..00000000 --- a/10_Wiki/Topics/AI/Risk Management in Finance.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5DD3BE -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Risk Management in Finance" ---- - -# [[Risk Management in Finance]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Risk Management in Finance.md]] ---- diff --git a/10_Wiki/Topics/AI/Robotic Manipulation Control.md b/10_Wiki/Topics/AI/Robotic Manipulation Control.md deleted file mode 100644 index d2cd6c09..00000000 --- a/10_Wiki/Topics/AI/Robotic Manipulation Control.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-913A3C -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Robotic Manipulation Control" ---- - -# [[Robotic Manipulation Control]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Robotic Manipulation Control.md]] ---- diff --git a/10_Wiki/Topics/AI/Robotic-Prosthetics-Control-Systems.md b/10_Wiki/Topics/AI/Robotic-Prosthetics-Control-Systems.md deleted file mode 100644 index 880bea42..00000000 --- a/10_Wiki/Topics/AI/Robotic-Prosthetics-Control-Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A360D1 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Robotic-Prosthetics-Control-Systems" ---- - -# [[Robotic-Prosthetics-Control-Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Robotic-Prosthetics-Control-Systems.md]] ---- diff --git a/10_Wiki/Topics/AI/Robustness (강건성).md b/10_Wiki/Topics/AI/Robustness (강건성).md deleted file mode 100644 index 977d25e3..00000000 --- a/10_Wiki/Topics/AI/Robustness (강건성).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-EB7908 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Robustness (강건성)" ---- - -# [[Robustness (강건성)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Robustness (강건성).md]] ---- diff --git a/10_Wiki/Topics/AI/SHACL (Shapes Constraint Language).md b/10_Wiki/Topics/AI/SHACL (Shapes Constraint Language).md deleted file mode 100644 index 4b9b4087..00000000 --- a/10_Wiki/Topics/AI/SHACL (Shapes Constraint Language).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B7C59C -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - SHACL (Shapes Constraint Language)" ---- - -# [[SHACL (Shapes Constraint Language)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/SHACL (Shapes Constraint Language).md]] ---- diff --git a/10_Wiki/Topics/AI/STEM Laboratory Virtualization.md b/10_Wiki/Topics/AI/STEM Laboratory Virtualization.md deleted file mode 100644 index 24c6090f..00000000 --- a/10_Wiki/Topics/AI/STEM Laboratory Virtualization.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E8F7C8 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - STEM Laboratory Virtualization" ---- - -# [[STEM Laboratory Virtualization]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/STEM Laboratory Virtualization.md]] ---- diff --git a/10_Wiki/Topics/AI/Scaffolding (Instructional Technique).md b/10_Wiki/Topics/AI/Scaffolding (Instructional Technique).md deleted file mode 100644 index fee5e97f..00000000 --- a/10_Wiki/Topics/AI/Scaffolding (Instructional Technique).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B407CA -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Scaffolding (Instructional Technique)" ---- - -# [[Scaffolding (Instructional Technique)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Scaffolding (Instructional Technique).md]] ---- diff --git a/10_Wiki/Topics/AI/Scheduling-and-Timetabling.md b/10_Wiki/Topics/AI/Scheduling-and-Timetabling.md deleted file mode 100644 index 3c2d8903..00000000 --- a/10_Wiki/Topics/AI/Scheduling-and-Timetabling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FEBDAB -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Scheduling-and-Timetabling" ---- - -# [[Scheduling-and-Timetabling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Scheduling-and-Timetabling.md]] ---- diff --git a/10_Wiki/Topics/AI/Section-508-Compliance.md b/10_Wiki/Topics/AI/Section-508-Compliance.md deleted file mode 100644 index e6c1c5cd..00000000 --- a/10_Wiki/Topics/AI/Section-508-Compliance.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A56544 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Section-508-Compliance" ---- - -# [[Section-508-Compliance]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Section-508-Compliance.md]] ---- diff --git a/10_Wiki/Topics/AI/Self-Consistency (자기 일관성 디코딩).md b/10_Wiki/Topics/AI/Self-Consistency (자기 일관성 디코딩).md deleted file mode 100644 index 1cbae5eb..00000000 --- a/10_Wiki/Topics/AI/Self-Consistency (자기 일관성 디코딩).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E25B8B -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Self-Consistency (자기 일관성 디코딩)" ---- - -# [[Self-Consistency (자기 일관성 디코딩)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Self-Consistency (자기 일관성 디코딩).md]] ---- diff --git a/10_Wiki/Topics/AI/Self-Organized Criticality.md b/10_Wiki/Topics/AI/Self-Organized Criticality.md deleted file mode 100644 index 69cb80dd..00000000 --- a/10_Wiki/Topics/AI/Self-Organized Criticality.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-01E518 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Self-Organized Criticality" ---- - -# [[Self-Organized Criticality]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Self-Organized Criticality.md]] ---- diff --git a/10_Wiki/Topics/AI/Self-Regulation.md b/10_Wiki/Topics/AI/Self-Regulation.md deleted file mode 100644 index 76a415f7..00000000 --- a/10_Wiki/Topics/AI/Self-Regulation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-70F3AC -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Self-Regulation" ---- - -# [[Self-Regulation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Self-Regulation.md]] ---- diff --git a/10_Wiki/Topics/AI/Semantic Grounding Provenance.md b/10_Wiki/Topics/AI/Semantic Grounding Provenance.md deleted file mode 100644 index c5febfd4..00000000 --- a/10_Wiki/Topics/AI/Semantic Grounding Provenance.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-479D8D -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Semantic Grounding Provenance" ---- - -# [[Semantic Grounding Provenance]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Semantic Grounding & Provenance.md]] ---- diff --git a/10_Wiki/Topics/AI/Serious Games.md b/10_Wiki/Topics/AI/Serious Games.md deleted file mode 100644 index 982269ee..00000000 --- a/10_Wiki/Topics/AI/Serious Games.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4A3ECC -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Serious Games" ---- - -# [[Serious Games]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Serious Games.md]] ---- diff --git a/10_Wiki/Topics/AI/Service-Design-Blueprinting.md b/10_Wiki/Topics/AI/Service-Design-Blueprinting.md deleted file mode 100644 index 8c277099..00000000 --- a/10_Wiki/Topics/AI/Service-Design-Blueprinting.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-07A1AA -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Service-Design-Blueprinting" ---- - -# [[Service-Design-Blueprinting]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Service-Design-Blueprinting.md]] ---- diff --git a/10_Wiki/Topics/AI/Shannon-Entropy.md b/10_Wiki/Topics/AI/Shannon-Entropy.md deleted file mode 100644 index 45f65bc6..00000000 --- a/10_Wiki/Topics/AI/Shannon-Entropy.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2A9F66 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Shannon-Entropy" ---- - -# [[Shannon-Entropy]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Shannon-Entropy.md]] ---- diff --git a/10_Wiki/Topics/AI/SimCity (as a model of systemic interaction).md b/10_Wiki/Topics/AI/SimCity (as a model of systemic interaction).md deleted file mode 100644 index 8bdfa7d4..00000000 --- a/10_Wiki/Topics/AI/SimCity (as a model of systemic interaction).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-10C76A -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - SimCity (as a model of systemic interaction)" ---- - -# [[SimCity (as a model of systemic interaction)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/SimCity (as a model of systemic interaction).md]] ---- diff --git a/10_Wiki/Topics/AI/Simulated History.md b/10_Wiki/Topics/AI/Simulated History.md deleted file mode 100644 index cec80aef..00000000 --- a/10_Wiki/Topics/AI/Simulated History.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DEC9B0 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Simulated History" ---- - -# [[Simulated History]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Simulated History.md]] ---- diff --git a/10_Wiki/Topics/AI/Single-Source-of-Truth.md b/10_Wiki/Topics/AI/Single-Source-of-Truth.md deleted file mode 100644 index 713f6863..00000000 --- a/10_Wiki/Topics/AI/Single-Source-of-Truth.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9158CA -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Single-Source-of-Truth" ---- - -# [[Single-Source-of-Truth]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Single-Source-of-Truth.md]] ---- diff --git a/10_Wiki/Topics/AI/Singularity (기술적 특이점).md b/10_Wiki/Topics/AI/Singularity (기술적 특이점).md deleted file mode 100644 index ed90d836..00000000 --- a/10_Wiki/Topics/AI/Singularity (기술적 특이점).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-04DB11 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Singularity (기술적 특이점)" ---- - -# [[Singularity (기술적 특이점)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Singularity (기술적 특이점).md]] ---- diff --git a/10_Wiki/Topics/AI/Skybound Protocol 구조 및 의존성 분석 (Dependency Mapping).md b/10_Wiki/Topics/AI/Skybound Protocol 구조 및 의존성 분석 (Dependency Mapping).md deleted file mode 100644 index 006cd5f6..00000000 --- a/10_Wiki/Topics/AI/Skybound Protocol 구조 및 의존성 분석 (Dependency Mapping).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A04161 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Skybound Protocol 구조 및 의존성 분석 (Dependency Mapping)" ---- - -# [[Skybound Protocol 구조 및 의존성 분석 (Dependency Mapping)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Skybound Protocol 구조 및 의존성 분석 (Dependency Mapping).md]] ---- diff --git a/10_Wiki/Topics/AI/Skybound Protocol 데이터 및 제어 흐름 (Control Flow).md b/10_Wiki/Topics/AI/Skybound Protocol 데이터 및 제어 흐름 (Control Flow).md deleted file mode 100644 index 3ddfbb82..00000000 --- a/10_Wiki/Topics/AI/Skybound Protocol 데이터 및 제어 흐름 (Control Flow).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1B8F72 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Skybound Protocol 데이터 및 제어 흐름 (Control Flow)" ---- - -# [[Skybound Protocol 데이터 및 제어 흐름 (Control Flow)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Skybound Protocol 데이터 및 제어 흐름 (Control Flow).md]] ---- diff --git a/10_Wiki/Topics/AI/Social Constructivism.md b/10_Wiki/Topics/AI/Social Constructivism.md deleted file mode 100644 index dd0b1ebc..00000000 --- a/10_Wiki/Topics/AI/Social Constructivism.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A416E7 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Social Constructivism" ---- - -# [[Social Constructivism]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Social Constructivism.md]] ---- diff --git a/10_Wiki/Topics/AI/Sparse Autoencoder (SAE).md b/10_Wiki/Topics/AI/Sparse Autoencoder (SAE).md deleted file mode 100644 index 342d2ec6..00000000 --- a/10_Wiki/Topics/AI/Sparse Autoencoder (SAE).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A11EAF -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sparse Autoencoder (SAE)" ---- - -# [[Sparse Autoencoder (SAE)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sparse Autoencoder (SAE).md]] ---- diff --git a/10_Wiki/Topics/AI/Spatial UI.md b/10_Wiki/Topics/AI/Spatial UI.md deleted file mode 100644 index a96e39d0..00000000 --- a/10_Wiki/Topics/AI/Spatial UI.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E02F81 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Spatial UI" ---- - -# [[Spatial UI]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Spatial UI.md]] ---- diff --git a/10_Wiki/Topics/AI/Specification Gaming (명세 우회).md b/10_Wiki/Topics/AI/Specification Gaming (명세 우회).md deleted file mode 100644 index 991b6984..00000000 --- a/10_Wiki/Topics/AI/Specification Gaming (명세 우회).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1BD229 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Specification Gaming (명세 우회)" ---- - -# [[Specification Gaming (명세 우회)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Specification Gaming (명세 우회).md]] ---- diff --git a/10_Wiki/Topics/AI/Sports Neuroscience.md b/10_Wiki/Topics/AI/Sports Neuroscience.md deleted file mode 100644 index 06440731..00000000 --- a/10_Wiki/Topics/AI/Sports Neuroscience.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-80CF35 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sports Neuroscience" ---- - -# [[Sports Neuroscience]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sports Neuroscience.md]] ---- diff --git a/10_Wiki/Topics/AI/Sports-Medicine-Rehabilitation.md b/10_Wiki/Topics/AI/Sports-Medicine-Rehabilitation.md deleted file mode 100644 index fcd57b04..00000000 --- a/10_Wiki/Topics/AI/Sports-Medicine-Rehabilitation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-727225 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sports-Medicine-Rehabilitation" ---- - -# [[Sports-Medicine-Rehabilitation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sports-Medicine-Rehabilitation.md]] ---- diff --git a/10_Wiki/Topics/AI/Sports-Performance-Optimization.md b/10_Wiki/Topics/AI/Sports-Performance-Optimization.md deleted file mode 100644 index 0a82981e..00000000 --- a/10_Wiki/Topics/AI/Sports-Performance-Optimization.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FEEFC9 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sports-Performance-Optimization" ---- - -# [[Sports-Performance-Optimization]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sports-Performance-Optimization.md]] ---- diff --git a/10_Wiki/Topics/AI/Sports-Psychology.md b/10_Wiki/Topics/AI/Sports-Psychology.md deleted file mode 100644 index 460ce457..00000000 --- a/10_Wiki/Topics/AI/Sports-Psychology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D4C5E8 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sports-Psychology" ---- - -# [[Sports-Psychology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sports-Psychology.md]] ---- diff --git a/10_Wiki/Topics/AI/Sports-Science-Training.md b/10_Wiki/Topics/AI/Sports-Science-Training.md deleted file mode 100644 index 038b4bb7..00000000 --- a/10_Wiki/Topics/AI/Sports-Science-Training.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9A7390 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sports-Science-Training" ---- - -# [[Sports-Science-Training]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sports-Science-Training.md]] ---- diff --git a/10_Wiki/Topics/AI/Sprague-Grundy Theorem.md b/10_Wiki/Topics/AI/Sprague-Grundy Theorem.md deleted file mode 100644 index 6a305e3b..00000000 --- a/10_Wiki/Topics/AI/Sprague-Grundy Theorem.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3D42A2 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sprague-Grundy Theorem" ---- - -# [[Sprague-Grundy Theorem]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sprague-Grundy Theorem.md]] ---- diff --git a/10_Wiki/Topics/AI/Static-Analysis-in-JavaScript-Ecosystem.md b/10_Wiki/Topics/AI/Static-Analysis-in-JavaScript-Ecosystem.md deleted file mode 100644 index 02e33980..00000000 --- a/10_Wiki/Topics/AI/Static-Analysis-in-JavaScript-Ecosystem.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6BE2FD -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Static-Analysis-in-JavaScript-Ecosystem" ---- - -# [[Static-Analysis-in-JavaScript-Ecosystem]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Static-Analysis-in-JavaScript-Ecosystem.md]] ---- diff --git a/10_Wiki/Topics/AI/Static-Analysis-in-JavaScript.md b/10_Wiki/Topics/AI/Static-Analysis-in-JavaScript.md deleted file mode 100644 index 1026c06c..00000000 --- a/10_Wiki/Topics/AI/Static-Analysis-in-JavaScript.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AC87D9 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Static-Analysis-in-JavaScript" ---- - -# [[Static-Analysis-in-JavaScript]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Static-Analysis-in-JavaScript.md]] ---- diff --git a/10_Wiki/Topics/AI/Static-Analysis-in-Software-Engineering.md b/10_Wiki/Topics/AI/Static-Analysis-in-Software-Engineering.md deleted file mode 100644 index af2bb74a..00000000 --- a/10_Wiki/Topics/AI/Static-Analysis-in-Software-Engineering.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-97FE65 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Static-Analysis-in-Software-Engineering" ---- - -# [[Static-Analysis-in-Software-Engineering]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Static-Analysis-in-Software-Engineering.md]] ---- diff --git a/10_Wiki/Topics/AI/Static-Analysis-of-Interfaces.md b/10_Wiki/Topics/AI/Static-Analysis-of-Interfaces.md deleted file mode 100644 index b0e98dd7..00000000 --- a/10_Wiki/Topics/AI/Static-Analysis-of-Interfaces.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FCF0B0 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Static-Analysis-of-Interfaces" ---- - -# [[Static-Analysis-of-Interfaces]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Static-Analysis-of-Interfaces.md]] ---- diff --git a/10_Wiki/Topics/AI/Stochastic Processes.md b/10_Wiki/Topics/AI/Stochastic Processes.md deleted file mode 100644 index 52d69fb0..00000000 --- a/10_Wiki/Topics/AI/Stochastic Processes.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-71E76D -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Stochastic Processes" ---- - -# [[Stochastic Processes]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Stochastic Processes.md]] ---- diff --git a/10_Wiki/Topics/AI/Stochastic-Games.md b/10_Wiki/Topics/AI/Stochastic-Games.md deleted file mode 100644 index 3817d518..00000000 --- a/10_Wiki/Topics/AI/Stochastic-Games.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4892A4 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Stochastic-Games" ---- - -# [[Stochastic-Games]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Stochastic-Games.md]] ---- diff --git a/10_Wiki/Topics/AI/Sum-Types.md b/10_Wiki/Topics/AI/Sum-Types.md deleted file mode 100644 index d7a13309..00000000 --- a/10_Wiki/Topics/AI/Sum-Types.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BDFB36 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sum-Types" ---- - -# [[Sum-Types]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sum-Types.md]] ---- diff --git a/10_Wiki/Topics/AI/Superposition (중첩).md b/10_Wiki/Topics/AI/Superposition (중첩).md deleted file mode 100644 index 3fe1778c..00000000 --- a/10_Wiki/Topics/AI/Superposition (중첩).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1840DD -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Superposition (중첩)" ---- - -# [[Superposition (중첩)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Superposition (중첩).md]] ---- diff --git a/10_Wiki/Topics/AI/Supply-Chain-Management.md b/10_Wiki/Topics/AI/Supply-Chain-Management.md deleted file mode 100644 index 35dc7d38..00000000 --- a/10_Wiki/Topics/AI/Supply-Chain-Management.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-58899C -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Supply-Chain-Management" ---- - -# [[Supply-Chain-Management]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Supply-Chain-Management.md]] ---- diff --git a/10_Wiki/Topics/AI/Surreal Numbers.md b/10_Wiki/Topics/AI/Surreal Numbers.md deleted file mode 100644 index 2a574be5..00000000 --- a/10_Wiki/Topics/AI/Surreal Numbers.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-785AE1 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Surreal Numbers" ---- - -# [[Surreal Numbers]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Surreal Numbers.md]] ---- diff --git a/10_Wiki/Topics/AI/Survival Horror Genre.md b/10_Wiki/Topics/AI/Survival Horror Genre.md deleted file mode 100644 index c761fbf5..00000000 --- a/10_Wiki/Topics/AI/Survival Horror Genre.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2AE52E -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Survival Horror Genre" ---- - -# [[Survival Horror Genre]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Survival Horror Genre.md]] ---- diff --git a/10_Wiki/Topics/AI/Sustainable Development Goals (SDGs).md b/10_Wiki/Topics/AI/Sustainable Development Goals (SDGs).md deleted file mode 100644 index 65255e96..00000000 --- a/10_Wiki/Topics/AI/Sustainable Development Goals (SDGs).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-189E36 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sustainable Development Goals (SDGs)" ---- - -# [[Sustainable Development Goals (SDGs)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sustainable Development Goals (SDGs).md]] ---- diff --git a/10_Wiki/Topics/AI/Sustainable-Development-Goals (SDGs).md b/10_Wiki/Topics/AI/Sustainable-Development-Goals (SDGs).md deleted file mode 100644 index 96b46bc8..00000000 --- a/10_Wiki/Topics/AI/Sustainable-Development-Goals (SDGs).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C74AAC -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sustainable-Development-Goals (SDGs)" ---- - -# [[Sustainable-Development-Goals (SDGs)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sustainable-Development-Goals (SDGs).md]] ---- diff --git a/10_Wiki/Topics/AI/Sycophancy (LLM 아첨 문제).md b/10_Wiki/Topics/AI/Sycophancy (LLM 아첨 문제).md deleted file mode 100644 index 87611aa9..00000000 --- a/10_Wiki/Topics/AI/Sycophancy (LLM 아첨 문제).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0AA310 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sycophancy (LLM 아첨 문제)" ---- - -# [[Sycophancy (LLM 아첨 문제)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sycophancy (LLM 아첨 문제).md]] ---- diff --git a/10_Wiki/Topics/AI/Symbolic-Logic.md b/10_Wiki/Topics/AI/Symbolic-Logic.md deleted file mode 100644 index d5de31a8..00000000 --- a/10_Wiki/Topics/AI/Symbolic-Logic.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5793E0 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Symbolic-Logic" ---- - -# [[Symbolic-Logic]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Symbolic-Logic.md]] ---- diff --git a/10_Wiki/Topics/AI/Synaptic Plasticity.md b/10_Wiki/Topics/AI/Synaptic Plasticity.md deleted file mode 100644 index 39785997..00000000 --- a/10_Wiki/Topics/AI/Synaptic Plasticity.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DC2DA0 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Synaptic Plasticity" ---- - -# [[Synaptic Plasticity]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Synaptic Plasticity.md]] ---- diff --git a/10_Wiki/Topics/AI/SynthID (구글 AI 식별 기술).md b/10_Wiki/Topics/AI/SynthID (구글 AI 식별 기술).md deleted file mode 100644 index b33b1360..00000000 --- a/10_Wiki/Topics/AI/SynthID (구글 AI 식별 기술).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A89657 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - SynthID (구글 AI 식별 기술)" ---- - -# [[SynthID (구글 AI 식별 기술)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/SynthID (구글 AI 식별 기술).md]] ---- diff --git a/10_Wiki/Topics/AI/Synthetic Data (합성 데이터).md b/10_Wiki/Topics/AI/Synthetic Data (합성 데이터).md deleted file mode 100644 index d779d41f..00000000 --- a/10_Wiki/Topics/AI/Synthetic Data (합성 데이터).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-532E5E -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Synthetic Data (합성 데이터)" ---- - -# [[Synthetic Data (합성 데이터)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Synthetic Data (합성 데이터).md]] ---- diff --git a/10_Wiki/Topics/AI/Systemic-Cohesion.md b/10_Wiki/Topics/AI/Systemic-Cohesion.md deleted file mode 100644 index 10b43a27..00000000 --- a/10_Wiki/Topics/AI/Systemic-Cohesion.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E0B412 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Systemic-Cohesion" ---- - -# [[Systemic-Cohesion]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Systemic-Cohesion.md]] ---- diff --git a/10_Wiki/Topics/AI/Systems Thinking in Management.md b/10_Wiki/Topics/AI/Systems Thinking in Management.md deleted file mode 100644 index 9e4936c1..00000000 --- a/10_Wiki/Topics/AI/Systems Thinking in Management.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8B0A69 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Systems Thinking in Management" ---- - -# [[Systems Thinking in Management]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Systems Thinking in Management.md]] ---- diff --git a/10_Wiki/Topics/AI/Taxonomy-and-Ontology.md b/10_Wiki/Topics/AI/Taxonomy-and-Ontology.md deleted file mode 100644 index 1c051f5b..00000000 --- a/10_Wiki/Topics/AI/Taxonomy-and-Ontology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-93E139 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Taxonomy-and-Ontology" ---- - -# [[Taxonomy-and-Ontology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Taxonomy-and-Ontology.md]] ---- diff --git a/10_Wiki/Topics/AI/Temporal Difference Learning.md b/10_Wiki/Topics/AI/Temporal Difference Learning.md deleted file mode 100644 index 0b58a573..00000000 --- a/10_Wiki/Topics/AI/Temporal Difference Learning.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-92B6E9 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Temporal Difference Learning" ---- - -# [[Temporal Difference Learning]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Temporal Difference Learning.md]] ---- diff --git a/10_Wiki/Topics/AI/Texture-Synthesis.md b/10_Wiki/Topics/AI/Texture-Synthesis.md deleted file mode 100644 index a12c2351..00000000 --- a/10_Wiki/Topics/AI/Texture-Synthesis.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-197D49 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Texture-Synthesis" ---- - -# [[Texture-Synthesis]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Texture-Synthesis.md]] ---- diff --git a/10_Wiki/Topics/AI/The Immersive Sim Taxonomy Debate.md b/10_Wiki/Topics/AI/The Immersive Sim Taxonomy Debate.md deleted file mode 100644 index 858d5746..00000000 --- a/10_Wiki/Topics/AI/The Immersive Sim Taxonomy Debate.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4613F1 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - The Immersive Sim Taxonomy Debate" ---- - -# [[The Immersive Sim Taxonomy Debate]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/The 'Immersive Sim' Taxonomy Debate.md]] ---- diff --git a/10_Wiki/Topics/AI/The Last of Us Series.md b/10_Wiki/Topics/AI/The Last of Us Series.md deleted file mode 100644 index ff05119e..00000000 --- a/10_Wiki/Topics/AI/The Last of Us Series.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2121F1 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - The Last of Us Series" ---- - -# [[The Last of Us Series]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/The Last of Us Series.md]] ---- diff --git a/10_Wiki/Topics/AI/The Overwatch League Case Study.md b/10_Wiki/Topics/AI/The Overwatch League Case Study.md deleted file mode 100644 index 2960c83d..00000000 --- a/10_Wiki/Topics/AI/The Overwatch League Case Study.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B644A1 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - The Overwatch League Case Study" ---- - -# [[The Overwatch League Case Study]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/The Overwatch League Case Study.md]] ---- diff --git a/10_Wiki/Topics/AI/The Science of Well-Being (Yale).md b/10_Wiki/Topics/AI/The Science of Well-Being (Yale).md deleted file mode 100644 index 159c2a95..00000000 --- a/10_Wiki/Topics/AI/The Science of Well-Being (Yale).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C3C1C2 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - The Science of Well-Being (Yale)" ---- - -# [[The Science of Well-Being (Yale)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/The Science of Well-Being (Yale).md]] ---- diff --git a/10_Wiki/Topics/AI/The-Collapse-of-Utopian-Ideologies.md b/10_Wiki/Topics/AI/The-Collapse-of-Utopian-Ideologies.md deleted file mode 100644 index 324d452b..00000000 --- a/10_Wiki/Topics/AI/The-Collapse-of-Utopian-Ideologies.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-12C4DD -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - The-Collapse-of-Utopian-Ideologies" ---- - -# [[The-Collapse-of-Utopian-Ideologies]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/The-Collapse-of-Utopian-Ideologies.md]] ---- diff --git a/10_Wiki/Topics/AI/Themework-Integration.md b/10_Wiki/Topics/AI/Themework-Integration.md deleted file mode 100644 index fdd0e2a8..00000000 --- a/10_Wiki/Topics/AI/Themework-Integration.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-159F6C -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Themework-Integration" ---- - -# [[Themework-Integration]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Themework-Integration.md]] ---- diff --git a/10_Wiki/Topics/AI/Time Series Analysis.md b/10_Wiki/Topics/AI/Time Series Analysis.md deleted file mode 100644 index e4bbe742..00000000 --- a/10_Wiki/Topics/AI/Time Series Analysis.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D84BD7 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Time Series Analysis" ---- - -# [[Time Series Analysis]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Time Series Analysis.md]] ---- diff --git a/10_Wiki/Topics/AI/Time to Interactive (TTI).md b/10_Wiki/Topics/AI/Time to Interactive (TTI).md deleted file mode 100644 index 0d2efe79..00000000 --- a/10_Wiki/Topics/AI/Time to Interactive (TTI).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8492DF -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Time to Interactive (TTI)" ---- - -# [[Time to Interactive (TTI)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> Time to Interactive (TTI)는 Chrome Lighthouse에서 주로 사용되는 웹 성능 측정 지표입니다 [1]. 이는 페이지 렌더링이 완료되고, JavaScript 실행이 끝나며, 브라우저의 백그라운드 작업이 완료되어 페이지가 완전히 상호작용 가능한 상태(fully interactive)가 될 때까지 걸리는 시간을 측정합니다 [1]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Largest Contentful Paint (LCP)]], [[First Input Delay (FID)]] -- **Projects/Contexts:** [[Chrome Lighthouse]] -- **Contradictions/Notes:** 소스에 관련 정보가 부족합니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Time to Interactive (TTI).md]] ---- diff --git a/10_Wiki/Topics/AI/Tokenomics.md b/10_Wiki/Topics/AI/Tokenomics.md deleted file mode 100644 index 9008567b..00000000 --- a/10_Wiki/Topics/AI/Tokenomics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-84C772 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Tokenomics" ---- - -# [[Tokenomics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Tokenomics.md]] ---- diff --git a/10_Wiki/Topics/AI/Topology-of-Strategy-Spaces.md b/10_Wiki/Topics/AI/Topology-of-Strategy-Spaces.md deleted file mode 100644 index a1df60fd..00000000 --- a/10_Wiki/Topics/AI/Topology-of-Strategy-Spaces.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2D6874 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Topology-of-Strategy-Spaces" ---- - -# [[Topology-of-Strategy-Spaces]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Topology-of-Strategy-Spaces.md]] ---- diff --git a/10_Wiki/Topics/AI/Trajectory-Planning.md b/10_Wiki/Topics/AI/Trajectory-Planning.md deleted file mode 100644 index 9a885658..00000000 --- a/10_Wiki/Topics/AI/Trajectory-Planning.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A39C55 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Trajectory-Planning" ---- - -# [[Trajectory-Planning]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Trajectory-Planning.md]] ---- diff --git a/10_Wiki/Topics/AI/Transhumanism.md b/10_Wiki/Topics/AI/Transhumanism.md deleted file mode 100644 index 159822f8..00000000 --- a/10_Wiki/Topics/AI/Transhumanism.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B576FD -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Transhumanism" ---- - -# [[Transhumanism]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Transhumanism.md]] ---- diff --git a/10_Wiki/Topics/AI/Transient Hypofrontality.md b/10_Wiki/Topics/AI/Transient Hypofrontality.md deleted file mode 100644 index dcc75aad..00000000 --- a/10_Wiki/Topics/AI/Transient Hypofrontality.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DFE168 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Transient Hypofrontality" ---- - -# [[Transient Hypofrontality]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Transient Hypofrontality.md]] ---- diff --git a/10_Wiki/Topics/AI/Transient-Hypofrontality.md b/10_Wiki/Topics/AI/Transient-Hypofrontality.md deleted file mode 100644 index fd44afb6..00000000 --- a/10_Wiki/Topics/AI/Transient-Hypofrontality.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-18B59B -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Transient-Hypofrontality" ---- - -# [[Transient-Hypofrontality]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Transient-Hypofrontality.md]] ---- diff --git a/10_Wiki/Topics/AI/Transit-Oriented-Development (TOD).md b/10_Wiki/Topics/AI/Transit-Oriented-Development (TOD).md deleted file mode 100644 index 0d6b7a09..00000000 --- a/10_Wiki/Topics/AI/Transit-Oriented-Development (TOD).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-50DD5F -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Transit-Oriented-Development (TOD)" ---- - -# [[Transit-Oriented-Development (TOD)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Transit-Oriented-Development (TOD).md]] ---- diff --git a/10_Wiki/Topics/AI/Tree-of-Thought (ToT 사고 트리).md b/10_Wiki/Topics/AI/Tree-of-Thought (ToT 사고 트리).md deleted file mode 100644 index 14f2e74a..00000000 --- a/10_Wiki/Topics/AI/Tree-of-Thought (ToT 사고 트리).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E38A5C -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Tree-of-Thought (ToT 사고 트리)" ---- - -# [[Tree-of-Thought (ToT 사고 트리)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Tree-of-Thought (ToT, 사고 트리).md]] ---- diff --git a/10_Wiki/Topics/AI/Type Definition Files (DefinitelyTyped).md b/10_Wiki/Topics/AI/Type Definition Files (DefinitelyTyped).md deleted file mode 100644 index 177483ee..00000000 --- a/10_Wiki/Topics/AI/Type Definition Files (DefinitelyTyped).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CF3F9B -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type Definition Files (DefinitelyTyped)" ---- - -# [[Type Definition Files (DefinitelyTyped)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type Definition Files (DefinitelyTyped).md]] ---- diff --git a/10_Wiki/Topics/AI/Type-Composition-via-Intersection-Types.md b/10_Wiki/Topics/AI/Type-Composition-via-Intersection-Types.md deleted file mode 100644 index a81ee9bc..00000000 --- a/10_Wiki/Topics/AI/Type-Composition-via-Intersection-Types.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FBAE38 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Composition-via-Intersection-Types" ---- - -# [[Type-Composition-via-Intersection-Types]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Composition-via-Intersection-Types.md]] ---- diff --git a/10_Wiki/Topics/AI/Type-Guards.md b/10_Wiki/Topics/AI/Type-Guards.md deleted file mode 100644 index 0ac69c2e..00000000 --- a/10_Wiki/Topics/AI/Type-Guards.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1B3627 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Guards" ---- - -# [[Type-Guards]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Guards.md]] ---- diff --git a/10_Wiki/Topics/AI/Type-Inference.md b/10_Wiki/Topics/AI/Type-Inference.md deleted file mode 100644 index d8503fd1..00000000 --- a/10_Wiki/Topics/AI/Type-Inference.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-37FB9B -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Inference" ---- - -# [[Type-Inference]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Inference.md]] ---- diff --git a/10_Wiki/Topics/AI/Type-Intersection.md b/10_Wiki/Topics/AI/Type-Intersection.md deleted file mode 100644 index 0e5645db..00000000 --- a/10_Wiki/Topics/AI/Type-Intersection.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D16150 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Intersection" ---- - -# [[Type-Intersection]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Intersection.md]] ---- diff --git a/10_Wiki/Topics/AI/Type-Safety-in-Distributed-Systems.md b/10_Wiki/Topics/AI/Type-Safety-in-Distributed-Systems.md deleted file mode 100644 index 86cb59ed..00000000 --- a/10_Wiki/Topics/AI/Type-Safety-in-Distributed-Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D64613 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Safety-in-Distributed-Systems" ---- - -# [[Type-Safety-in-Distributed-Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Safety-in-Distributed-Systems.md]] ---- diff --git a/10_Wiki/Topics/AI/Type-Safety-in-Domain-Driven-Design.md b/10_Wiki/Topics/AI/Type-Safety-in-Domain-Driven-Design.md deleted file mode 100644 index 8be9bee6..00000000 --- a/10_Wiki/Topics/AI/Type-Safety-in-Domain-Driven-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C88D89 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Safety-in-Domain-Driven-Design" ---- - -# [[Type-Safety-in-Domain-Driven-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Safety-in-Domain-Driven-Design.md]] ---- diff --git a/10_Wiki/Topics/AI/Type-Safety-in-Generics.md b/10_Wiki/Topics/AI/Type-Safety-in-Generics.md deleted file mode 100644 index a530c1b2..00000000 --- a/10_Wiki/Topics/AI/Type-Safety-in-Generics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D5AEC1 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Safety-in-Generics" ---- - -# [[Type-Safety-in-Generics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Safety-in-Generics.md]] ---- diff --git a/10_Wiki/Topics/AI/Type-Soundness.md b/10_Wiki/Topics/AI/Type-Soundness.md deleted file mode 100644 index 9358beb3..00000000 --- a/10_Wiki/Topics/AI/Type-Soundness.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9C23CB -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Soundness" ---- - -# [[Type-Soundness]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Soundness.md]] ---- diff --git a/10_Wiki/Topics/AI/Type-Theory.md b/10_Wiki/Topics/AI/Type-Theory.md deleted file mode 100644 index bcc8d1db..00000000 --- a/10_Wiki/Topics/AI/Type-Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3E115A -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Theory" ---- - -# [[Type-Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Theory.md]] ---- diff --git a/10_Wiki/Topics/AI/Type-Unification.md b/10_Wiki/Topics/AI/Type-Unification.md deleted file mode 100644 index 187972c5..00000000 --- a/10_Wiki/Topics/AI/Type-Unification.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-190EA7 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Unification" ---- - -# [[Type-Unification]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Unification.md]] ---- diff --git a/10_Wiki/Topics/AI/TypeScript Compiler (tsc).md b/10_Wiki/Topics/AI/TypeScript Compiler (tsc).md deleted file mode 100644 index 861f2e6d..00000000 --- a/10_Wiki/Topics/AI/TypeScript Compiler (tsc).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E23D67 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript Compiler (tsc)" ---- - -# [[TypeScript Compiler (tsc)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript Compiler (tsc).md]] ---- diff --git a/10_Wiki/Topics/AI/TypeScript Declaration Files (dts) Design.md b/10_Wiki/Topics/AI/TypeScript Declaration Files (dts) Design.md deleted file mode 100644 index 6ea7e836..00000000 --- a/10_Wiki/Topics/AI/TypeScript Declaration Files (dts) Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-EE6A06 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript Declaration Files (dts) Design" ---- - -# [[TypeScript Declaration Files (dts) Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript Declaration Files (.d.ts) Design.md]] ---- diff --git a/10_Wiki/Topics/AI/TypeScript Interface Design.md b/10_Wiki/Topics/AI/TypeScript Interface Design.md deleted file mode 100644 index fd9506be..00000000 --- a/10_Wiki/Topics/AI/TypeScript Interface Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2B3B7E -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript Interface Design" ---- - -# [[TypeScript Interface Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript Interface Design.md]] ---- diff --git a/10_Wiki/Topics/AI/TypeScript Type System Design.md b/10_Wiki/Topics/AI/TypeScript Type System Design.md deleted file mode 100644 index 7761a326..00000000 --- a/10_Wiki/Topics/AI/TypeScript Type System Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-616782 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript Type System Design" ---- - -# [[TypeScript Type System Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript Type System Design.md]] ---- diff --git a/10_Wiki/Topics/AI/TypeScript-Advanced-Type-System-Design.md b/10_Wiki/Topics/AI/TypeScript-Advanced-Type-System-Design.md deleted file mode 100644 index 11afb726..00000000 --- a/10_Wiki/Topics/AI/TypeScript-Advanced-Type-System-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3E5992 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript-Advanced-Type-System-Design" ---- - -# [[TypeScript-Advanced-Type-System-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript-Advanced-Type-System-Design.md]] ---- diff --git a/10_Wiki/Topics/AI/TypeScript-Compiler-API-Integration.md b/10_Wiki/Topics/AI/TypeScript-Compiler-API-Integration.md deleted file mode 100644 index 604d403d..00000000 --- a/10_Wiki/Topics/AI/TypeScript-Compiler-API-Integration.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C996EE -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript-Compiler-API-Integration" ---- - -# [[TypeScript-Compiler-API-Integration]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript-Compiler-API-Integration.md]] ---- diff --git a/10_Wiki/Topics/AI/TypeScript-Domain-Driven-Design.md b/10_Wiki/Topics/AI/TypeScript-Domain-Driven-Design.md deleted file mode 100644 index 918341be..00000000 --- a/10_Wiki/Topics/AI/TypeScript-Domain-Driven-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1EE94B -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript-Domain-Driven-Design" ---- - -# [[TypeScript-Domain-Driven-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript-Domain-Driven-Design.md]] ---- diff --git a/10_Wiki/Topics/AI/TypeScript-Interface-Design.md b/10_Wiki/Topics/AI/TypeScript-Interface-Design.md deleted file mode 100644 index 3de67588..00000000 --- a/10_Wiki/Topics/AI/TypeScript-Interface-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8A42E4 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript-Interface-Design" ---- - -# [[TypeScript-Interface-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript-Interface-Design.md]] ---- diff --git a/10_Wiki/Topics/AI/TypeScript-Type-System-Architecture.md b/10_Wiki/Topics/AI/TypeScript-Type-System-Architecture.md deleted file mode 100644 index 30caeb9d..00000000 --- a/10_Wiki/Topics/AI/TypeScript-Type-System-Architecture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-82C949 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript-Type-System-Architecture" ---- - -# [[TypeScript-Type-System-Architecture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript-Type-System-Architecture.md]] ---- diff --git a/10_Wiki/Topics/AI/TypeScript-Type-System-Design.md b/10_Wiki/Topics/AI/TypeScript-Type-System-Design.md deleted file mode 100644 index 1eadf4b1..00000000 --- a/10_Wiki/Topics/AI/TypeScript-Type-System-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F844F1 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript-Type-System-Design" ---- - -# [[TypeScript-Type-System-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript-Type-System-Design.md]] ---- diff --git a/10_Wiki/Topics/AI/TypeScript-Type-System-Interface-Design.md b/10_Wiki/Topics/AI/TypeScript-Type-System-Interface-Design.md deleted file mode 100644 index 313458af..00000000 --- a/10_Wiki/Topics/AI/TypeScript-Type-System-Interface-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9A759D -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript-Type-System-Interface-Design" ---- - -# [[TypeScript-Type-System-Interface-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript-Type-System-Interface-Design.md]] ---- diff --git a/10_Wiki/Topics/AI/TypeScript-Type-System.md b/10_Wiki/Topics/AI/TypeScript-Type-System.md deleted file mode 100644 index 1c6f3276..00000000 --- a/10_Wiki/Topics/AI/TypeScript-Type-System.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6060FE -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript-Type-System" ---- - -# [[TypeScript-Type-System]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript-Type-System.md]] ---- diff --git a/10_Wiki/Topics/AI/UX-Design-and-Engagement.md b/10_Wiki/Topics/AI/UX-Design-and-Engagement.md deleted file mode 100644 index d5ea0967..00000000 --- a/10_Wiki/Topics/AI/UX-Design-and-Engagement.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6D50AA -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - UX-Design-and-Engagement" ---- - -# [[UX-Design-and-Engagement]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/UX-Design-and-Engagement.md]] ---- diff --git a/10_Wiki/Topics/AI/UX-Research-Methodologies.md b/10_Wiki/Topics/AI/UX-Research-Methodologies.md deleted file mode 100644 index d4310520..00000000 --- a/10_Wiki/Topics/AI/UX-Research-Methodologies.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-037092 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - UX-Research-Methodologies" ---- - -# [[UX-Research-Methodologies]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/UX-Research-Methodologies.md]] ---- diff --git a/10_Wiki/Topics/AI/Ubiquitous Computing Paradigm.md b/10_Wiki/Topics/AI/Ubiquitous Computing Paradigm.md deleted file mode 100644 index bd90d979..00000000 --- a/10_Wiki/Topics/AI/Ubiquitous Computing Paradigm.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C59CA1 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ubiquitous Computing Paradigm" ---- - -# [[Ubiquitous Computing Paradigm]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ubiquitous Computing Paradigm.md]] ---- diff --git a/10_Wiki/Topics/AI/Ubiquitous Computing.md b/10_Wiki/Topics/AI/Ubiquitous Computing.md deleted file mode 100644 index f842b465..00000000 --- a/10_Wiki/Topics/AI/Ubiquitous Computing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8C0151 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ubiquitous Computing" ---- - -# [[Ubiquitous Computing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ubiquitous Computing.md]] ---- diff --git a/10_Wiki/Topics/AI/Ubiquitous-Computing.md b/10_Wiki/Topics/AI/Ubiquitous-Computing.md deleted file mode 100644 index 66f4f900..00000000 --- a/10_Wiki/Topics/AI/Ubiquitous-Computing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6333BB -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ubiquitous-Computing" ---- - -# [[Ubiquitous-Computing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ubiquitous-Computing.md]] ---- diff --git a/10_Wiki/Topics/AI/Ubiquitous-Language-Encoding.md b/10_Wiki/Topics/AI/Ubiquitous-Language-Encoding.md deleted file mode 100644 index 2792dc21..00000000 --- a/10_Wiki/Topics/AI/Ubiquitous-Language-Encoding.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3B5892 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ubiquitous-Language-Encoding" ---- - -# [[Ubiquitous-Language-Encoding]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ubiquitous-Language-Encoding.md]] ---- diff --git a/10_Wiki/Topics/AI/Union-Types-vs-Overloading.md b/10_Wiki/Topics/AI/Union-Types-vs-Overloading.md deleted file mode 100644 index 39e5bcda..00000000 --- a/10_Wiki/Topics/AI/Union-Types-vs-Overloading.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-13D0FE -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Union-Types-vs-Overloading" ---- - -# [[Union-Types-vs-Overloading]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Union-Types-vs-Overloading.md]] ---- diff --git a/10_Wiki/Topics/AI/Universal-Design-Principles.md b/10_Wiki/Topics/AI/Universal-Design-Principles.md deleted file mode 100644 index c655002d..00000000 --- a/10_Wiki/Topics/AI/Universal-Design-Principles.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-701DFC -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Universal-Design-Principles" ---- - -# [[Universal-Design-Principles]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Universal-Design-Principles.md]] ---- diff --git a/10_Wiki/Topics/AI/Urban Resilience Strategies.md b/10_Wiki/Topics/AI/Urban Resilience Strategies.md deleted file mode 100644 index a6ef41ab..00000000 --- a/10_Wiki/Topics/AI/Urban Resilience Strategies.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C3A9D0 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Urban Resilience Strategies" ---- - -# [[Urban Resilience Strategies]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Urban Resilience Strategies.md]] ---- diff --git a/10_Wiki/Topics/AI/Urban-Planning.md b/10_Wiki/Topics/AI/Urban-Planning.md deleted file mode 100644 index 0916ab65..00000000 --- a/10_Wiki/Topics/AI/Urban-Planning.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A67C66 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Urban-Planning" ---- - -# [[Urban-Planning]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Urban-Planning.md]] ---- diff --git a/10_Wiki/Topics/AI/Utility Theory.md b/10_Wiki/Topics/AI/Utility Theory.md deleted file mode 100644 index 2c196da9..00000000 --- a/10_Wiki/Topics/AI/Utility Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D4C836 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Utility Theory" ---- - -# [[Utility Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Utility Theory.md]] ---- diff --git a/10_Wiki/Topics/AI/VIA Institute on Character.md b/10_Wiki/Topics/AI/VIA Institute on Character.md deleted file mode 100644 index c4749b5c..00000000 --- a/10_Wiki/Topics/AI/VIA Institute on Character.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4C752E -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - VIA Institute on Character" ---- - -# [[VIA Institute on Character]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/VIA Institute on Character.md]] ---- diff --git a/10_Wiki/Topics/AI/Value Object Pattern.md b/10_Wiki/Topics/AI/Value Object Pattern.md deleted file mode 100644 index 8a9ba032..00000000 --- a/10_Wiki/Topics/AI/Value Object Pattern.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-314692 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Value Object Pattern" ---- - -# [[Value Object Pattern]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Value Object Pattern.md]] ---- diff --git a/10_Wiki/Topics/AI/Value-Objects.md b/10_Wiki/Topics/AI/Value-Objects.md deleted file mode 100644 index 86709d91..00000000 --- a/10_Wiki/Topics/AI/Value-Objects.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-038FBF -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Value-Objects" ---- - -# [[Value-Objects]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Value-Objects.md]] ---- diff --git a/10_Wiki/Topics/AI/Variational-Autoencoders.md b/10_Wiki/Topics/AI/Variational-Autoencoders.md deleted file mode 100644 index aea9d8dd..00000000 --- a/10_Wiki/Topics/AI/Variational-Autoencoders.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-92A652 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Variational-Autoencoders" ---- - -# [[Variational-Autoencoders]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Variational-Autoencoders.md]] ---- diff --git a/10_Wiki/Topics/AI/Visual Positioning Systems (VPS).md b/10_Wiki/Topics/AI/Visual Positioning Systems (VPS).md deleted file mode 100644 index 9d8b2464..00000000 --- a/10_Wiki/Topics/AI/Visual Positioning Systems (VPS).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5B3EE3 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Visual Positioning Systems (VPS)" ---- - -# [[Visual Positioning Systems (VPS)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Visual Positioning Systems (VPS).md]] ---- diff --git a/10_Wiki/Topics/AI/WAI-ARIA-Accessible-Rich-Internet-Applications.md b/10_Wiki/Topics/AI/WAI-ARIA-Accessible-Rich-Internet-Applications.md deleted file mode 100644 index 40b1fce2..00000000 --- a/10_Wiki/Topics/AI/WAI-ARIA-Accessible-Rich-Internet-Applications.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6F7B37 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - WAI-ARIA-Accessible-Rich-Internet-Applications" ---- - -# [[WAI-ARIA-Accessible-Rich-Internet-Applications]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/WAI-ARIA-Accessible-Rich-Internet-Applications.md]] ---- diff --git a/10_Wiki/Topics/AI/Wang-Tiles.md b/10_Wiki/Topics/AI/Wang-Tiles.md deleted file mode 100644 index 582422c3..00000000 --- a/10_Wiki/Topics/AI/Wang-Tiles.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1C2064 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Wang-Tiles" ---- - -# [[Wang-Tiles]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Wang-Tiles.md]] ---- diff --git a/10_Wiki/Topics/AI/Watermarking (AI 워터마킹).md b/10_Wiki/Topics/AI/Watermarking (AI 워터마킹).md deleted file mode 100644 index fa75ccda..00000000 --- a/10_Wiki/Topics/AI/Watermarking (AI 워터마킹).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-948507 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Watermarking (AI 워터마킹)" ---- - -# [[Watermarking (AI 워터마킹)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Watermarking (AI 워터마킹).md]] ---- diff --git a/10_Wiki/Topics/AI/Wavefunction-Collapse-Algorithm.md b/10_Wiki/Topics/AI/Wavefunction-Collapse-Algorithm.md deleted file mode 100644 index 9a1e0b1e..00000000 --- a/10_Wiki/Topics/AI/Wavefunction-Collapse-Algorithm.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E0FD1F -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Wavefunction-Collapse-Algorithm" ---- - -# [[Wavefunction-Collapse-Algorithm]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Wavefunction-Collapse-Algorithm.md]] ---- diff --git a/10_Wiki/Topics/AI/Web-Content-Accessibility-Guidelines-WCAG.md b/10_Wiki/Topics/AI/Web-Content-Accessibility-Guidelines-WCAG.md deleted file mode 100644 index 6e26e524..00000000 --- a/10_Wiki/Topics/AI/Web-Content-Accessibility-Guidelines-WCAG.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-52EA66 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Web-Content-Accessibility-Guidelines-WCAG" ---- - -# [[Web-Content-Accessibility-Guidelines-WCAG]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Web-Content-Accessibility-Guidelines-WCAG.md]] ---- diff --git a/10_Wiki/Topics/AI/Wellbeing-Science.md b/10_Wiki/Topics/AI/Wellbeing-Science.md deleted file mode 100644 index 29bb11c4..00000000 --- a/10_Wiki/Topics/AI/Wellbeing-Science.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-59A0A3 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Wellbeing-Science" ---- - -# [[Wellbeing-Science]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Wellbeing-Science.md]] ---- diff --git a/10_Wiki/Topics/AI/Width-Subtyping.md b/10_Wiki/Topics/AI/Width-Subtyping.md deleted file mode 100644 index a10c74f8..00000000 --- a/10_Wiki/Topics/AI/Width-Subtyping.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-20758B -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Width-Subtyping" ---- - -# [[Width-Subtyping]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Width-Subtyping.md]] ---- diff --git a/10_Wiki/Topics/AI/Wikidata.md b/10_Wiki/Topics/AI/Wikidata.md deleted file mode 100644 index 3ddcba17..00000000 --- a/10_Wiki/Topics/AI/Wikidata.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-244AE9 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Wikidata" ---- - -# [[Wikidata]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Wikidata.md]] ---- diff --git a/10_Wiki/Topics/AI/Work-Engagement-Models.md b/10_Wiki/Topics/AI/Work-Engagement-Models.md deleted file mode 100644 index d528ac7b..00000000 --- a/10_Wiki/Topics/AI/Work-Engagement-Models.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CBB42F -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Work-Engagement-Models" ---- - -# [[Work-Engagement-Models]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Work-Engagement-Models.md]] ---- diff --git a/10_Wiki/Topics/AI/World of Warcraft (Gold Sink Mechanics).md b/10_Wiki/Topics/AI/World of Warcraft (Gold Sink Mechanics).md deleted file mode 100644 index bb57531a..00000000 --- a/10_Wiki/Topics/AI/World of Warcraft (Gold Sink Mechanics).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DA62AF -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - World of Warcraft (Gold Sink Mechanics)" ---- - -# [[World of Warcraft (Gold Sink Mechanics)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/World of Warcraft (Gold Sink Mechanics).md]] ---- diff --git a/10_Wiki/Topics/AI/e스포츠 인지 상태 및 성과 위험 평가.md b/10_Wiki/Topics/AI/e스포츠 인지 상태 및 성과 위험 평가.md deleted file mode 100644 index fb0f4a30..00000000 --- a/10_Wiki/Topics/AI/e스포츠 인지 상태 및 성과 위험 평가.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -id: P-REINFORCE-AUTO-52CDF0 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - e스포츠 인지 상태 및 성과 위험 평가" ---- - -# [[e스포츠 인지 상태 및 성과 위험 평가]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **생체 신호를 통한 인지 상태 감지 (Detection of Cognitive States)** - e스포츠 선수들이 경험하는 정신적 작업 부하(Mental Workload), 스트레스, 인지적 피로는 다양한 센서를 통해 정량화됩니다 [5]. 안구 측정에서 **동공 크기는 단기적인 인지적 노력에 비례하여 확장되지만, 장시간 플레이로 인해 인지적 피로(Cognitive Fatigue)가 누적될 경우 반대로 수축(Pupil constriction)하는 특징을 보입니다** [5], [6]. 또한, 뇌파(EEG) 데이터를 활용한 기계 학습(Gradient Boosting 등) 모델은 선수가 '상쾌한(fresh)' 상태인지 '지친(tired)' 상태인지를 최대 88%의 정확도로 성공적으로 예측해 냅니다 [6]. - -- **자율신경계 반응과 몰입 상태 (Autonomic Responses and Flow State)** - 심박 변이도(HRV)와 피부 전도도(EDA/GSR)는 인지 부하 및 스트레스 수준을 측정하는 핵심 지표로 활용됩니다 [3]. 급성 인지적 스트레스나 높은 작업 부하가 요구되는 경쟁 상황에서는 교감신경의 활성화로 인해 HRV가 감소하고 EDA가 크게 증가합니다 [5], [7]. 그러나 선수의 기술과 과제의 난이도가 완벽한 균형을 이루는 최적의 수행 상태인 **'몰입(Flow)' 상태에서는 부교감신경이 우세해져 HRV 지표가 오히려 증가하는 현상**이 나타납니다 [8], [9]. - -- **전문성 평가 및 행동 지표 (Differentiating Player Expertise)** - 생체 신호는 선수의 숙련도를 명확히 구분하는 데에도 유용합니다 [10]. 뇌파(EEG) 분석 결과, **프로 선수들은 초보자에 비해 사건 관련 전위(ERP) 반응이 20~70ms 더 빠르고 진폭이 7~9µV 더 크며**, 이를 바탕으로 숙련도를 92%의 정확도로 분류할 수 있습니다 [10]. FPS 게임에서는 중요한 운동 행동을 시작하기 전 표적에 시선을 고정하는 **'조용한 시선(Quiet Eye)'의 지속 시간이 숙련된 엘리트 선수일수록 유의미하게 길게 나타납니다** [11]. - -- **틸트(Tilt) 및 성과 저하 예측 (Predicting Tilt and Performance Decline)** - 회귀 트리(Regression Tree)나 SVM 등의 기계 학습 알고리즘을 다중 모달(Multimodal) 생체 신호 데이터에 적용하면, 선수의 성과가 급격히 하락하는 **'틸트(Tilt)' 상태의 시작을 실시간으로 예측**할 수 있습니다 [12], [13]. 한 연구에 따르면 과거 10~15분간의 센서 데이터를 사용하여 게임 장르에 따라 76.6%에서 87%의 높은 정확도로 틸트 상태를 예측하는 데 성공했습니다 [12]. 단, 이러한 예측 모델은 선수 개인마다 고유한 생리적 반응을 보이므로 일반화된 모델보다 **개인화된(User-dependent) 모델을 적용할 때 분류 성능이 현저히 향상(약 27% 향상)**됩니다 [14]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[기계 학습(Machine Learning)]], [[생체 신호(Physiological Signals)]], [[심박 변이도(HRV)]], [[틸트(Tilt)]], [[몰입(Flow State)]] -- **Projects/Contexts:** 웨어러블 센서(EEG, EDA, 시선 추적기 등)를 기반으로 한 기계 학습 모델을 통해 e스포츠 선수의 실시간 인지 상태(작업 부하, 인지적 피로)를 감지하고 성과 하락(틸트)을 예측하기 위한 프레임워크 연구 [15], [12]. -- **Contradictions/Notes:** HRV 수치는 인지적 요구와 스트레스가 높은 압박 상황에서는 감소하지만, 플레이어가 고도의 집중과 기술적 균형을 이루는 '몰입(Flow)'에 진입했을 때는 반대로 증가하므로 측정 당시의 게임 문맥에 따른 세심한 해석이 필수적입니다 [7], [8]. 동공 크기 역시 단기적인 인지적 노력의 증가에는 확장되지만, 2시간 이상의 장기적인 인지적 피로 상태에서는 수축하는 상반된 반응을 보입니다 [5], [6]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/e스포츠 인지 상태 및 성과 위험 평가.md]] ---- diff --git a/10_Wiki/Topics/AI/가상화 (Virtualization).md b/10_Wiki/Topics/AI/가상화 (Virtualization).md deleted file mode 100644 index 2e4fb06b..00000000 --- a/10_Wiki/Topics/AI/가상화 (Virtualization).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9E9923 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 가상화 (Virtualization)" ---- - -# [[가상화 (Virtualization)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/가상화 (Virtualization).md]] ---- diff --git a/10_Wiki/Topics/AI/강화학습 (Reinforcement Learning).md b/10_Wiki/Topics/AI/강화학습 (Reinforcement Learning).md deleted file mode 100644 index 0eb47e3f..00000000 --- a/10_Wiki/Topics/AI/강화학습 (Reinforcement Learning).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FE1230 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 강화학습 (Reinforcement Learning)" ---- - -# [[강화학습 (Reinforcement Learning)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/강화학습 (Reinforcement Learning).md]] ---- diff --git a/10_Wiki/Topics/AI/대규모 React 프론트엔드 최적화.md b/10_Wiki/Topics/AI/대규모 React 프론트엔드 최적화.md deleted file mode 100644 index 722de782..00000000 --- a/10_Wiki/Topics/AI/대규모 React 프론트엔드 최적화.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FAAB3D -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 대규모 React 프론트엔드 최적화" ---- - -# [[대규모 React 프론트엔드 최적화]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/대규모 React 프론트엔드 최적화.md]] ---- diff --git a/10_Wiki/Topics/AI/도파민 보상 체계 (Dopaminergic Reward System).md b/10_Wiki/Topics/AI/도파민 보상 체계 (Dopaminergic Reward System).md deleted file mode 100644 index 6511532f..00000000 --- a/10_Wiki/Topics/AI/도파민 보상 체계 (Dopaminergic Reward System).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-90ACEA -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 도파민 보상 체계 (Dopaminergic Reward System)" ---- - -# [[도파민 보상 체계 (Dopaminergic Reward System)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/도파민 보상 체계 (Dopaminergic Reward System).md]] ---- diff --git a/10_Wiki/Topics/AI/디자인 시스템 (Design Systems).md b/10_Wiki/Topics/AI/디자인 시스템 (Design Systems).md deleted file mode 100644 index 76c25be9..00000000 --- a/10_Wiki/Topics/AI/디자인 시스템 (Design Systems).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-891E2B -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 디자인 시스템 (Design Systems)" ---- - -# [[디자인 시스템 (Design Systems)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/디자인 시스템 (Design Systems).md]] ---- diff --git a/10_Wiki/Topics/AI/스캐빈저(Scavenger).md b/10_Wiki/Topics/AI/스캐빈저(Scavenger).md deleted file mode 100644 index 528b00bb..00000000 --- a/10_Wiki/Topics/AI/스캐빈저(Scavenger).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-07787D -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 스캐빈저(Scavenger)" ---- - -# [[스캐빈저(Scavenger)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 스캐빈저(Scavenger)는 V8 및 기타 가상 머신에서 새롭게 생성된 수명이 짧은 객체들이 모여 있는 '새로운 공간(New Space 또는 Nursery)'의 메모리를 회수하기 위해 작동하는 마이너 가비지 컬렉션(Minor GC) 메커니즘입니다 [1-3]. 새로운 객체를 위한 공간을 할당하다가 한계에 도달하여 '할당 실패(Allocation failure)'가 발생했을 때 빠르게 실행됩니다 [3, 4]. 살아남은 객체만을 다른 메모리 영역으로 복사하여 단편화를 없애며, 이 과정을 반복하여 오래 살아남은 객체를 기존 세대(Old Generation)로 승격(Promotion)시킵니다 [5, 6]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[마이너 가비지 컬렉션(Minor GC)]], [[New Space(Young Generation)]], [[할당 실패(Allocation Failure)]], [[Old Space(Old Generation)]], [[메모리 단편화(Fragmentation)]] -- **Projects/Contexts:** [[V8 엔진 힙 아키텍처]], [[Orinoco 가비지 컬렉터]], [[브라우저 및 Node.js 메모리 튜닝]] -- **Contradictions/Notes:** 스캐빈저 알고리즘은 빠른 메모리 할당 및 단편화 제거에 매우 효율적이지만, `To-Space`와 `From-Space` 두 영역의 물리적 메모리를 모두 확보해야 하므로 공간 오버헤드가 크다는 단점이 있습니다 [9, 22]. 따라서 몇 메가바이트 이상의 큰 용량을 관리하는 데에는 비실용적이며, 이를 극복하기 위해 크기가 큰 Old Space에서는 Mark-Sweep 및 Mark-Compact 알고리즘을 혼용합니다 [22, 23]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/스캐빈저(Scavenger).md]] ---- diff --git a/10_Wiki/Topics/AI/양자화 (Quantization).md b/10_Wiki/Topics/AI/양자화 (Quantization).md deleted file mode 100644 index f41cfe22..00000000 --- a/10_Wiki/Topics/AI/양자화 (Quantization).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7321F3 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 양자화 (Quantization)" ---- - -# [[양자화 (Quantization)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/양자화 (Quantization).md]] ---- diff --git a/10_Wiki/Topics/AI/에듀테크 기반 게이미피케이션 전략.md b/10_Wiki/Topics/AI/에듀테크 기반 게이미피케이션 전략.md deleted file mode 100644 index ecf1f266..00000000 --- a/10_Wiki/Topics/AI/에듀테크 기반 게이미피케이션 전략.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4FA22A -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 에듀테크 기반 게이미피케이션 전략" ---- - -# [[에듀테크 기반 게이미피케이션 전략]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/에듀테크 기반 게이미피케이션 전략.md]] ---- diff --git a/10_Wiki/Topics/AI/연합 학습 (Associative Learning).md b/10_Wiki/Topics/AI/연합 학습 (Associative Learning).md deleted file mode 100644 index 7eb360ed..00000000 --- a/10_Wiki/Topics/AI/연합 학습 (Associative Learning).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0E1EE5 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 연합 학습 (Associative Learning)" ---- - -# [[연합 학습 (Associative Learning)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/연합 학습 (Associative Learning).md]] ---- diff --git a/10_Wiki/Topics/AI/온톨로지 (Ontology).md b/10_Wiki/Topics/AI/온톨로지 (Ontology).md deleted file mode 100644 index 30f18cbc..00000000 --- a/10_Wiki/Topics/AI/온톨로지 (Ontology).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-25F9C5 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 온톨로지 (Ontology)" ---- - -# [[온톨로지 (Ontology)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/온톨로지 (Ontology).md]] ---- diff --git a/10_Wiki/Topics/AI/온톨로지 지식 베이스.md b/10_Wiki/Topics/AI/온톨로지 지식 베이스.md deleted file mode 100644 index ffc14201..00000000 --- a/10_Wiki/Topics/AI/온톨로지 지식 베이스.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A3EA4F -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 온톨로지 지식 베이스" ---- - -# [[온톨로지 지식 베이스]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/온톨로지 지식 베이스.md]] ---- diff --git a/10_Wiki/Topics/AI/인간-컴퓨터 상호작용 (HCI).md b/10_Wiki/Topics/AI/인간-컴퓨터 상호작용 (HCI).md deleted file mode 100644 index 2b03a807..00000000 --- a/10_Wiki/Topics/AI/인간-컴퓨터 상호작용 (HCI).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5A206B -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 인간-컴퓨터 상호작용 (HCI)" ---- - -# [[인간-컴퓨터 상호작용 (HCI)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/인간-컴퓨터 상호작용 (HCI).md]] ---- diff --git a/10_Wiki/Topics/AI/인공지능 상호작용 (HAI).md b/10_Wiki/Topics/AI/인공지능 상호작용 (HAI).md deleted file mode 100644 index bc8e714d..00000000 --- a/10_Wiki/Topics/AI/인공지능 상호작용 (HAI).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BA3F26 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 인공지능 상호작용 (HAI)" ---- - -# [[인공지능 상호작용 (HAI)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/인공지능 상호작용 (HAI).md]] ---- diff --git a/10_Wiki/Topics/AI/인적 자원 관리(HRM) 전략 수립.md b/10_Wiki/Topics/AI/인적 자원 관리(HRM) 전략 수립.md deleted file mode 100644 index d22c43d7..00000000 --- a/10_Wiki/Topics/AI/인적 자원 관리(HRM) 전략 수립.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AD8C86 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 인적 자원 관리(HRM) 전략 수립" ---- - -# [[인적 자원 관리(HRM) 전략 수립]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/인적 자원 관리(HRM) 전략 수립.md]] ---- diff --git a/10_Wiki/Topics/AI/인지행동치료(CBT).md b/10_Wiki/Topics/AI/인지행동치료(CBT).md deleted file mode 100644 index e26dad98..00000000 --- a/10_Wiki/Topics/AI/인지행동치료(CBT).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-624537 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 인지행동치료(CBT)" ---- - -# [[인지행동치료(CBT)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/인지행동치료(CBT).md]] ---- diff --git a/10_Wiki/Topics/AI/인터랙티브 스토리텔링 연구.md b/10_Wiki/Topics/AI/인터랙티브 스토리텔링 연구.md deleted file mode 100644 index 84b317f7..00000000 --- a/10_Wiki/Topics/AI/인터랙티브 스토리텔링 연구.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5DBDA2 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 인터랙티브 스토리텔링 연구" ---- - -# [[인터랙티브 스토리텔링 연구]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/인터랙티브 스토리텔링 연구.md]] ---- diff --git a/10_Wiki/Topics/AI/지식 베이스 (Knowledge Base).md b/10_Wiki/Topics/AI/지식 베이스 (Knowledge Base).md deleted file mode 100644 index a63a6229..00000000 --- a/10_Wiki/Topics/AI/지식 베이스 (Knowledge Base).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-295580 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 지식 베이스 (Knowledge Base)" ---- - -# [[지식 베이스 (Knowledge Base)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/지식 베이스 (Knowledge Base).md]] ---- diff --git a/10_Wiki/Topics/AI/직렬화(Serialization) 및 병목 현상.md b/10_Wiki/Topics/AI/직렬화(Serialization) 및 병목 현상.md deleted file mode 100644 index 3d327fae..00000000 --- a/10_Wiki/Topics/AI/직렬화(Serialization) 및 병목 현상.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9AD769 -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 직렬화(Serialization) 및 병목 현상" ---- - -# [[직렬화(Serialization) 및 병목 현상]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/직렬화(Serialization) 및 병목 현상.md]] ---- diff --git a/10_Wiki/Topics/AI/창발 능력 (Emergent Abilities).md b/10_Wiki/Topics/AI/창발 능력 (Emergent Abilities).md deleted file mode 100644 index 7d8ef2d1..00000000 --- a/10_Wiki/Topics/AI/창발 능력 (Emergent Abilities).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9DBA7B -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 창발 능력 (Emergent Abilities)" ---- - -# [[창발 능력 (Emergent Abilities)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/창발 능력 (Emergent Abilities).md]] ---- diff --git a/10_Wiki/Topics/AI/힙 스냅샷(Heap Snapshot).md b/10_Wiki/Topics/AI/힙 스냅샷(Heap Snapshot).md deleted file mode 100644 index 318b57c8..00000000 --- a/10_Wiki/Topics/AI/힙 스냅샷(Heap Snapshot).md +++ /dev/null @@ -1,47 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BE247C -category: "[[10_Wiki/💡 Topics/AI]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 힙 스냅샷(Heap Snapshot)" ---- - -# [[힙 스냅샷(Heap Snapshot)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **작동 원리 및 고유 ID 식별:** - * 힙 스냅샷은 글로벌 객체(Global Object)에서 도달할 수 있는(Reachable) 객체들만 캡처하며, 캡처를 시작할 때 항상 가비지 컬렉션을 먼저 수행하여 살아있는 객체만 남깁니다 [5]. - * 스냅샷 내의 각 객체에는 `@` 기호 뒤에 고유 ID(예: `@12345`)가 부여됩니다 [6, 7]. 이 ID는 가비지 컬렉션 중 객체의 메모리 주소가 변경되더라도 여러 스냅샷 세션 간에 동일하게 유지되므로, 힙 상태를 객체 단위로 정확히 비교할 수 있게 해줍니다 [6-10]. - -* **메모리 크기 측정 방식:** - * **Shallow Size (얕은 크기):** 객체 자체가 차지하는 메모리 크기입니다. 일반적으로 배열과 문자열이 큰 얕은 크기를 가집니다 [11]. - * **Retained Size (보존된 크기):** 해당 객체를 삭제하여 그에 종속된 객체들이 더 이상 도달할 수 없게(Unreachable) 될 때 확보할 수 있는 최대 메모리 크기입니다 [11]. - -* **동작 상세 로그 추적을 위한 주요 분석 뷰(Views):** - * **Summary (요약 뷰):** 생성자(Constructor) 이름별로 객체를 그룹화하여 보여주며, 분리된 DOM 노드(Detached DOM nodes)와 같은 누수를 추적하는 데 유용합니다 [4, 12, 13]. - * **Comparison (비교 뷰):** 특정 작업(예: 모달 열기/닫기) 전후로 캡처한 두 스냅샷 간의 차이점(Delta)을 보여주어, 해제되지 않고 새로 추가된 객체를 통해 메모리 누수를 확인합니다 [1, 3, 4, 14, 15]. - * **Containment (포함 뷰):** 애플리케이션의 객체 구조를 조감도(Bird's eye view)처럼 보여주어 클로저(Closure) 내부나 GC 루트(Roots)를 분석할 수 있습니다 [4, 15]. - * **Retainers (보유자 패널):** 특정 객체를 참조하여 메모리에 살아있게 만드는 참조 체인(Chain of references)을 보여줍니다 [1, 16]. 이 체인을 거슬러 올라가면 누수의 근본 원인을 찾을 수 있습니다 [1]. - -* **분석 시 주의 사항(Gotchas):** - * 원시 힙에는 수천 개의 V8 내부 객체(예: `(compiled code)`, `system / Context`)가 포함되어 있으므로, 애플리케이션의 객체에 집중하려면 "Constructor" 필터를 사용해야 합니다 [17-19]. - * 코드 축소(Minification)로 인해 참조 체인을 읽기 어려울 수 있으므로, 소스 맵(Source Maps)을 사용하거나 익명 함수 대신 기명 함수를 사용하여 클로저를 쉽게 식별할 수 있도록 해야 합니다 [17, 20]. - * 숫자와 같은 비문자열 값이나 네이티브 코드를 실행하는 Getter로 구현된 속성들은 자바스크립트 힙에 저장되지 않아 캡처되지 않을 수 있습니다 [12]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** AI 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[메모리 누수(Memory Leak)]], [[가비지 컬렉션(Garbage Collection)]], [[Allocation Timeline]] -- **Projects/Contexts:** [[Chrome DevTools Memory Panel]], [[V8 Engine Heap Management]] -- **Contradictions/Notes:** 메모리 그래프가 증가한다고 해서 무조건 메모리 누수인 것은 아닙니다. 캐시(Caches), 실행 취소 내역, 가상화된 목록 버퍼 등은 의도적으로 데이터를 보존하므로 의도적인 메모리 보존과 사고에 의한 메모리 누수를 명확히 구별해야 합니다 [17]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/힙 스냅샷(Heap Snapshot).md]] ---- diff --git a/10_Wiki/Topics/Automation & Industry/3D Web-based HMI.md b/10_Wiki/Topics/Automation & Industry/3D Web-based HMI.md deleted file mode 100644 index 59378a78..00000000 --- a/10_Wiki/Topics/Automation & Industry/3D Web-based HMI.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -id: P-REINFORCE-AI-074AE7 -category: "[[10_Wiki/💡 Topics/Automation & Industry]]" -confidence_score: 0.95 -tags: [] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Batch 9 - Wikified 3D Web-based HMI" ---- - -# [[3D Web-based HMI]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 3D Web-based HMI는 사용자가 기계 또는 자동화 시스템과 통신할 수 있도록 지원하는 소프트웨어 인터페이스로, 주로 SCADA(Supervisory Control and Data Acquisition) 시스템의 기기 모니터링 및 제어를 위한 디스플레이 역할을 수행합니다 [1, 2]. 기존 HMI 시스템의 특정 플랫폼 종속성과 별도의 소프트웨어 설치 요구라는 한계를 극복하기 위해 제안되었습니다 [3]. WebGL과 WebSocket 기술을 활용하여 사용자는 별도의 소프트웨어 설치 없이 모든 플랫폼의 HTML5 웹 브라우저에서 실시간 데이터 통신 및 3D 그래픽 렌더링을 경험할 수 있습니다 [3-5]. - -## 📖 구조화된 지식 (Synthesized Content) -* **도입 배경 및 기존 HMI의 한계:** 공장 및 빌딩 자동화 분야에서 널리 쓰이는 SCADA 시스템의 벤더들은 전통적으로 독점적인 HMI 소프트웨어를 제공해 왔습니다 [2]. 예를 들어, 상용 제품인 Genesis64의 GraphWorX64 컴포넌트는 Windows 운영 체제, .NET Framework, DirectX 설치 및 Internet Explorer 사용을 강제하는 플랫폼 종속적인 한계가 있었습니다 [6, 7]. 3D Web-based HMI는 이러한 문제점을 극복하고자 웹 기술을 바탕으로 고안되었습니다 [2, 3]. -* **핵심 렌더링 및 통신 기술:** 3D Web-based HMI는 OpenGL ES 2.0을 기반으로 하는 크로스 플랫폼 웹 그래픽 라이브러리인 WebGL을 사용하여 3D 장면을 구성합니다 [4]. 저수준 API인 WebGL의 복잡성을 줄이기 위해 Three.js 라이브러리의 `WebGLRenderer()`를 활용하며, 화면 주사율에 맞춰 자연스러운 애니메이션을 처리하기 위해 `RequestAnimationFrame()`을 사용합니다 [4, 8]. 데이터 통신 측면에서는 HTTP 대신 WebSocket을 사용하여 서버와 클라이언트 간의 데이터가 빠르게 변경되는 상황에서도 효율적으로 대처할 수 있습니다 [3]. -* **초당 프레임 수(FPS) 성능:** 상용 3D HMI 제품(GraphWorX64)과 성능을 비교 평가한 결과, 3D Web-based HMI는 브라우저(Internet Explorer 및 Chrome) 환경에서 큐브(Cube) 개수가 0.5K~0.8K일 때 목표 최대 성능인 60 FPS를 안정적으로 유지했습니다 [1, 9]. 큐브 개수가 증가하여 1.1K~1.6K에 도달했을 때는 인간의 눈이 프레임 건너뛰기를 감지하지 못하는 최소 기준인 30 FPS를 기록했습니다 [1, 9, 10]. -* **프레임 지연 시간(Frame Time Latency) 및 디스플레이 품질:** FPS가 높더라도 프레임 시간이 불규칙하면 화면 끊김(Stuttering)이 발생할 수 있습니다 [10]. 실험 결과, 3D Web-based HMI는 객체가 5K에 이를 때까지 상용 제품보다 각 프레임을 렌더링하는 데 걸리는 시간 편차가 적어 훨씬 부드럽고 일관된 디스플레이를 제공했습니다 [1, 11, 12]. -* **시스템 리소스 소모:** CPU 사용량은 약 40%, 메모리 사용량은 약 180MB 수준으로 상용 HMI(약 240MB)보다 메모리를 더 적게 사용하여 안정적인 모습을 보였습니다 [5, 13]. 다만 GPU 사용량은 상용 제품과 비교했을 때 평균적으로 약 5% 정도 더 높게 나타났습니다 [5, 13]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 신규 문서로, 기존 정보와의 충돌 분석 예정. -- **정책 변화:** Automation & Industry 카테고리의 지식 연결망 강화를 위한 표준 위키화 적용. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[SCADA]], [[WebGL]], [[Three.js]], [[WebSocket]], [[Frame Time Latency]] -- **Projects/Contexts:** [[Genesis64 상용 제품과의 웹 기반 3D 렌더링 성능 벤치마크]] -- **Contradictions/Notes:** 3D Web-based HMI는 프레임의 부드러움(일관성)에서는 상용 제품보다 뛰어나지만, 전체 프로세스 소요 시간 중 약 96% 이상이 객체를 생성하는 실행 시간(Execution Time)이 아닌 렌더링 시간(Rendering Time)에 집중되어 있습니다. 이는 향후 렌더링 코드 최적화를 통해 성능을 더욱 개선해야 할 주요 병목 지점임을 시사합니다 [9, 14]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/3D Web-based HMI.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/AST-Manipulation-Techniques.md b/10_Wiki/Topics/Design & Experience/AST-Manipulation-Techniques.md deleted file mode 100644 index cdb6d74c..00000000 --- a/10_Wiki/Topics/Design & Experience/AST-Manipulation-Techniques.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7C91FA -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - AST-Manipulation-Techniques" ---- - -# [[AST-Manipulation-Techniques]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/AST-Manipulation-Techniques.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Accessibility (A11y).md b/10_Wiki/Topics/Design & Experience/Accessibility (A11y).md deleted file mode 100644 index 32760bea..00000000 --- a/10_Wiki/Topics/Design & Experience/Accessibility (A11y).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AI-99D2E0 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.95 -tags: [] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Batch 9 - Wikified Accessibility (A11y)" ---- - -# [[Accessibility (A11y)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> - -## 📖 구조화된 지식 (Synthesized Content) - - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 신규 문서로, 기존 정보와의 충돌 분석 예정. -- **정책 변화:** Design & Experience 카테고리의 지식 연결망 강화를 위한 표준 위키화 적용. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Accessibility (A11y).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Arkane-Studios.md b/10_Wiki/Topics/Design & Experience/Arkane-Studios.md deleted file mode 100644 index ee482f51..00000000 --- a/10_Wiki/Topics/Design & Experience/Arkane-Studios.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1A4850 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Arkane-Studios" ---- - -# [[Arkane-Studios]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Arkane-Studios.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Assignability-Rules.md b/10_Wiki/Topics/Design & Experience/Assignability-Rules.md deleted file mode 100644 index b37d7af4..00000000 --- a/10_Wiki/Topics/Design & Experience/Assignability-Rules.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DF407B -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Assignability-Rules" ---- - -# [[Assignability-Rules]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Assignability-Rules.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Assistive-Technology-Interoperability.md b/10_Wiki/Topics/Design & Experience/Assistive-Technology-Interoperability.md deleted file mode 100644 index 6351729f..00000000 --- a/10_Wiki/Topics/Design & Experience/Assistive-Technology-Interoperability.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6974BC -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Assistive-Technology-Interoperability" ---- - -# [[Assistive-Technology-Interoperability]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Assistive-Technology-Interoperability.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Auction-Theory.md b/10_Wiki/Topics/Design & Experience/Auction-Theory.md deleted file mode 100644 index f8fb7555..00000000 --- a/10_Wiki/Topics/Design & Experience/Auction-Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-50A53E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Auction-Theory" ---- - -# [[Auction-Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Auction-Theory.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Automated-Client-Generation.md b/10_Wiki/Topics/Design & Experience/Automated-Client-Generation.md deleted file mode 100644 index a2341e2c..00000000 --- a/10_Wiki/Topics/Design & Experience/Automated-Client-Generation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D03F74 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Automated-Client-Generation" ---- - -# [[Automated-Client-Generation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Automated-Client-Generation.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Bay 12 Games.md b/10_Wiki/Topics/Design & Experience/Bay 12 Games.md deleted file mode 100644 index 9d7bb1fe..00000000 --- a/10_Wiki/Topics/Design & Experience/Bay 12 Games.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F3ADB5 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Bay 12 Games" ---- - -# [[Bay 12 Games]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Bay 12 Games.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Bazel.md b/10_Wiki/Topics/Design & Experience/Bazel.md deleted file mode 100644 index de093715..00000000 --- a/10_Wiki/Topics/Design & Experience/Bazel.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C6F58A -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Bazel" ---- - -# [[Bazel]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Bazel.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/BioShock (Rapture)] [Dark Souls (Environmental Lore)] [Gone Home (Domestic Narrative Architecture).md b/10_Wiki/Topics/Design & Experience/BioShock (Rapture)] [Dark Souls (Environmental Lore)] [Gone Home (Domestic Narrative Architecture).md deleted file mode 100644 index a4587ae8..00000000 --- a/10_Wiki/Topics/Design & Experience/BioShock (Rapture)] [Dark Souls (Environmental Lore)] [Gone Home (Domestic Narrative Architecture).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-395B33 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - BioShock (Rapture)] [Dark Souls (Environmental Lore)] [Gone Home (Domestic Narrative Architecture)" ---- - -# [[BioShock (Rapture)] [Dark Souls (Environmental Lore)] [Gone Home (Domestic Narrative Architecture)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/BioShock (Rapture)], [Dark Souls (Environmental Lore)], [Gone Home (Domestic Narrative Architecture).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Borderlands-Art-Direction.md b/10_Wiki/Topics/Design & Experience/Borderlands-Art-Direction.md deleted file mode 100644 index e11134ec..00000000 --- a/10_Wiki/Topics/Design & Experience/Borderlands-Art-Direction.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-37BB2D -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Borderlands-Art-Direction" ---- - -# [[Borderlands-Art-Direction]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Borderlands-Art-Direction.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Boundary-Layer-Validation.md b/10_Wiki/Topics/Design & Experience/Boundary-Layer-Validation.md deleted file mode 100644 index b0d0a89c..00000000 --- a/10_Wiki/Topics/Design & Experience/Boundary-Layer-Validation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F8764E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Boundary-Layer-Validation" ---- - -# [[Boundary-Layer-Validation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Boundary-Layer-Validation.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Branded Types in TypeScript.md b/10_Wiki/Topics/Design & Experience/Branded Types in TypeScript.md deleted file mode 100644 index 63bb0343..00000000 --- a/10_Wiki/Topics/Design & Experience/Branded Types in TypeScript.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3CA58B -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Branded Types in TypeScript" ---- - -# [[Branded Types in TypeScript]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Branded Types in TypeScript.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Buck2.md b/10_Wiki/Topics/Design & Experience/Buck2.md deleted file mode 100644 index caec7019..00000000 --- a/10_Wiki/Topics/Design & Experience/Buck2.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-849CEC -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Buck2" ---- - -# [[Buck2]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Buck2.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Causal Loop Diagramming.md b/10_Wiki/Topics/Design & Experience/Causal Loop Diagramming.md deleted file mode 100644 index e3ddd9b6..00000000 --- a/10_Wiki/Topics/Design & Experience/Causal Loop Diagramming.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-658665 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Causal Loop Diagramming" ---- - -# [[Causal Loop Diagramming]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Causal Loop Diagramming.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Choice Architecture in Digital UX.md b/10_Wiki/Topics/Design & Experience/Choice Architecture in Digital UX.md deleted file mode 100644 index 84a2b818..00000000 --- a/10_Wiki/Topics/Design & Experience/Choice Architecture in Digital UX.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BE3FDC -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Choice Architecture in Digital UX" ---- - -# [[Choice Architecture in Digital UX]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Choice Architecture in Digital UX.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Chrome User Experience Report (CrUX).md b/10_Wiki/Topics/Design & Experience/Chrome User Experience Report (CrUX).md deleted file mode 100644 index f2911f70..00000000 --- a/10_Wiki/Topics/Design & Experience/Chrome User Experience Report (CrUX).md +++ /dev/null @@ -1,40 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C2220F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Chrome User Experience Report (CrUX)" ---- - -# [[Chrome User Experience Report (CrUX)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **데이터의 성격 및 수집 방식:** - CrUX는 실험실 데이터(Lab Data)가 아닌, 실제 사용자 모니터링(RUM, Real-User Monitoring)을 통한 필드 데이터입니다 [3, 5]. Chrome 브라우저가 옵트인 사용자들의 데이터를 수집하여 매월 발행하며, 주로 최상위 수백만 개의 도메인을 대상으로 전체 도메인 단위로 요약된 성능 측정치를 제공합니다 [3, 6]. - -* **주요 측정 지표 (Core Web Vitals):** - CrUX 보고서는 LCP(Largest Contentful Paint), CLS(Cumulative Layout Shift), INP(Interaction to Next Paint)와 같은 코어 웹 바이탈을 75백분위수(75th percentile)를 기준으로 기록합니다 [4, 7]. 또한 사용자의 데스크톱 및 모바일 접속 비율, 75백분위수 네트워크 속도(예: Slow 4G 환경)와 같은 접속 환경 데이터도 함께 제공하여 개발자가 실제 방문자의 환경과 유사한 조건에서 성능을 테스트할 수 있도록 돕습니다 [8]. - -* **고급 데이터 및 세부 지표:** - CrUX는 이미지 기반 콘텐츠를 위한 'LCP 하위 요소(LCP subparts)' 데이터도 제공하지만, 이 세부 데이터는 PageSpeed Insights에는 직접 표시되지 않으므로 CrUX Vis나 DebugBear 같은 외부 도구를 통해서 확인해야 합니다 [1, 9]. - -* **데이터 접근성 및 한계:** - CrUX 데이터에 접근하기 위해서는 Google의 데이터 웨어하우스 도구인 BigQuery나 DataStudio를 사용해야 합니다 [6]. 무엇보다 중요한 한계점은, 특정 URL이나 도메인이 CrUX 데이터에 포함되기 위해서는 '최소 데이터 볼륨(minimum data volume)' 기준을 충족해야 한다는 것입니다 [8]. 따라서 수명이 짧은 웹페이지나 트래픽이 적은 소규모 웹사이트는 데이터를 확인할 수 없습니다 [6, 8]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Core Web Vitals]], [[Largest Contentful Paint (LCP)]], [[Interaction to Next Paint (INP)]], [[Real User Monitoring (RUM)]] -- **Projects/Contexts:** [[PageSpeed Insights]], [[BigQuery]], [[Chrome DevTools]] -- **Contradictions/Notes:** 소스에 따르면 CrUX는 실제 사용자 성능을 파악하는 데 매우 유용한 지표지만, 최소 트래픽 기준을 충족하지 못하는 페이지는 데이터가 수집/표시되지 않는다는 한계가 명확히 존재합니다 [6, 8]. 또한 특정 세부 데이터(LCP 하위 요소)는 PageSpeed Insights가 아닌 별도의 서드파티 도구에서만 조회 가능하다는 점을 유의해야 합니다 [9]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Chrome User Experience Report (CrUX).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Cognitive Aging Research.md b/10_Wiki/Topics/Design & Experience/Cognitive Aging Research.md deleted file mode 100644 index 303dfce0..00000000 --- a/10_Wiki/Topics/Design & Experience/Cognitive Aging Research.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8C858F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cognitive Aging Research" ---- - -# [[Cognitive Aging Research]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cognitive Aging Research.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Cognitive Dissonance.md b/10_Wiki/Topics/Design & Experience/Cognitive Dissonance.md deleted file mode 100644 index 8c84338d..00000000 --- a/10_Wiki/Topics/Design & Experience/Cognitive Dissonance.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0C898E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cognitive Dissonance" ---- - -# [[Cognitive Dissonance]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cognitive Dissonance.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Cognitive-Flexibility.md b/10_Wiki/Topics/Design & Experience/Cognitive-Flexibility.md deleted file mode 100644 index b1c1062f..00000000 --- a/10_Wiki/Topics/Design & Experience/Cognitive-Flexibility.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-634AD5 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cognitive-Flexibility" ---- - -# [[Cognitive-Flexibility]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cognitive-Flexibility.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Cognitive-Psychology.md b/10_Wiki/Topics/Design & Experience/Cognitive-Psychology.md deleted file mode 100644 index 1d6f7357..00000000 --- a/10_Wiki/Topics/Design & Experience/Cognitive-Psychology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7EA6B8 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cognitive-Psychology" ---- - -# [[Cognitive-Psychology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cognitive-Psychology.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Complexity Science in Economics.md b/10_Wiki/Topics/Design & Experience/Complexity Science in Economics.md deleted file mode 100644 index 3a49b59a..00000000 --- a/10_Wiki/Topics/Design & Experience/Complexity Science in Economics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-527F62 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Complexity Science in Economics" ---- - -# [[Complexity Science in Economics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Complexity Science in Economics.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Computation-Caching-Strategies.md b/10_Wiki/Topics/Design & Experience/Computation-Caching-Strategies.md deleted file mode 100644 index a2f53932..00000000 --- a/10_Wiki/Topics/Design & Experience/Computation-Caching-Strategies.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-802544 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Computation-Caching-Strategies" ---- - -# [[Computation-Caching-Strategies]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Computation-Caching-Strategies.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Computational Thinking.md b/10_Wiki/Topics/Design & Experience/Computational Thinking.md deleted file mode 100644 index 148f9b9d..00000000 --- a/10_Wiki/Topics/Design & Experience/Computational Thinking.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-45C605 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Computational Thinking" ---- - -# [[Computational Thinking]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Computational Thinking.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Computational-Fluid-Dynamics.md b/10_Wiki/Topics/Design & Experience/Computational-Fluid-Dynamics.md deleted file mode 100644 index c3403d3b..00000000 --- a/10_Wiki/Topics/Design & Experience/Computational-Fluid-Dynamics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-668FCE -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Computational-Fluid-Dynamics" ---- - -# [[Computational-Fluid-Dynamics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Computational-Fluid-Dynamics.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Conditional-Types.md b/10_Wiki/Topics/Design & Experience/Conditional-Types.md deleted file mode 100644 index 392e24ad..00000000 --- a/10_Wiki/Topics/Design & Experience/Conditional-Types.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F3246D -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Conditional-Types" ---- - -# [[Conditional-Types]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Conditional-Types.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Content-Strategy.md b/10_Wiki/Topics/Design & Experience/Content-Strategy.md deleted file mode 100644 index 15ab5375..00000000 --- a/10_Wiki/Topics/Design & Experience/Content-Strategy.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-ED632C -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Content-Strategy" ---- - -# [[Content-Strategy]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Content-Strategy.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Contract-Driven-Development.md b/10_Wiki/Topics/Design & Experience/Contract-Driven-Development.md deleted file mode 100644 index cd13c8f7..00000000 --- a/10_Wiki/Topics/Design & Experience/Contract-Driven-Development.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1F7EE7 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Contract-Driven-Development" ---- - -# [[Contract-Driven-Development]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Contract-Driven-Development.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Contract-First-Development.md b/10_Wiki/Topics/Design & Experience/Contract-First-Development.md deleted file mode 100644 index d7b5a5d2..00000000 --- a/10_Wiki/Topics/Design & Experience/Contract-First-Development.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B0C45D -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Contract-First-Development" ---- - -# [[Contract-First-Development]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Contract-First-Development.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Contract-Testing.md b/10_Wiki/Topics/Design & Experience/Contract-Testing.md deleted file mode 100644 index 723cbd87..00000000 --- a/10_Wiki/Topics/Design & Experience/Contract-Testing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7A6306 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Contract-Testing" ---- - -# [[Contract-Testing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Contract-Testing.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Contravariance-and-Covariance.md b/10_Wiki/Topics/Design & Experience/Contravariance-and-Covariance.md deleted file mode 100644 index e2dc2dbc..00000000 --- a/10_Wiki/Topics/Design & Experience/Contravariance-and-Covariance.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-62A6A2 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Contravariance-and-Covariance" ---- - -# [[Contravariance-and-Covariance]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Contravariance-and-Covariance.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Creativity-and-Cognitive-Complexity.md b/10_Wiki/Topics/Design & Experience/Creativity-and-Cognitive-Complexity.md deleted file mode 100644 index 4b31371d..00000000 --- a/10_Wiki/Topics/Design & Experience/Creativity-and-Cognitive-Complexity.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-091CD8 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Creativity-and-Cognitive-Complexity" ---- - -# [[Creativity-and-Cognitive-Complexity]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Creativity-and-Cognitive-Complexity.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Critical Design.md b/10_Wiki/Topics/Design & Experience/Critical Design.md deleted file mode 100644 index fb232a44..00000000 --- a/10_Wiki/Topics/Design & Experience/Critical Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A653EF -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Critical Design" ---- - -# [[Critical Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Critical Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Cryptoeconomics.md b/10_Wiki/Topics/Design & Experience/Cryptoeconomics.md deleted file mode 100644 index 17ec9c33..00000000 --- a/10_Wiki/Topics/Design & Experience/Cryptoeconomics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5B4AE2 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cryptoeconomics" ---- - -# [[Cryptoeconomics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cryptoeconomics.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Dark Souls (Environmental Storytelling).md b/10_Wiki/Topics/Design & Experience/Dark Souls (Environmental Storytelling).md deleted file mode 100644 index 1b229e6d..00000000 --- a/10_Wiki/Topics/Design & Experience/Dark Souls (Environmental Storytelling).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-938B32 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Dark Souls (Environmental Storytelling)" ---- - -# [[Dark Souls (Environmental Storytelling)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Dark Souls (Environmental Storytelling).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Data-Sanitization.md b/10_Wiki/Topics/Design & Experience/Data-Sanitization.md deleted file mode 100644 index 008f84d9..00000000 --- a/10_Wiki/Topics/Design & Experience/Data-Sanitization.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-476815 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Data-Sanitization" ---- - -# [[Data-Sanitization]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Data-Sanitization.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Declaration Merging.md b/10_Wiki/Topics/Design & Experience/Declaration Merging.md deleted file mode 100644 index acd7dd63..00000000 --- a/10_Wiki/Topics/Design & Experience/Declaration Merging.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-164A4F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Declaration Merging" ---- - -# [[Declaration Merging]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Declaration Merging.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Declaration-Merging.md b/10_Wiki/Topics/Design & Experience/Declaration-Merging.md deleted file mode 100644 index bbfd6ef9..00000000 --- a/10_Wiki/Topics/Design & Experience/Declaration-Merging.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6586E8 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Declaration-Merging" ---- - -# [[Declaration-Merging]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Declaration-Merging.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Depth-Subtyping.md b/10_Wiki/Topics/Design & Experience/Depth-Subtyping.md deleted file mode 100644 index 47cec662..00000000 --- a/10_Wiki/Topics/Design & Experience/Depth-Subtyping.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-408E53 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Depth-Subtyping" ---- - -# [[Depth-Subtyping]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Depth-Subtyping.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Design-Thinking.md b/10_Wiki/Topics/Design & Experience/Design-Thinking.md deleted file mode 100644 index ae3c293d..00000000 --- a/10_Wiki/Topics/Design & Experience/Design-Thinking.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F6D12C -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Design-Thinking" ---- - -# [[Design-Thinking]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Design-Thinking.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Design-Tokens.md b/10_Wiki/Topics/Design & Experience/Design-Tokens.md deleted file mode 100644 index 9998ed1d..00000000 --- a/10_Wiki/Topics/Design & Experience/Design-Tokens.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2C4230 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Design-Tokens" ---- - -# [[Design-Tokens]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Design-Tokens.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Diegetic UI.md b/10_Wiki/Topics/Design & Experience/Diegetic UI.md deleted file mode 100644 index be406d08..00000000 --- a/10_Wiki/Topics/Design & Experience/Diegetic UI.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FE01D2 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Diegetic UI" ---- - -# [[Diegetic UI]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Diegetic UI.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Diegetic-Interface.md b/10_Wiki/Topics/Design & Experience/Diegetic-Interface.md deleted file mode 100644 index 0f218de9..00000000 --- a/10_Wiki/Topics/Design & Experience/Diegetic-Interface.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9F62F4 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Diegetic-Interface" ---- - -# [[Diegetic-Interface]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Diegetic-Interface.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Digital Humanities.md b/10_Wiki/Topics/Design & Experience/Digital Humanities.md deleted file mode 100644 index 5f41d732..00000000 --- a/10_Wiki/Topics/Design & Experience/Digital Humanities.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1CBB5B -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Digital Humanities" ---- - -# [[Digital Humanities]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Digital Humanities.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Digital Twin Interfaces.md b/10_Wiki/Topics/Design & Experience/Digital Twin Interfaces.md deleted file mode 100644 index 60410195..00000000 --- a/10_Wiki/Topics/Design & Experience/Digital Twin Interfaces.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6DF617 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Digital Twin Interfaces" ---- - -# [[Digital Twin Interfaces]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Digital Twin Interfaces.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Digital-Heritage-Preservation.md b/10_Wiki/Topics/Design & Experience/Digital-Heritage-Preservation.md deleted file mode 100644 index a7736b29..00000000 --- a/10_Wiki/Topics/Design & Experience/Digital-Heritage-Preservation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C13BDE -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Digital-Heritage-Preservation" ---- - -# [[Digital-Heritage-Preservation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Digital-Heritage-Preservation.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Digital-Humanities.md b/10_Wiki/Topics/Design & Experience/Digital-Humanities.md deleted file mode 100644 index 90c06d3e..00000000 --- a/10_Wiki/Topics/Design & Experience/Digital-Humanities.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B1AF91 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Digital-Humanities" ---- - -# [[Digital-Humanities]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Digital-Humanities.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Digital-Transformation-Strategy.md b/10_Wiki/Topics/Design & Experience/Digital-Transformation-Strategy.md deleted file mode 100644 index bb109fbb..00000000 --- a/10_Wiki/Topics/Design & Experience/Digital-Transformation-Strategy.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5767B8 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Digital-Transformation-Strategy" ---- - -# [[Digital-Transformation-Strategy]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Digital-Transformation-Strategy.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Divergent-Thinking.md b/10_Wiki/Topics/Design & Experience/Divergent-Thinking.md deleted file mode 100644 index d588b6eb..00000000 --- a/10_Wiki/Topics/Design & Experience/Divergent-Thinking.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-52E973 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Divergent-Thinking" ---- - -# [[Divergent-Thinking]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Divergent-Thinking.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Duck-Typing.md b/10_Wiki/Topics/Design & Experience/Duck-Typing.md deleted file mode 100644 index 0531c7e3..00000000 --- a/10_Wiki/Topics/Design & Experience/Duck-Typing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-31CA9B -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Duck-Typing" ---- - -# [[Duck-Typing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Duck-Typing.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Dwarf Fortress.md b/10_Wiki/Topics/Design & Experience/Dwarf Fortress.md deleted file mode 100644 index 0c4abdd8..00000000 --- a/10_Wiki/Topics/Design & Experience/Dwarf Fortress.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8B5736 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Dwarf Fortress" ---- - -# [[Dwarf Fortress]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Dwarf Fortress.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/E-commerce-Conversion-Optimization.md b/10_Wiki/Topics/Design & Experience/E-commerce-Conversion-Optimization.md deleted file mode 100644 index 5d849949..00000000 --- a/10_Wiki/Topics/Design & Experience/E-commerce-Conversion-Optimization.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E7164D -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - E-commerce-Conversion-Optimization" ---- - -# [[E-commerce-Conversion-Optimization]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/E-commerce-Conversion-Optimization.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/ESL Pro Tour.md b/10_Wiki/Topics/Design & Experience/ESL Pro Tour.md deleted file mode 100644 index f62105b5..00000000 --- a/10_Wiki/Topics/Design & Experience/ESL Pro Tour.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6D8C66 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - ESL Pro Tour" ---- - -# [[ESL Pro Tour]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/ESL Pro Tour.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/ESLint-Plugin-TypeScript.md b/10_Wiki/Topics/Design & Experience/ESLint-Plugin-TypeScript.md deleted file mode 100644 index af1d5ec8..00000000 --- a/10_Wiki/Topics/Design & Experience/ESLint-Plugin-TypeScript.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-787585 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - ESLint-Plugin-TypeScript" ---- - -# [[ESLint-Plugin-TypeScript]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/ESLint-Plugin-TypeScript.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Edge-Detection-Algorithms.md b/10_Wiki/Topics/Design & Experience/Edge-Detection-Algorithms.md deleted file mode 100644 index 2faba7cd..00000000 --- a/10_Wiki/Topics/Design & Experience/Edge-Detection-Algorithms.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D5E910 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Edge-Detection-Algorithms" ---- - -# [[Edge-Detection-Algorithms]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Edge-Detection-Algorithms.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Educational Pedagogy (Zone of Proximal Development).md b/10_Wiki/Topics/Design & Experience/Educational Pedagogy (Zone of Proximal Development).md deleted file mode 100644 index 52870a3d..00000000 --- a/10_Wiki/Topics/Design & Experience/Educational Pedagogy (Zone of Proximal Development).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A6B581 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Educational Pedagogy (Zone of Proximal Development)" ---- - -# [[Educational Pedagogy (Zone of Proximal Development)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Educational Pedagogy (Zone of Proximal Development).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Educational-Psychology.md b/10_Wiki/Topics/Design & Experience/Educational-Psychology.md deleted file mode 100644 index 6695e5bd..00000000 --- a/10_Wiki/Topics/Design & Experience/Educational-Psychology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F3112C -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Educational-Psychology" ---- - -# [[Educational-Psychology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Educational-Psychology.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Electromyography.md b/10_Wiki/Topics/Design & Experience/Electromyography.md deleted file mode 100644 index 633fbf56..00000000 --- a/10_Wiki/Topics/Design & Experience/Electromyography.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D6647F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Electromyography" ---- - -# [[Electromyography]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Electromyography.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Environmental Storyability.md b/10_Wiki/Topics/Design & Experience/Environmental Storyability.md deleted file mode 100644 index 83b1e003..00000000 --- a/10_Wiki/Topics/Design & Experience/Environmental Storyability.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-61BAD9 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Environmental Storyability" ---- - -# [[Environmental Storyability]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Environmental Storyability.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Environmental Storytelling.md b/10_Wiki/Topics/Design & Experience/Environmental Storytelling.md deleted file mode 100644 index 26839ea4..00000000 --- a/10_Wiki/Topics/Design & Experience/Environmental Storytelling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-415A1C -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Environmental Storytelling" ---- - -# [[Environmental Storytelling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Environmental Storytelling.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Environmental-Storytelling.md b/10_Wiki/Topics/Design & Experience/Environmental-Storytelling.md deleted file mode 100644 index 2cd47b89..00000000 --- a/10_Wiki/Topics/Design & Experience/Environmental-Storytelling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BB91DD -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Environmental-Storytelling" ---- - -# [[Environmental-Storytelling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Environmental-Storytelling.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Ergodic Literature.md b/10_Wiki/Topics/Design & Experience/Ergodic Literature.md deleted file mode 100644 index 1ca3c70f..00000000 --- a/10_Wiki/Topics/Design & Experience/Ergodic Literature.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-96D046 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ergodic Literature" ---- - -# [[Ergodic Literature]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ergodic Literature.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Ergodic-Literature.md b/10_Wiki/Topics/Design & Experience/Ergodic-Literature.md deleted file mode 100644 index 7dc63d18..00000000 --- a/10_Wiki/Topics/Design & Experience/Ergodic-Literature.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CB2F13 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ergodic-Literature" ---- - -# [[Ergodic-Literature]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ergodic-Literature.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Executive Function.md b/10_Wiki/Topics/Design & Experience/Executive Function.md deleted file mode 100644 index 75044686..00000000 --- a/10_Wiki/Topics/Design & Experience/Executive Function.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8909A3 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Executive Function" ---- - -# [[Executive Function]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Executive Function.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Exhaustiveness-Checking-with-Never.md b/10_Wiki/Topics/Design & Experience/Exhaustiveness-Checking-with-Never.md deleted file mode 100644 index cc0c9d76..00000000 --- a/10_Wiki/Topics/Design & Experience/Exhaustiveness-Checking-with-Never.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A2E3FE -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Exhaustiveness-Checking-with-Never" ---- - -# [[Exhaustiveness-Checking-with-Never]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Exhaustiveness-Checking-with-Never.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Fallout (Pip-Boy Mechanic).md b/10_Wiki/Topics/Design & Experience/Fallout (Pip-Boy Mechanic).md deleted file mode 100644 index 563427cc..00000000 --- a/10_Wiki/Topics/Design & Experience/Fallout (Pip-Boy Mechanic).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C110F3 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Fallout (Pip-Boy Mechanic)" ---- - -# [[Fallout (Pip-Boy Mechanic)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Fallout (Pip-Boy Mechanic).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Flow-Sensitive-Typing.md b/10_Wiki/Topics/Design & Experience/Flow-Sensitive-Typing.md deleted file mode 100644 index d835f406..00000000 --- a/10_Wiki/Topics/Design & Experience/Flow-Sensitive-Typing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D1B53D -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Flow-Sensitive-Typing" ---- - -# [[Flow-Sensitive-Typing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Flow-Sensitive-Typing.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Formalism vs Structuralism.md b/10_Wiki/Topics/Design & Experience/Formalism vs Structuralism.md deleted file mode 100644 index d42a68b3..00000000 --- a/10_Wiki/Topics/Design & Experience/Formalism vs Structuralism.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9613E1 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Formalism vs Structuralism" ---- - -# [[Formalism vs Structuralism]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Formalism vs. Structuralism.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Formalist Criticism.md b/10_Wiki/Topics/Design & Experience/Formalist Criticism.md deleted file mode 100644 index 7f5c6e9e..00000000 --- a/10_Wiki/Topics/Design & Experience/Formalist Criticism.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6E52E3 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Formalist Criticism" ---- - -# [[Formalist Criticism]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Formalist Criticism.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Game Studies (Game Studies Journal).md b/10_Wiki/Topics/Design & Experience/Game Studies (Game Studies Journal).md deleted file mode 100644 index 0c96ea54..00000000 --- a/10_Wiki/Topics/Design & Experience/Game Studies (Game Studies Journal).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-266459 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game Studies (Game Studies Journal)" ---- - -# [[Game Studies (Game Studies Journal)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game Studies (Game Studies Journal).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Game Systems Design.md b/10_Wiki/Topics/Design & Experience/Game Systems Design.md deleted file mode 100644 index d3e79cff..00000000 --- a/10_Wiki/Topics/Design & Experience/Game Systems Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1D378F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game Systems Design" ---- - -# [[Game Systems Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game Systems Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Game-Level-Design.md b/10_Wiki/Topics/Design & Experience/Game-Level-Design.md deleted file mode 100644 index 46e74b79..00000000 --- a/10_Wiki/Topics/Design & Experience/Game-Level-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B42B04 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game-Level-Design" ---- - -# [[Game-Level-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game-Level-Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Game-Studies-Academic-Discourse.md b/10_Wiki/Topics/Design & Experience/Game-Studies-Academic-Discourse.md deleted file mode 100644 index ba500fad..00000000 --- a/10_Wiki/Topics/Design & Experience/Game-Studies-Academic-Discourse.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A0CB96 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game-Studies-Academic-Discourse" ---- - -# [[Game-Studies-Academic-Discourse]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game-Studies-Academic-Discourse.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Game-Studies-Journal.md b/10_Wiki/Topics/Design & Experience/Game-Studies-Journal.md deleted file mode 100644 index 47005a90..00000000 --- a/10_Wiki/Topics/Design & Experience/Game-Studies-Journal.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-66A318 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game-Studies-Journal" ---- - -# [[Game-Studies-Journal]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game-Studies-Journal.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Gamification in Pedagogy.md b/10_Wiki/Topics/Design & Experience/Gamification in Pedagogy.md deleted file mode 100644 index afa91743..00000000 --- a/10_Wiki/Topics/Design & Experience/Gamification in Pedagogy.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0CBD32 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Gamification in Pedagogy" ---- - -# [[Gamification in Pedagogy]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Gamification in Pedagogy.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Gamification-Mechanics.md b/10_Wiki/Topics/Design & Experience/Gamification-Mechanics.md deleted file mode 100644 index 0a3eb006..00000000 --- a/10_Wiki/Topics/Design & Experience/Gamification-Mechanics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-687945 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Gamification-Mechanics" ---- - -# [[Gamification-Mechanics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Gamification-Mechanics.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Global Augmentation.md b/10_Wiki/Topics/Design & Experience/Global Augmentation.md deleted file mode 100644 index 90311745..00000000 --- a/10_Wiki/Topics/Design & Experience/Global Augmentation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2CC24D -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Global Augmentation" ---- - -# [[Global Augmentation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Global Augmentation.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Grammar-based-Synthesis.md b/10_Wiki/Topics/Design & Experience/Grammar-based-Synthesis.md deleted file mode 100644 index 5b0c9d69..00000000 --- a/10_Wiki/Topics/Design & Experience/Grammar-based-Synthesis.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-35F81E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Grammar-based-Synthesis" ---- - -# [[Grammar-based-Synthesis]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Grammar-based-Synthesis.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/HUD-less Design Paradigms.md b/10_Wiki/Topics/Design & Experience/HUD-less Design Paradigms.md deleted file mode 100644 index 656103c9..00000000 --- a/10_Wiki/Topics/Design & Experience/HUD-less Design Paradigms.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4CD4F1 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - HUD-less Design Paradigms" ---- - -# [[HUD-less Design Paradigms]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/HUD-less Design Paradigms.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Haptic Feedback Technology.md b/10_Wiki/Topics/Design & Experience/Haptic Feedback Technology.md deleted file mode 100644 index f6aca0b8..00000000 --- a/10_Wiki/Topics/Design & Experience/Haptic Feedback Technology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3637D3 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Haptic Feedback Technology" ---- - -# [[Haptic Feedback Technology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Haptic Feedback Technology.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Hierarchical Reinforcement Learning (HRL).md b/10_Wiki/Topics/Design & Experience/Hierarchical Reinforcement Learning (HRL).md deleted file mode 100644 index bc4fc619..00000000 --- a/10_Wiki/Topics/Design & Experience/Hierarchical Reinforcement Learning (HRL).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-535DD0 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Hierarchical Reinforcement Learning (HRL)" ---- - -# [[Hierarchical Reinforcement Learning (HRL)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Hierarchical Reinforcement Learning (HRL).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/High-Performance-Human-Factors.md b/10_Wiki/Topics/Design & Experience/High-Performance-Human-Factors.md deleted file mode 100644 index 56eadf78..00000000 --- a/10_Wiki/Topics/Design & Experience/High-Performance-Human-Factors.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0DEE60 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - High-Performance-Human-Factors" ---- - -# [[High-Performance-Human-Factors]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/High-Performance-Human-Factors.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Human-Computer Interaction (HCI).md b/10_Wiki/Topics/Design & Experience/Human-Computer Interaction (HCI).md deleted file mode 100644 index 7ab258ea..00000000 --- a/10_Wiki/Topics/Design & Experience/Human-Computer Interaction (HCI).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5F4DD2 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Human-Computer Interaction (HCI)" ---- - -# [[Human-Computer Interaction (HCI)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Human-Computer Interaction (HCI).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Human-Computer-Interaction (HCI).md b/10_Wiki/Topics/Design & Experience/Human-Computer-Interaction (HCI).md deleted file mode 100644 index 8f9890df..00000000 --- a/10_Wiki/Topics/Design & Experience/Human-Computer-Interaction (HCI).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AFBB70 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Human-Computer-Interaction (HCI)" ---- - -# [[Human-Computer-Interaction (HCI)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Human-Computer-Interaction (HCI).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Human-Machine Interface (HMI) Design.md b/10_Wiki/Topics/Design & Experience/Human-Machine Interface (HMI) Design.md deleted file mode 100644 index a1b439e4..00000000 --- a/10_Wiki/Topics/Design & Experience/Human-Machine Interface (HMI) Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F753F2 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Human-Machine Interface (HMI) Design" ---- - -# [[Human-Machine Interface (HMI) Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Human-Machine Interface (HMI) Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Human-Robot Interaction (HRI).md b/10_Wiki/Topics/Design & Experience/Human-Robot Interaction (HRI).md deleted file mode 100644 index 5ce0173f..00000000 --- a/10_Wiki/Topics/Design & Experience/Human-Robot Interaction (HRI).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-695BBA -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Human-Robot Interaction (HRI)" ---- - -# [[Human-Robot Interaction (HRI)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Human-Robot Interaction (HRI).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Human-Robot-Interaction.md b/10_Wiki/Topics/Design & Experience/Human-Robot-Interaction.md deleted file mode 100644 index 11867614..00000000 --- a/10_Wiki/Topics/Design & Experience/Human-Robot-Interaction.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-419DF4 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Human-Robot-Interaction" ---- - -# [[Human-Robot-Interaction]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Human-Robot-Interaction.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Hypertextuality.md b/10_Wiki/Topics/Design & Experience/Hypertextuality.md deleted file mode 100644 index 9ce325ee..00000000 --- a/10_Wiki/Topics/Design & Experience/Hypertextuality.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B134AC -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Hypertextuality" ---- - -# [[Hypertextuality]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Hypertextuality.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/ISO 9241 표준.md b/10_Wiki/Topics/Design & Experience/ISO 9241 표준.md deleted file mode 100644 index 430238d4..00000000 --- a/10_Wiki/Topics/Design & Experience/ISO 9241 표준.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E70ECC -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - ISO 9241 표준" ---- - -# [[ISO 9241 표준]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/ISO 9241 표준.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Immersive Analytics.md b/10_Wiki/Topics/Design & Experience/Immersive Analytics.md deleted file mode 100644 index b3c27365..00000000 --- a/10_Wiki/Topics/Design & Experience/Immersive Analytics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4B1137 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Immersive Analytics" ---- - -# [[Immersive Analytics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Immersive Analytics.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Incremental-Compilation.md b/10_Wiki/Topics/Design & Experience/Incremental-Compilation.md deleted file mode 100644 index e5cb46df..00000000 --- a/10_Wiki/Topics/Design & Experience/Incremental-Compilation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-836C53 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Incremental-Compilation" ---- - -# [[Incremental-Compilation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Incremental-Compilation.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Information-Architecture.md b/10_Wiki/Topics/Design & Experience/Information-Architecture.md deleted file mode 100644 index ee9f1236..00000000 --- a/10_Wiki/Topics/Design & Experience/Information-Architecture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B98E5E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Information-Architecture" ---- - -# [[Information-Architecture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Information-Architecture.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Inquiry-Based Learning.md b/10_Wiki/Topics/Design & Experience/Inquiry-Based Learning.md deleted file mode 100644 index c4ea3492..00000000 --- a/10_Wiki/Topics/Design & Experience/Inquiry-Based Learning.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0A7A61 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Inquiry-Based Learning" ---- - -# [[Inquiry-Based Learning]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Inquiry-Based Learning.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Interface-Extension-vs-Augmentation.md b/10_Wiki/Topics/Design & Experience/Interface-Extension-vs-Augmentation.md deleted file mode 100644 index bd19cde5..00000000 --- a/10_Wiki/Topics/Design & Experience/Interface-Extension-vs-Augmentation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-326071 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Interface-Extension-vs-Augmentation" ---- - -# [[Interface-Extension-vs-Augmentation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Interface-Extension-vs-Augmentation.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Interface-Extension.md b/10_Wiki/Topics/Design & Experience/Interface-Extension.md deleted file mode 100644 index 7559ba4f..00000000 --- a/10_Wiki/Topics/Design & Experience/Interface-Extension.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B72832 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Interface-Extension" ---- - -# [[Interface-Extension]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Interface-Extension.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Interface-Merging.md b/10_Wiki/Topics/Design & Experience/Interface-Merging.md deleted file mode 100644 index 1e53551f..00000000 --- a/10_Wiki/Topics/Design & Experience/Interface-Merging.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-223BC6 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Interface-Merging" ---- - -# [[Interface-Merging]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Interface-Merging.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Interface-Segregation-Principle-in-TypeScript.md b/10_Wiki/Topics/Design & Experience/Interface-Segregation-Principle-in-TypeScript.md deleted file mode 100644 index e34c754e..00000000 --- a/10_Wiki/Topics/Design & Experience/Interface-Segregation-Principle-in-TypeScript.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-44AA84 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Interface-Segregation-Principle-in-TypeScript" ---- - -# [[Interface-Segregation-Principle-in-TypeScript]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Interface-Segregation-Principle-in-TypeScript.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Interface-Segregation-Principle.md b/10_Wiki/Topics/Design & Experience/Interface-Segregation-Principle.md deleted file mode 100644 index 813b7a85..00000000 --- a/10_Wiki/Topics/Design & Experience/Interface-Segregation-Principle.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-92EBE7 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Interface-Segregation-Principle" ---- - -# [[Interface-Segregation-Principle]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Interface-Segregation-Principle.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Interoperability Standards.md b/10_Wiki/Topics/Design & Experience/Interoperability Standards.md deleted file mode 100644 index 14469852..00000000 --- a/10_Wiki/Topics/Design & Experience/Interoperability Standards.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3EE866 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Interoperability Standards" ---- - -# [[Interoperability Standards]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Interoperability Standards.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Intersection-Types-vs-Interface-Extension.md b/10_Wiki/Topics/Design & Experience/Intersection-Types-vs-Interface-Extension.md deleted file mode 100644 index 2cabab52..00000000 --- a/10_Wiki/Topics/Design & Experience/Intersection-Types-vs-Interface-Extension.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-94C8CB -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Intersection-Types-vs-Interface-Extension" ---- - -# [[Intersection-Types-vs-Interface-Extension]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Intersection-Types-vs-Interface-Extension.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Inverse-Kinematics.md b/10_Wiki/Topics/Design & Experience/Inverse-Kinematics.md deleted file mode 100644 index f0b3e550..00000000 --- a/10_Wiki/Topics/Design & Experience/Inverse-Kinematics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-67139B -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Inverse-Kinematics" ---- - -# [[Inverse-Kinematics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Inverse-Kinematics.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/JSON-Schema-Validation.md b/10_Wiki/Topics/Design & Experience/JSON-Schema-Validation.md deleted file mode 100644 index d5d37219..00000000 --- a/10_Wiki/Topics/Design & Experience/JSON-Schema-Validation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6A507C -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - JSON-Schema-Validation" ---- - -# [[JSON-Schema-Validation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/JSON-Schema-Validation.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/K-12-EdTech.md b/10_Wiki/Topics/Design & Experience/K-12-EdTech.md deleted file mode 100644 index 31527647..00000000 --- a/10_Wiki/Topics/Design & Experience/K-12-EdTech.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5653C7 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - K-12-EdTech" ---- - -# [[K-12-EdTech]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/K-12-EdTech.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Kinetics.md b/10_Wiki/Topics/Design & Experience/Kinetics.md deleted file mode 100644 index 94ecba11..00000000 --- a/10_Wiki/Topics/Design & Experience/Kinetics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-11AAD0 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Kinetics" ---- - -# [[Kinetics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Kinetics.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Knowledge-Graph-Construction.md b/10_Wiki/Topics/Design & Experience/Knowledge-Graph-Construction.md deleted file mode 100644 index 4398c9ea..00000000 --- a/10_Wiki/Topics/Design & Experience/Knowledge-Graph-Construction.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-84AB19 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Knowledge-Graph-Construction" ---- - -# [[Knowledge-Graph-Construction]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Knowledge-Graph-Construction.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/LCS (League of Legends Championship Series).md b/10_Wiki/Topics/Design & Experience/LCS (League of Legends Championship Series).md deleted file mode 100644 index ba3c96f8..00000000 --- a/10_Wiki/Topics/Design & Experience/LCS (League of Legends Championship Series).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FC3F77 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - LCS (League of Legends Championship Series)" ---- - -# [[LCS (League of Legends Championship Series)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/LCS (League of Legends Championship Series).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Lean-UX.md b/10_Wiki/Topics/Design & Experience/Lean-UX.md deleted file mode 100644 index 7c2198ad..00000000 --- a/10_Wiki/Topics/Design & Experience/Lean-UX.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D3F181 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Lean-UX" ---- - -# [[Lean-UX]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Lean-UX.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Level Design Theory.md b/10_Wiki/Topics/Design & Experience/Level Design Theory.md deleted file mode 100644 index c8bdb402..00000000 --- a/10_Wiki/Topics/Design & Experience/Level Design Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9BB940 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Level Design Theory" ---- - -# [[Level Design Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Level Design Theory.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Level-Design-Theory.md b/10_Wiki/Topics/Design & Experience/Level-Design-Theory.md deleted file mode 100644 index dcc354d8..00000000 --- a/10_Wiki/Topics/Design & Experience/Level-Design-Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5EAC4F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Level-Design-Theory" ---- - -# [[Level-Design-Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Level-Design-Theory.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Linguistics.md b/10_Wiki/Topics/Design & Experience/Linguistics.md deleted file mode 100644 index 60f82eb3..00000000 --- a/10_Wiki/Topics/Design & Experience/Linguistics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0C81F3 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Linguistics" ---- - -# [[Linguistics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Linguistics.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Linked-Data-Principles.md b/10_Wiki/Topics/Design & Experience/Linked-Data-Principles.md deleted file mode 100644 index 320e5d38..00000000 --- a/10_Wiki/Topics/Design & Experience/Linked-Data-Principles.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-878BEE -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Linked-Data-Principles" ---- - -# [[Linked-Data-Principles]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Linked-Data-Principles.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Liskov-Substitution-Principle.md b/10_Wiki/Topics/Design & Experience/Liskov-Substitution-Principle.md deleted file mode 100644 index 97279c2a..00000000 --- a/10_Wiki/Topics/Design & Experience/Liskov-Substitution-Principle.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A4E734 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Liskov-Substitution-Principle" ---- - -# [[Liskov-Substitution-Principle]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Liskov-Substitution-Principle.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Ludo-Narrative-Dissonance.md b/10_Wiki/Topics/Design & Experience/Ludo-Narrative-Dissonance.md deleted file mode 100644 index 7473ac48..00000000 --- a/10_Wiki/Topics/Design & Experience/Ludo-Narrative-Dissonance.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D2276C -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ludo-Narrative-Dissonance" ---- - -# [[Ludo-Narrative-Dissonance]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ludo-Narrative-Dissonance.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Ludo-narrative Dissonance.md b/10_Wiki/Topics/Design & Experience/Ludo-narrative Dissonance.md deleted file mode 100644 index 12079d3a..00000000 --- a/10_Wiki/Topics/Design & Experience/Ludo-narrative Dissonance.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2B9D2D -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ludo-narrative Dissonance" ---- - -# [[Ludo-narrative Dissonance]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ludo-narrative Dissonance.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Ludonarrative-Dissonance.md b/10_Wiki/Topics/Design & Experience/Ludonarrative-Dissonance.md deleted file mode 100644 index eb74a0dc..00000000 --- a/10_Wiki/Topics/Design & Experience/Ludonarrative-Dissonance.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-488A12 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ludonarrative-Dissonance" ---- - -# [[Ludonarrative-Dissonance]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ludonarrative-Dissonance.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Mapped-Types.md b/10_Wiki/Topics/Design & Experience/Mapped-Types.md deleted file mode 100644 index 5b13e7a7..00000000 --- a/10_Wiki/Topics/Design & Experience/Mapped-Types.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A475F9 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Mapped-Types" ---- - -# [[Mapped-Types]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Mapped-Types.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Material Design System.md b/10_Wiki/Topics/Design & Experience/Material Design System.md deleted file mode 100644 index 2f4649e2..00000000 --- a/10_Wiki/Topics/Design & Experience/Material Design System.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-ABFF7B -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Material Design System" ---- - -# [[Material Design System]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Material Design System.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Material Design.md b/10_Wiki/Topics/Design & Experience/Material Design.md deleted file mode 100644 index 7760b59c..00000000 --- a/10_Wiki/Topics/Design & Experience/Material Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2349C5 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Material Design" ---- - -# [[Material Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Material Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Material-Design.md b/10_Wiki/Topics/Design & Experience/Material-Design.md deleted file mode 100644 index e304dbed..00000000 --- a/10_Wiki/Topics/Design & Experience/Material-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-03A898 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Material-Design" ---- - -# [[Material-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Material-Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Mechanism Design in Auctions.md b/10_Wiki/Topics/Design & Experience/Mechanism Design in Auctions.md deleted file mode 100644 index e0294b13..00000000 --- a/10_Wiki/Topics/Design & Experience/Mechanism Design in Auctions.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-03623E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Mechanism Design in Auctions" ---- - -# [[Mechanism Design in Auctions]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Mechanism Design in Auctions.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Mechanism Design.md b/10_Wiki/Topics/Design & Experience/Mechanism Design.md deleted file mode 100644 index 601fed02..00000000 --- a/10_Wiki/Topics/Design & Experience/Mechanism Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3A7080 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Mechanism Design" ---- - -# [[Mechanism Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Mechanism Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Mechanism-Design.md b/10_Wiki/Topics/Design & Experience/Mechanism-Design.md deleted file mode 100644 index b5f600d5..00000000 --- a/10_Wiki/Topics/Design & Experience/Mechanism-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F9F796 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Mechanism-Design" ---- - -# [[Mechanism-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Mechanism-Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Micro-Frontend-Architecture.md b/10_Wiki/Topics/Design & Experience/Micro-Frontend-Architecture.md deleted file mode 100644 index 592ba0af..00000000 --- a/10_Wiki/Topics/Design & Experience/Micro-Frontend-Architecture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-070141 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Micro-Frontend-Architecture" ---- - -# [[Micro-Frontend-Architecture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Micro-Frontend-Architecture.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Mobile-App-Onboarding.md b/10_Wiki/Topics/Design & Experience/Mobile-App-Onboarding.md deleted file mode 100644 index 8cab5c88..00000000 --- a/10_Wiki/Topics/Design & Experience/Mobile-App-Onboarding.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D7506D -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Mobile-App-Onboarding" ---- - -# [[Mobile-App-Onboarding]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Mobile-App-Onboarding.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Module Resolution Algorithm.md b/10_Wiki/Topics/Design & Experience/Module Resolution Algorithm.md deleted file mode 100644 index 35959b6f..00000000 --- a/10_Wiki/Topics/Design & Experience/Module Resolution Algorithm.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DE6CBC -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Module Resolution Algorithm" ---- - -# [[Module Resolution Algorithm]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Module Resolution Algorithm.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Module-Augmentation-Patterns.md b/10_Wiki/Topics/Design & Experience/Module-Augmentation-Patterns.md deleted file mode 100644 index db93c019..00000000 --- a/10_Wiki/Topics/Design & Experience/Module-Augmentation-Patterns.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D54DFE -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Module-Augmentation-Patterns" ---- - -# [[Module-Augmentation-Patterns]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Module-Augmentation-Patterns.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Module-Resolution-Strategy.md b/10_Wiki/Topics/Design & Experience/Module-Resolution-Strategy.md deleted file mode 100644 index d2ae2f13..00000000 --- a/10_Wiki/Topics/Design & Experience/Module-Resolution-Strategy.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-029B7A -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Module-Resolution-Strategy" ---- - -# [[Module-Resolution-Strategy]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Module-Resolution-Strategy.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Monorepo-Architecture-Design.md b/10_Wiki/Topics/Design & Experience/Monorepo-Architecture-Design.md deleted file mode 100644 index 5ebe3d0d..00000000 --- a/10_Wiki/Topics/Design & Experience/Monorepo-Architecture-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4265B0 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Monorepo-Architecture-Design" ---- - -# [[Monorepo-Architecture-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Monorepo-Architecture-Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Monorepo-Architecture.md b/10_Wiki/Topics/Design & Experience/Monorepo-Architecture.md deleted file mode 100644 index 07bed307..00000000 --- a/10_Wiki/Topics/Design & Experience/Monorepo-Architecture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-69C266 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Monorepo-Architecture" ---- - -# [[Monorepo-Architecture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Monorepo-Architecture.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Monorepo-Dependency-Graph-Analysis.md b/10_Wiki/Topics/Design & Experience/Monorepo-Dependency-Graph-Analysis.md deleted file mode 100644 index b4fec12d..00000000 --- a/10_Wiki/Topics/Design & Experience/Monorepo-Dependency-Graph-Analysis.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-99AA42 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Monorepo-Dependency-Graph-Analysis" ---- - -# [[Monorepo-Dependency-Graph-Analysis]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Monorepo-Dependency-Graph-Analysis.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Monte Carlo Tree Search (MCTS).md b/10_Wiki/Topics/Design & Experience/Monte Carlo Tree Search (MCTS).md deleted file mode 100644 index 99145087..00000000 --- a/10_Wiki/Topics/Design & Experience/Monte Carlo Tree Search (MCTS).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2E53F8 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Monte Carlo Tree Search (MCTS)" ---- - -# [[Monte Carlo Tree Search (MCTS)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Monte Carlo Tree Search (MCTS).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Motor-Learning-Theory.md b/10_Wiki/Topics/Design & Experience/Motor-Learning-Theory.md deleted file mode 100644 index 06763722..00000000 --- a/10_Wiki/Topics/Design & Experience/Motor-Learning-Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D69E40 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Motor-Learning-Theory" ---- - -# [[Motor-Learning-Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Motor-Learning-Theory.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Motor-Learning.md b/10_Wiki/Topics/Design & Experience/Motor-Learning.md deleted file mode 100644 index db3f0111..00000000 --- a/10_Wiki/Topics/Design & Experience/Motor-Learning.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F3DEAC -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Motor-Learning" ---- - -# [[Motor-Learning]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Motor-Learning.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Narrative Design.md b/10_Wiki/Topics/Design & Experience/Narrative Design.md deleted file mode 100644 index 5d493154..00000000 --- a/10_Wiki/Topics/Design & Experience/Narrative Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-680D4B -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Narrative Design" ---- - -# [[Narrative Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Narrative Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Narrative Intelligence.md b/10_Wiki/Topics/Design & Experience/Narrative Intelligence.md deleted file mode 100644 index 96d07bd2..00000000 --- a/10_Wiki/Topics/Design & Experience/Narrative Intelligence.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-89EE25 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Narrative Intelligence" ---- - -# [[Narrative Intelligence]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Narrative Intelligence.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Nash Equilibrium.md b/10_Wiki/Topics/Design & Experience/Nash Equilibrium.md deleted file mode 100644 index d1cb5318..00000000 --- a/10_Wiki/Topics/Design & Experience/Nash Equilibrium.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-762E86 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Nash Equilibrium" ---- - -# [[Nash Equilibrium]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Nash Equilibrium.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Nash-Equilibrium.md b/10_Wiki/Topics/Design & Experience/Nash-Equilibrium.md deleted file mode 100644 index c311dae1..00000000 --- a/10_Wiki/Topics/Design & Experience/Nash-Equilibrium.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-453B61 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Nash-Equilibrium" ---- - -# [[Nash-Equilibrium]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Nash-Equilibrium.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Ninja-Build-System.md b/10_Wiki/Topics/Design & Experience/Ninja-Build-System.md deleted file mode 100644 index 43ec8036..00000000 --- a/10_Wiki/Topics/Design & Experience/Ninja-Build-System.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-18A8ED -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ninja-Build-System" ---- - -# [[Ninja-Build-System]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ninja-Build-System.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Nodejs-Backend-Architecture.md b/10_Wiki/Topics/Design & Experience/Nodejs-Backend-Architecture.md deleted file mode 100644 index 61e860e9..00000000 --- a/10_Wiki/Topics/Design & Experience/Nodejs-Backend-Architecture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A782C0 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Nodejs-Backend-Architecture" ---- - -# [[Nodejs-Backend-Architecture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Node.js-Backend-Architecture.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Nominal Typing.md b/10_Wiki/Topics/Design & Experience/Nominal Typing.md deleted file mode 100644 index dd9a9aca..00000000 --- a/10_Wiki/Topics/Design & Experience/Nominal Typing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-29D050 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Nominal Typing" ---- - -# [[Nominal Typing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Nominal Typing.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Nominal-Typing-via-Branded-Types.md b/10_Wiki/Topics/Design & Experience/Nominal-Typing-via-Branded-Types.md deleted file mode 100644 index e8e832f6..00000000 --- a/10_Wiki/Topics/Design & Experience/Nominal-Typing-via-Branded-Types.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-695155 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Nominal-Typing-via-Branded-Types" ---- - -# [[Nominal-Typing-via-Branded-Types]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Nominal-Typing-via-Branded-Types.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Nominal-Typing-vs-Structural-Typing.md b/10_Wiki/Topics/Design & Experience/Nominal-Typing-vs-Structural-Typing.md deleted file mode 100644 index b857e52c..00000000 --- a/10_Wiki/Topics/Design & Experience/Nominal-Typing-vs-Structural-Typing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1B9D2D -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Nominal-Typing-vs-Structural-Typing" ---- - -# [[Nominal-Typing-vs-Structural-Typing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Nominal-Typing-vs-Structural-Typing.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Nominal-vs-Structural-Typing.md b/10_Wiki/Topics/Design & Experience/Nominal-vs-Structural-Typing.md deleted file mode 100644 index 59c16485..00000000 --- a/10_Wiki/Topics/Design & Experience/Nominal-vs-Structural-Typing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F75BC3 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Nominal-vs-Structural-Typing" ---- - -# [[Nominal-vs-Structural-Typing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Nominal-vs-Structural-Typing.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Non-Diegetic UI.md b/10_Wiki/Topics/Design & Experience/Non-Diegetic UI.md deleted file mode 100644 index e8bf6f0b..00000000 --- a/10_Wiki/Topics/Design & Experience/Non-Diegetic UI.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0D2F57 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Non-Diegetic UI" ---- - -# [[Non-Diegetic UI]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Non-Diegetic UI.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Nx-Build-System.md b/10_Wiki/Topics/Design & Experience/Nx-Build-System.md deleted file mode 100644 index 404e8e51..00000000 --- a/10_Wiki/Topics/Design & Experience/Nx-Build-System.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D6169C -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Nx-Build-System" ---- - -# [[Nx-Build-System]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Nx-Build-System.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Object-Literal-Assignment.md b/10_Wiki/Topics/Design & Experience/Object-Literal-Assignment.md deleted file mode 100644 index a7546121..00000000 --- a/10_Wiki/Topics/Design & Experience/Object-Literal-Assignment.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8E1BDB -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Object-Literal-Assignment" ---- - -# [[Object-Literal-Assignment]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Object-Literal-Assignment.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Object-Oriented-Interface-Design.md b/10_Wiki/Topics/Design & Experience/Object-Oriented-Interface-Design.md deleted file mode 100644 index 5e7a9b3d..00000000 --- a/10_Wiki/Topics/Design & Experience/Object-Oriented-Interface-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8CEF52 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Object-Oriented-Interface-Design" ---- - -# [[Object-Oriented-Interface-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Object-Oriented-Interface-Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Occupational-Ergonomics.md b/10_Wiki/Topics/Design & Experience/Occupational-Ergonomics.md deleted file mode 100644 index 79c651a8..00000000 --- a/10_Wiki/Topics/Design & Experience/Occupational-Ergonomics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-92FABA -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Occupational-Ergonomics" ---- - -# [[Occupational-Ergonomics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Occupational-Ergonomics.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/OpenAPI-Specification.md b/10_Wiki/Topics/Design & Experience/OpenAPI-Specification.md deleted file mode 100644 index 6eb45bbd..00000000 --- a/10_Wiki/Topics/Design & Experience/OpenAPI-Specification.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B4497C -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - OpenAPI-Specification" ---- - -# [[OpenAPI-Specification]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/OpenAPI-Specification.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Optimal-Experience-Research.md b/10_Wiki/Topics/Design & Experience/Optimal-Experience-Research.md deleted file mode 100644 index 3fa7eecc..00000000 --- a/10_Wiki/Topics/Design & Experience/Optimal-Experience-Research.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BDC058 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Optimal-Experience-Research" ---- - -# [[Optimal-Experience-Research]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Optimal-Experience-Research.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Organizational Learning Culture.md b/10_Wiki/Topics/Design & Experience/Organizational Learning Culture.md deleted file mode 100644 index 9186976e..00000000 --- a/10_Wiki/Topics/Design & Experience/Organizational Learning Culture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-97FF1D -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Organizational Learning Culture" ---- - -# [[Organizational Learning Culture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Organizational Learning Culture.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Organizational-Innovation-Management.md b/10_Wiki/Topics/Design & Experience/Organizational-Innovation-Management.md deleted file mode 100644 index 4f1280b5..00000000 --- a/10_Wiki/Topics/Design & Experience/Organizational-Innovation-Management.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-27E3D1 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Organizational-Innovation-Management" ---- - -# [[Organizational-Innovation-Management]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Organizational-Innovation-Management.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Orthopedic-Implant-Validation.md b/10_Wiki/Topics/Design & Experience/Orthopedic-Implant-Validation.md deleted file mode 100644 index 349d8d72..00000000 --- a/10_Wiki/Topics/Design & Experience/Orthopedic-Implant-Validation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9F5A29 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Orthopedic-Implant-Validation" ---- - -# [[Orthopedic-Implant-Validation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Orthopedic-Implant-Validation.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Player Agency.md b/10_Wiki/Topics/Design & Experience/Player Agency.md deleted file mode 100644 index 380ee101..00000000 --- a/10_Wiki/Topics/Design & Experience/Player Agency.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-83E12E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Player Agency" ---- - -# [[Player Agency]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Player Agency.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Player-Autonomy.md b/10_Wiki/Topics/Design & Experience/Player-Autonomy.md deleted file mode 100644 index 34cff024..00000000 --- a/10_Wiki/Topics/Design & Experience/Player-Autonomy.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-85AECB -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Player-Autonomy" ---- - -# [[Player-Autonomy]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Player-Autonomy.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Political-Philosophy-in-Games.md b/10_Wiki/Topics/Design & Experience/Political-Philosophy-in-Games.md deleted file mode 100644 index 5ededdfb..00000000 --- a/10_Wiki/Topics/Design & Experience/Political-Philosophy-in-Games.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9F478E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Political-Philosophy-in-Games" ---- - -# [[Political-Philosophy-in-Games]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Political-Philosophy-in-Games.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Product-Analytics-Infrastructure.md b/10_Wiki/Topics/Design & Experience/Product-Analytics-Infrastructure.md deleted file mode 100644 index 31eb7711..00000000 --- a/10_Wiki/Topics/Design & Experience/Product-Analytics-Infrastructure.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B3941E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Product-Analytics-Infrastructure" ---- - -# [[Product-Analytics-Infrastructure]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Product-Analytics-Infrastructure.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Protocol-Buffers-TypeScript.md b/10_Wiki/Topics/Design & Experience/Protocol-Buffers-TypeScript.md deleted file mode 100644 index 58fb9b91..00000000 --- a/10_Wiki/Topics/Design & Experience/Protocol-Buffers-TypeScript.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1F2F42 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Protocol-Buffers-TypeScript" ---- - -# [[Protocol-Buffers-TypeScript]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Protocol-Buffers-TypeScript.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Public Policy Design.md b/10_Wiki/Topics/Design & Experience/Public Policy Design.md deleted file mode 100644 index 07f74a09..00000000 --- a/10_Wiki/Topics/Design & Experience/Public Policy Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-444363 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Public Policy Design" ---- - -# [[Public Policy Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Public Policy Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Quantum-Computing-Simulations.md b/10_Wiki/Topics/Design & Experience/Quantum-Computing-Simulations.md deleted file mode 100644 index 19440c55..00000000 --- a/10_Wiki/Topics/Design & Experience/Quantum-Computing-Simulations.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5FB7B9 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Quantum-Computing-Simulations" ---- - -# [[Quantum-Computing-Simulations]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Quantum-Computing-Simulations.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Rapier 물리 엔진 스냅샷(Snapshot) 기반 상태 복원.md b/10_Wiki/Topics/Design & Experience/Rapier 물리 엔진 스냅샷(Snapshot) 기반 상태 복원.md deleted file mode 100644 index b5fdfad3..00000000 --- a/10_Wiki/Topics/Design & Experience/Rapier 물리 엔진 스냅샷(Snapshot) 기반 상태 복원.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D58438 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Rapier 물리 엔진 스냅샷(Snapshot) 기반 상태 복원" ---- - -# [[Rapier 물리 엔진 스냅샷(Snapshot) 기반 상태 복원]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Rapier 물리 엔진 스냅샷(Snapshot) 기반 상태 복원.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/React Native 게임 최적화 (JSI Hermes).md b/10_Wiki/Topics/Design & Experience/React Native 게임 최적화 (JSI Hermes).md deleted file mode 100644 index b41daadd..00000000 --- a/10_Wiki/Topics/Design & Experience/React Native 게임 최적화 (JSI Hermes).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-23E022 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - React Native 게임 최적화 (JSI Hermes)" ---- - -# [[React Native 게임 최적화 (JSI Hermes)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/React Native 게임 최적화 (JSI, Hermes).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Redstone Engineering.md b/10_Wiki/Topics/Design & Experience/Redstone Engineering.md deleted file mode 100644 index 3bb66b17..00000000 --- a/10_Wiki/Topics/Design & Experience/Redstone Engineering.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F36E08 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Redstone Engineering" ---- - -# [[Redstone Engineering]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Redstone Engineering.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Redux-Reducers.md b/10_Wiki/Topics/Design & Experience/Redux-Reducers.md deleted file mode 100644 index 77a66dfa..00000000 --- a/10_Wiki/Topics/Design & Experience/Redux-Reducers.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-20A7B7 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Redux-Reducers" ---- - -# [[Redux-Reducers]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Redux-Reducers.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Redux-Toolkit-Architecture.md b/10_Wiki/Topics/Design & Experience/Redux-Toolkit-Architecture.md deleted file mode 100644 index 138d8750..00000000 --- a/10_Wiki/Topics/Design & Experience/Redux-Toolkit-Architecture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5308B9 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Redux-Toolkit-Architecture" ---- - -# [[Redux-Toolkit-Architecture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Redux-Toolkit-Architecture.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Reinforcement Learning Reward Shaping.md b/10_Wiki/Topics/Design & Experience/Reinforcement Learning Reward Shaping.md deleted file mode 100644 index 8d8c5ee1..00000000 --- a/10_Wiki/Topics/Design & Experience/Reinforcement Learning Reward Shaping.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-390731 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Reinforcement Learning Reward Shaping" ---- - -# [[Reinforcement Learning Reward Shaping]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Reinforcement Learning Reward Shaping.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Roguelike Subgenre.md b/10_Wiki/Topics/Design & Experience/Roguelike Subgenre.md deleted file mode 100644 index 89befafc..00000000 --- a/10_Wiki/Topics/Design & Experience/Roguelike Subgenre.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3475FE -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Roguelike Subgenre" ---- - -# [[Roguelike Subgenre]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Roguelike Subgenre.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/SeL4-Microkernel.md b/10_Wiki/Topics/Design & Experience/SeL4-Microkernel.md deleted file mode 100644 index c824e6f2..00000000 --- a/10_Wiki/Topics/Design & Experience/SeL4-Microkernel.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0A0995 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - SeL4-Microkernel" ---- - -# [[SeL4-Microkernel]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/SeL4-Microkernel.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Self-Determination Theory.md b/10_Wiki/Topics/Design & Experience/Self-Determination Theory.md deleted file mode 100644 index 4b9aabf0..00000000 --- a/10_Wiki/Topics/Design & Experience/Self-Determination Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2C7B68 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Self-Determination Theory" ---- - -# [[Self-Determination Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Self-Determination Theory.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Self-Determination-Theory.md b/10_Wiki/Topics/Design & Experience/Self-Determination-Theory.md deleted file mode 100644 index 798ca219..00000000 --- a/10_Wiki/Topics/Design & Experience/Self-Determination-Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-576385 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Self-Determination-Theory" ---- - -# [[Self-Determination-Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Self-Determination-Theory.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Service-Design.md b/10_Wiki/Topics/Design & Experience/Service-Design.md deleted file mode 100644 index 31a90400..00000000 --- a/10_Wiki/Topics/Design & Experience/Service-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-92A8B5 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Service-Design" ---- - -# [[Service-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Service-Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/SimCity-Series.md b/10_Wiki/Topics/Design & Experience/SimCity-Series.md deleted file mode 100644 index 207aa0f4..00000000 --- a/10_Wiki/Topics/Design & Experience/SimCity-Series.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5D71A8 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - SimCity-Series" ---- - -# [[SimCity-Series]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/SimCity-Series.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Single-Responsibility-Principle.md b/10_Wiki/Topics/Design & Experience/Single-Responsibility-Principle.md deleted file mode 100644 index 0b5f1677..00000000 --- a/10_Wiki/Topics/Design & Experience/Single-Responsibility-Principle.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-91F776 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Single-Responsibility-Principle" ---- - -# [[Single-Responsibility-Principle]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Single-Responsibility-Principle.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Single-Source-of-Truth-Principle.md b/10_Wiki/Topics/Design & Experience/Single-Source-of-Truth-Principle.md deleted file mode 100644 index ee988ef3..00000000 --- a/10_Wiki/Topics/Design & Experience/Single-Source-of-Truth-Principle.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A292A4 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Single-Source-of-Truth-Principle" ---- - -# [[Single-Source-of-Truth-Principle]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Single-Source-of-Truth-Principle.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Smithsonian-Digital-Repository.md b/10_Wiki/Topics/Design & Experience/Smithsonian-Digital-Repository.md deleted file mode 100644 index eef31f89..00000000 --- a/10_Wiki/Topics/Design & Experience/Smithsonian-Digital-Repository.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F0CD87 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Smithsonian-Digital-Repository" ---- - -# [[Smithsonian-Digital-Repository]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Smithsonian-Digital-Repository.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Social Learning Theory.md b/10_Wiki/Topics/Design & Experience/Social Learning Theory.md deleted file mode 100644 index f8266839..00000000 --- a/10_Wiki/Topics/Design & Experience/Social Learning Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-26C0EB -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Social Learning Theory" ---- - -# [[Social Learning Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Social Learning Theory.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Socially Assistive Robotics (SAR).md b/10_Wiki/Topics/Design & Experience/Socially Assistive Robotics (SAR).md deleted file mode 100644 index 3d5c1bf1..00000000 --- a/10_Wiki/Topics/Design & Experience/Socially Assistive Robotics (SAR).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-22DA21 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Socially Assistive Robotics (SAR)" ---- - -# [[Socially Assistive Robotics (SAR)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Socially Assistive Robotics (SAR).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Software Architecture API Contract Design.md b/10_Wiki/Topics/Design & Experience/Software Architecture API Contract Design.md deleted file mode 100644 index 6b92d06f..00000000 --- a/10_Wiki/Topics/Design & Experience/Software Architecture API Contract Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A7EF2F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Software Architecture API Contract Design" ---- - -# [[Software Architecture API Contract Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Software Architecture & API Contract Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Software-Contract-Enforcement.md b/10_Wiki/Topics/Design & Experience/Software-Contract-Enforcement.md deleted file mode 100644 index ec2a7f99..00000000 --- a/10_Wiki/Topics/Design & Experience/Software-Contract-Enforcement.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B29206 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Software-Contract-Enforcement" ---- - -# [[Software-Contract-Enforcement]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Software-Contract-Enforcement.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Software-Product-Management.md b/10_Wiki/Topics/Design & Experience/Software-Product-Management.md deleted file mode 100644 index 00183a34..00000000 --- a/10_Wiki/Topics/Design & Experience/Software-Product-Management.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7094F5 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Software-Product-Management" ---- - -# [[Software-Product-Management]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Software-Product-Management.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Spatial Cognition.md b/10_Wiki/Topics/Design & Experience/Spatial Cognition.md deleted file mode 100644 index 284b54a3..00000000 --- a/10_Wiki/Topics/Design & Experience/Spatial Cognition.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-06C479 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Spatial Cognition" ---- - -# [[Spatial Cognition]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Spatial Cognition.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Spatial Computing.md b/10_Wiki/Topics/Design & Experience/Spatial Computing.md deleted file mode 100644 index a69b4fba..00000000 --- a/10_Wiki/Topics/Design & Experience/Spatial Computing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C2600F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Spatial Computing" ---- - -# [[Spatial Computing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Spatial Computing.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/State-Machine-Implementation.md b/10_Wiki/Topics/Design & Experience/State-Machine-Implementation.md deleted file mode 100644 index 224da0ad..00000000 --- a/10_Wiki/Topics/Design & Experience/State-Machine-Implementation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CB6F5B -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - State-Machine-Implementation" ---- - -# [[State-Machine-Implementation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/State-Machine-Implementation.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Static Type Checking Systems.md b/10_Wiki/Topics/Design & Experience/Static Type Checking Systems.md deleted file mode 100644 index b69a0ea6..00000000 --- a/10_Wiki/Topics/Design & Experience/Static Type Checking Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AB0264 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Static Type Checking Systems" ---- - -# [[Static Type Checking Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Static Type Checking Systems.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Static-Program-Analysis.md b/10_Wiki/Topics/Design & Experience/Static-Program-Analysis.md deleted file mode 100644 index 17f1e86e..00000000 --- a/10_Wiki/Topics/Design & Experience/Static-Program-Analysis.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-295D6F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Static-Program-Analysis" ---- - -# [[Static-Program-Analysis]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Static-Program-Analysis.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Structural Type System.md b/10_Wiki/Topics/Design & Experience/Structural Type System.md deleted file mode 100644 index 635221a0..00000000 --- a/10_Wiki/Topics/Design & Experience/Structural Type System.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8CDABA -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Structural Type System" ---- - -# [[Structural Type System]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Structural Type System.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Structural-Subtyping.md b/10_Wiki/Topics/Design & Experience/Structural-Subtyping.md deleted file mode 100644 index bfd8b65c..00000000 --- a/10_Wiki/Topics/Design & Experience/Structural-Subtyping.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-ED919D -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Structural-Subtyping" ---- - -# [[Structural-Subtyping]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Structural-Subtyping.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Structural-Type-System.md b/10_Wiki/Topics/Design & Experience/Structural-Type-System.md deleted file mode 100644 index 2bb3304f..00000000 --- a/10_Wiki/Topics/Design & Experience/Structural-Type-System.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-51BF6C -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Structural-Type-System" ---- - -# [[Structural-Type-System]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Structural-Type-System.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Structural-Typing-Analysis.md b/10_Wiki/Topics/Design & Experience/Structural-Typing-Analysis.md deleted file mode 100644 index 9b1c80cd..00000000 --- a/10_Wiki/Topics/Design & Experience/Structural-Typing-Analysis.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7B4F4E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Structural-Typing-Analysis" ---- - -# [[Structural-Typing-Analysis]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Structural-Typing-Analysis.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Structural-Typing-Compatibility.md b/10_Wiki/Topics/Design & Experience/Structural-Typing-Compatibility.md deleted file mode 100644 index 484f5a11..00000000 --- a/10_Wiki/Topics/Design & Experience/Structural-Typing-Compatibility.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-61CE6C -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Structural-Typing-Compatibility" ---- - -# [[Structural-Typing-Compatibility]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Structural-Typing-Compatibility.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Structural-Typing-Mechanics.md b/10_Wiki/Topics/Design & Experience/Structural-Typing-Mechanics.md deleted file mode 100644 index 7942f8ae..00000000 --- a/10_Wiki/Topics/Design & Experience/Structural-Typing-Mechanics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-472330 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Structural-Typing-Mechanics" ---- - -# [[Structural-Typing-Mechanics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Structural-Typing-Mechanics.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Structural-Typing-Mechanisms.md b/10_Wiki/Topics/Design & Experience/Structural-Typing-Mechanisms.md deleted file mode 100644 index e6b0eddb..00000000 --- a/10_Wiki/Topics/Design & Experience/Structural-Typing-Mechanisms.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-88EAEF -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Structural-Typing-Mechanisms" ---- - -# [[Structural-Typing-Mechanisms]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Structural-Typing-Mechanisms.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Structural-Typing-System.md b/10_Wiki/Topics/Design & Experience/Structural-Typing-System.md deleted file mode 100644 index 5c6454ec..00000000 --- a/10_Wiki/Topics/Design & Experience/Structural-Typing-System.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CB5A39 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Structural-Typing-System" ---- - -# [[Structural-Typing-System]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Structural-Typing-System.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Structural-Typing-and-Compatibility.md b/10_Wiki/Topics/Design & Experience/Structural-Typing-and-Compatibility.md deleted file mode 100644 index 76ee5c69..00000000 --- a/10_Wiki/Topics/Design & Experience/Structural-Typing-and-Compatibility.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8A9CF7 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Structural-Typing-and-Compatibility" ---- - -# [[Structural-Typing-and-Compatibility]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Structural-Typing-and-Compatibility.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Structural-Typing-vs-Nominal-Typing.md b/10_Wiki/Topics/Design & Experience/Structural-Typing-vs-Nominal-Typing.md deleted file mode 100644 index e972cea5..00000000 --- a/10_Wiki/Topics/Design & Experience/Structural-Typing-vs-Nominal-Typing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AA252C -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Structural-Typing-vs-Nominal-Typing" ---- - -# [[Structural-Typing-vs-Nominal-Typing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Structural-Typing-vs-Nominal-Typing.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Structural-Typing.md b/10_Wiki/Topics/Design & Experience/Structural-Typing.md deleted file mode 100644 index 4d9e9cf6..00000000 --- a/10_Wiki/Topics/Design & Experience/Structural-Typing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-65A250 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Structural-Typing" ---- - -# [[Structural-Typing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Structural-Typing.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Structural-vs-Nominal-Typing-in-TS.md b/10_Wiki/Topics/Design & Experience/Structural-vs-Nominal-Typing-in-TS.md deleted file mode 100644 index 77f71efc..00000000 --- a/10_Wiki/Topics/Design & Experience/Structural-vs-Nominal-Typing-in-TS.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1623C6 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Structural-vs-Nominal-Typing-in-TS" ---- - -# [[Structural-vs-Nominal-Typing-in-TS]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Structural-vs-Nominal-Typing-in-TS.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Structural-vs-Nominal-Typing.md b/10_Wiki/Topics/Design & Experience/Structural-vs-Nominal-Typing.md deleted file mode 100644 index e551e47b..00000000 --- a/10_Wiki/Topics/Design & Experience/Structural-vs-Nominal-Typing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AD6E98 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Structural-vs-Nominal-Typing" ---- - -# [[Structural-vs-Nominal-Typing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Structural-vs-Nominal-Typing.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Subtyping-Relations.md b/10_Wiki/Topics/Design & Experience/Subtyping-Relations.md deleted file mode 100644 index 39e58f79..00000000 --- a/10_Wiki/Topics/Design & Experience/Subtyping-Relations.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4C9B28 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Subtyping-Relations" ---- - -# [[Subtyping-Relations]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Subtyping-Relations.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Subtyping-Rules.md b/10_Wiki/Topics/Design & Experience/Subtyping-Rules.md deleted file mode 100644 index 358c3596..00000000 --- a/10_Wiki/Topics/Design & Experience/Subtyping-Rules.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FFBE65 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Subtyping-Rules" ---- - -# [[Subtyping-Rules]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Subtyping-Rules.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Subtyping-and-Variance.md b/10_Wiki/Topics/Design & Experience/Subtyping-and-Variance.md deleted file mode 100644 index 7407aa19..00000000 --- a/10_Wiki/Topics/Design & Experience/Subtyping-and-Variance.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B1CA51 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Subtyping-and-Variance" ---- - -# [[Subtyping-and-Variance]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Subtyping-and-Variance.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Systemic Design.md b/10_Wiki/Topics/Design & Experience/Systemic Design.md deleted file mode 100644 index 3f861d93..00000000 --- a/10_Wiki/Topics/Design & Experience/Systemic Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0B8492 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Systemic Design" ---- - -# [[Systemic Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Systemic Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Systemic Game Design.md b/10_Wiki/Topics/Design & Experience/Systemic Game Design.md deleted file mode 100644 index d8c474d1..00000000 --- a/10_Wiki/Topics/Design & Experience/Systemic Game Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-364762 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Systemic Game Design" ---- - -# [[Systemic Game Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Systemic Game Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Systemic-Design.md b/10_Wiki/Topics/Design & Experience/Systemic-Design.md deleted file mode 100644 index bbf33a6d..00000000 --- a/10_Wiki/Topics/Design & Experience/Systemic-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9123E5 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Systemic-Design" ---- - -# [[Systemic-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Systemic-Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Systems-Thinking.md b/10_Wiki/Topics/Design & Experience/Systems-Thinking.md deleted file mode 100644 index 2b756aa7..00000000 --- a/10_Wiki/Topics/Design & Experience/Systems-Thinking.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2028E0 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Systems-Thinking" ---- - -# [[Systems-Thinking]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Systems-Thinking.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Template-Literal-Types.md b/10_Wiki/Topics/Design & Experience/Template-Literal-Types.md deleted file mode 100644 index 9aac9d74..00000000 --- a/10_Wiki/Topics/Design & Experience/Template-Literal-Types.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CBED64 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Template-Literal-Types" ---- - -# [[Template-Literal-Types]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Template-Literal-Types.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/The Emergence Theory in Game Design.md b/10_Wiki/Topics/Design & Experience/The Emergence Theory in Game Design.md deleted file mode 100644 index c01715b0..00000000 --- a/10_Wiki/Topics/Design & Experience/The Emergence Theory in Game Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A4804A -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - The Emergence Theory in Game Design" ---- - -# [[The Emergence Theory in Game Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/The Emergence Theory in Game Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/The Last of Us (Resource Scarcity and Character Bond).md b/10_Wiki/Topics/Design & Experience/The Last of Us (Resource Scarcity and Character Bond).md deleted file mode 100644 index df00de73..00000000 --- a/10_Wiki/Topics/Design & Experience/The Last of Us (Resource Scarcity and Character Bond).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B7E710 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - The Last of Us (Resource Scarcity and Character Bond)" ---- - -# [[The Last of Us (Resource Scarcity and Character Bond)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/The Last of Us (Resource Scarcity and Character Bond).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Topological-Sorting.md b/10_Wiki/Topics/Design & Experience/Topological-Sorting.md deleted file mode 100644 index 202354fd..00000000 --- a/10_Wiki/Topics/Design & Experience/Topological-Sorting.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2CF8FE -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Topological-Sorting" ---- - -# [[Topological-Sorting]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Topological-Sorting.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Touchpoint-Analysis.md b/10_Wiki/Topics/Design & Experience/Touchpoint-Analysis.md deleted file mode 100644 index 7b302892..00000000 --- a/10_Wiki/Topics/Design & Experience/Touchpoint-Analysis.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5E6FFB -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Touchpoint-Analysis" ---- - -# [[Touchpoint-Analysis]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Touchpoint-Analysis.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Turborepo-Orchestration.md b/10_Wiki/Topics/Design & Experience/Turborepo-Orchestration.md deleted file mode 100644 index d888bd38..00000000 --- a/10_Wiki/Topics/Design & Experience/Turborepo-Orchestration.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-05096A -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Turborepo-Orchestration" ---- - -# [[Turborepo-Orchestration]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Turborepo-Orchestration.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Type Branding.md b/10_Wiki/Topics/Design & Experience/Type Branding.md deleted file mode 100644 index cfb884a1..00000000 --- a/10_Wiki/Topics/Design & Experience/Type Branding.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-62F9F5 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type Branding" ---- - -# [[Type Branding]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type Branding.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Type-Aware-Linting.md b/10_Wiki/Topics/Design & Experience/Type-Aware-Linting.md deleted file mode 100644 index 1ace3b43..00000000 --- a/10_Wiki/Topics/Design & Experience/Type-Aware-Linting.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CAD7C2 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Aware-Linting" ---- - -# [[Type-Aware-Linting]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Aware-Linting.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Type-Compatibility-Rules.md b/10_Wiki/Topics/Design & Experience/Type-Compatibility-Rules.md deleted file mode 100644 index e875d1c6..00000000 --- a/10_Wiki/Topics/Design & Experience/Type-Compatibility-Rules.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A6932F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Compatibility-Rules" ---- - -# [[Type-Compatibility-Rules]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Compatibility-Rules.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Type-Compatibility-and-Subtyping.md b/10_Wiki/Topics/Design & Experience/Type-Compatibility-and-Subtyping.md deleted file mode 100644 index 5d870cf8..00000000 --- a/10_Wiki/Topics/Design & Experience/Type-Compatibility-and-Subtyping.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DAF93E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Compatibility-and-Subtyping" ---- - -# [[Type-Compatibility-and-Subtyping]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Compatibility-and-Subtyping.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Type-Compatibility.md b/10_Wiki/Topics/Design & Experience/Type-Compatibility.md deleted file mode 100644 index 9d97f169..00000000 --- a/10_Wiki/Topics/Design & Experience/Type-Compatibility.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BEFC96 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Compatibility" ---- - -# [[Type-Compatibility]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Compatibility.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Type-Composition-via-Intersections.md b/10_Wiki/Topics/Design & Experience/Type-Composition-via-Intersections.md deleted file mode 100644 index d5102adb..00000000 --- a/10_Wiki/Topics/Design & Experience/Type-Composition-via-Intersections.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F4AFF9 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Composition-via-Intersections" ---- - -# [[Type-Composition-via-Intersections]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Composition-via-Intersections.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Type-Driven-Development.md b/10_Wiki/Topics/Design & Experience/Type-Driven-Development.md deleted file mode 100644 index b4d6cd20..00000000 --- a/10_Wiki/Topics/Design & Experience/Type-Driven-Development.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1CC60F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Driven-Development" ---- - -# [[Type-Driven-Development]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Driven-Development.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Type-Erasure-and-Runtime-Behavior.md b/10_Wiki/Topics/Design & Experience/Type-Erasure-and-Runtime-Behavior.md deleted file mode 100644 index 8b70ad22..00000000 --- a/10_Wiki/Topics/Design & Experience/Type-Erasure-and-Runtime-Behavior.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BD9DA5 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Erasure-and-Runtime-Behavior" ---- - -# [[Type-Erasure-and-Runtime-Behavior]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Erasure-and-Runtime-Behavior.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Type-Guards-and-Narrowing.md b/10_Wiki/Topics/Design & Experience/Type-Guards-and-Narrowing.md deleted file mode 100644 index 489013fb..00000000 --- a/10_Wiki/Topics/Design & Experience/Type-Guards-and-Narrowing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9DB0ED -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Guards-and-Narrowing" ---- - -# [[Type-Guards-and-Narrowing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Guards-and-Narrowing.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Type-Narrowing.md b/10_Wiki/Topics/Design & Experience/Type-Narrowing.md deleted file mode 100644 index 76080a5e..00000000 --- a/10_Wiki/Topics/Design & Experience/Type-Narrowing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-60D972 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Narrowing" ---- - -# [[Type-Narrowing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Narrowing.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Type-Safe-API-Design.md b/10_Wiki/Topics/Design & Experience/Type-Safe-API-Design.md deleted file mode 100644 index dbc9786f..00000000 --- a/10_Wiki/Topics/Design & Experience/Type-Safe-API-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BDDBAD -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Safe-API-Design" ---- - -# [[Type-Safe-API-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Safe-API-Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Type-Safety-and-Exhaustiveness-Checking.md b/10_Wiki/Topics/Design & Experience/Type-Safety-and-Exhaustiveness-Checking.md deleted file mode 100644 index e4868c9f..00000000 --- a/10_Wiki/Topics/Design & Experience/Type-Safety-and-Exhaustiveness-Checking.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5C9108 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Safety-and-Exhaustiveness-Checking" ---- - -# [[Type-Safety-and-Exhaustiveness-Checking]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Safety-and-Exhaustiveness-Checking.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Type-Safety.md b/10_Wiki/Topics/Design & Experience/Type-Safety.md deleted file mode 100644 index 74099882..00000000 --- a/10_Wiki/Topics/Design & Experience/Type-Safety.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0FE004 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Safety" ---- - -# [[Type-Safety]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Safety.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Type-Variance-in-TypeScript.md b/10_Wiki/Topics/Design & Experience/Type-Variance-in-TypeScript.md deleted file mode 100644 index 9a63f635..00000000 --- a/10_Wiki/Topics/Design & Experience/Type-Variance-in-TypeScript.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E14411 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Variance-in-TypeScript" ---- - -# [[Type-Variance-in-TypeScript]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Variance-in-TypeScript.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/TypeScript Compiler API.md b/10_Wiki/Topics/Design & Experience/TypeScript Compiler API.md deleted file mode 100644 index a195183b..00000000 --- a/10_Wiki/Topics/Design & Experience/TypeScript Compiler API.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A553B6 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript Compiler API" ---- - -# [[TypeScript Compiler API]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript Compiler API.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/TypeScript Type System (Interface Design).md b/10_Wiki/Topics/Design & Experience/TypeScript Type System (Interface Design).md deleted file mode 100644 index c65ad3de..00000000 --- a/10_Wiki/Topics/Design & Experience/TypeScript Type System (Interface Design).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FE2C59 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript Type System (Interface Design)" ---- - -# [[TypeScript Type System (Interface Design)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript Type System (Interface Design).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/TypeScript 라이브러리 타입 확장.md b/10_Wiki/Topics/Design & Experience/TypeScript 라이브러리 타입 확장.md deleted file mode 100644 index a2f4d89c..00000000 --- a/10_Wiki/Topics/Design & Experience/TypeScript 라이브러리 타입 확장.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BF50D4 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript 라이브러리 타입 확장" ---- - -# [[TypeScript 라이브러리 타입 확장]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **선언 병합(Declaration Merging)을 통한 확장**: TypeScript에서 동일한 이름의 인터페이스를 여러 번 선언하면, 컴파일러가 이를 자동으로 하나의 인터페이스로 합칩니다 [1, 2]. 이 기능은 라이브러리 코드를 작성할 때 사용자가 필요에 따라 선언부를 유연하게 확장(extend)할 수 있도록 허용하는 핵심 메커니즘입니다 [2, 3]. 반면, 타입 별칭(Type Alias)은 동일한 이름으로 재선언할 수 없으므로 이러한 방식의 확장이 불가능합니다 [2, 4]. -- **성능을 고려한 인터페이스 확장(extends) 전략**: 타입을 확장할 때 교집합(Intersection, `&`)을 사용하는 것보다 `interface extends`를 사용하는 것이 권장됩니다 [5, 6]. TypeScript 컴파일러는 인터페이스를 처리할 때 이름 기준으로 타입 관계를 캐싱하여 활용하지만, 교집합 연산은 사용될 때마다 속성을 재귀적으로 병합하고 계산해야 하므로 대규모 프로젝트나 라이브러리 사용 시 컴파일 성능을 저하시킬 수 있습니다 [5, 7, 8]. -- **외부 라이브러리 타입 선언 파일(.d.ts)**: 기존 JavaScript 라이브러리를 TypeScript에서 사용할 때는 구현부 없이 타입 정보만을 제공하는 선언 파일(`.d.ts`)이 필요합니다 [9]. 많은 인기 라이브러리들이 자체 타입을 제공하지만, 타입이 존재하지 않는 경우 사용자가 직접 모듈을 선언하여 타입 확장을 하거나 에러를 억제할 수 있습니다 [9]. -- **내부 코드와 외부 라이브러리 코드 간의 이원화 설계**: 개발 커뮤니티에서는 "내부는 Types, 외부는 Interfaces를 사용하라"는 전략이 제안되기도 합니다 [6]. 애플리케이션 내부 핵심 도메인 로직에서는 의도치 않은 선언 병합으로 인한 버그나 충돌을 막기 위해 타입 별칭(Type)을 사용하여 엄격하게 관리하는 것이 좋습니다 [2, 10]. 반대로 외부 라이브러리로 제공되거나 외부와의 소통이 잦은 계약 지점의 코드에서는 소비자의 유연한 확장을 위해 인터페이스(Interface)를 사용하는 것이 바람직합니다 [2, 3]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[선언 병합(Declaration Merging)]], [[Interface]], [[Type Alias]], [[교집합 타입(Intersection Type)]] -- **Projects/Contexts:** [[외부 라이브러리 API 설계]], [[TypeScript 컴파일러 캐싱 최적화]], [[선언 파일(.d.ts)]] -- **Contradictions/Notes:** 애플리케이션 내부 코드의 경우, 인터페이스의 확장성을 '의도치 않은 속성 병합(Bad Thing)'으로 간주하여 타입 별칭(Type Alias)의 사용을 선호하는 실무적 의견이 다수 존재합니다 [4, 10-12]. 하지만 외부 패키지나 라이브러리 생태계에서는 여전히 사용자에게 타입 확장을 허용하기 위해 인터페이스를 채택하는 것이 정석으로 평가받고 있습니다 [2, 3]. 또한, 객체를 확장할 때 교집합(`&`) 방식은 유연해 보이지만, 성능 이슈와 충돌 검사 한계로 인해 `interface extends` 방식에 비해 상대적으로 지양됩니다 [5, 7, 13]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/TypeScript 라이브러리 타입 확장.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/TypeScript-Compiler-API-Design.md b/10_Wiki/Topics/Design & Experience/TypeScript-Compiler-API-Design.md deleted file mode 100644 index 1e0d4773..00000000 --- a/10_Wiki/Topics/Design & Experience/TypeScript-Compiler-API-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D06F7B -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript-Compiler-API-Design" ---- - -# [[TypeScript-Compiler-API-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript-Compiler-API-Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/TypeScript-Compiler-API.md b/10_Wiki/Topics/Design & Experience/TypeScript-Compiler-API.md deleted file mode 100644 index 8237d687..00000000 --- a/10_Wiki/Topics/Design & Experience/TypeScript-Compiler-API.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9F7F6E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript-Compiler-API" ---- - -# [[TypeScript-Compiler-API]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript-Compiler-API.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/TypeScript-Compiler-Architecture.md b/10_Wiki/Topics/Design & Experience/TypeScript-Compiler-Architecture.md deleted file mode 100644 index 0f86439f..00000000 --- a/10_Wiki/Topics/Design & Experience/TypeScript-Compiler-Architecture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-98247B -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript-Compiler-Architecture" ---- - -# [[TypeScript-Compiler-Architecture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript-Compiler-Architecture.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/TypeScript-Language-Service-API.md b/10_Wiki/Topics/Design & Experience/TypeScript-Language-Service-API.md deleted file mode 100644 index 04eba6ce..00000000 --- a/10_Wiki/Topics/Design & Experience/TypeScript-Language-Service-API.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C7C758 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript-Language-Service-API" ---- - -# [[TypeScript-Language-Service-API]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript-Language-Service-API.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/TypeScript-Project-References.md b/10_Wiki/Topics/Design & Experience/TypeScript-Project-References.md deleted file mode 100644 index 000e6e4a..00000000 --- a/10_Wiki/Topics/Design & Experience/TypeScript-Project-References.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E852BD -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript-Project-References" ---- - -# [[TypeScript-Project-References]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript-Project-References.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/UX_UI in Interactive Media.md b/10_Wiki/Topics/Design & Experience/UX_UI in Interactive Media.md deleted file mode 100644 index c1b4db6a..00000000 --- a/10_Wiki/Topics/Design & Experience/UX_UI in Interactive Media.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8F3CFA -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - UX_UI in Interactive Media" ---- - -# [[UX_UI in Interactive Media]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/UX_UI in Interactive Media.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Unified-User-Experience.md b/10_Wiki/Topics/Design & Experience/Unified-User-Experience.md deleted file mode 100644 index b2030c37..00000000 --- a/10_Wiki/Topics/Design & Experience/Unified-User-Experience.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0A5862 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Unified-User-Experience" ---- - -# [[Unified-User-Experience]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Unified-User-Experience.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Union-Types.md b/10_Wiki/Topics/Design & Experience/Union-Types.md deleted file mode 100644 index afc5641c..00000000 --- a/10_Wiki/Topics/Design & Experience/Union-Types.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A21B05 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Union-Types" ---- - -# [[Union-Types]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Union-Types.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Urban-Morphology.md b/10_Wiki/Topics/Design & Experience/Urban-Morphology.md deleted file mode 100644 index 9d0c3d18..00000000 --- a/10_Wiki/Topics/Design & Experience/Urban-Morphology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-27741A -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Urban-Morphology" ---- - -# [[Urban-Morphology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Urban-Morphology.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Urban-Planning-Simulations.md b/10_Wiki/Topics/Design & Experience/Urban-Planning-Simulations.md deleted file mode 100644 index dc07ff82..00000000 --- a/10_Wiki/Topics/Design & Experience/Urban-Planning-Simulations.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F27EBE -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Urban-Planning-Simulations" ---- - -# [[Urban-Planning-Simulations]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Urban-Planning-Simulations.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/User Experience (UX) Design.md b/10_Wiki/Topics/Design & Experience/User Experience (UX) Design.md deleted file mode 100644 index a322a496..00000000 --- a/10_Wiki/Topics/Design & Experience/User Experience (UX) Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A613D6 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - User Experience (UX) Design" ---- - -# [[User Experience (UX) Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/User Experience (UX) Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/User Experience (UX) in Game Design.md b/10_Wiki/Topics/Design & Experience/User Experience (UX) in Game Design.md deleted file mode 100644 index 6b55c693..00000000 --- a/10_Wiki/Topics/Design & Experience/User Experience (UX) in Game Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-94EC93 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - User Experience (UX) in Game Design" ---- - -# [[User Experience (UX) in Game Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/User Experience (UX) in Game Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/User-Experience-Design.md b/10_Wiki/Topics/Design & Experience/User-Experience-Design.md deleted file mode 100644 index dd2b2867..00000000 --- a/10_Wiki/Topics/Design & Experience/User-Experience-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-41A69F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - User-Experience-Design" ---- - -# [[User-Experience-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/User-Experience-Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Variance (Covariance Contravariance Invariance).md b/10_Wiki/Topics/Design & Experience/Variance (Covariance Contravariance Invariance).md deleted file mode 100644 index a600cb20..00000000 --- a/10_Wiki/Topics/Design & Experience/Variance (Covariance Contravariance Invariance).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-372429 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Variance (Covariance Contravariance Invariance)" ---- - -# [[Variance (Covariance Contravariance Invariance)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Variance (Covariance, Contravariance, Invariance).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Variance-(Covariance-Contravariance-Invariance).md b/10_Wiki/Topics/Design & Experience/Variance-(Covariance-Contravariance-Invariance).md deleted file mode 100644 index 818208fa..00000000 --- a/10_Wiki/Topics/Design & Experience/Variance-(Covariance-Contravariance-Invariance).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-84D6F1 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Variance-(Covariance-Contravariance-Invariance)" ---- - -# [[Variance-(Covariance-Contravariance-Invariance)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Variance-(Covariance-Contravariance-Invariance).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Variance-Covariance-Contravariance.md b/10_Wiki/Topics/Design & Experience/Variance-Covariance-Contravariance.md deleted file mode 100644 index a17ca64c..00000000 --- a/10_Wiki/Topics/Design & Experience/Variance-Covariance-Contravariance.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-429958 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Variance-Covariance-Contravariance" ---- - -# [[Variance-Covariance-Contravariance]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Variance-Covariance-Contravariance.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Video Game Design.md b/10_Wiki/Topics/Design & Experience/Video Game Design.md deleted file mode 100644 index abcdb1d6..00000000 --- a/10_Wiki/Topics/Design & Experience/Video Game Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FE3DA6 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Video Game Design" ---- - -# [[Video Game Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Video Game Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Visual-Hierarchy-in-Game-Design.md b/10_Wiki/Topics/Design & Experience/Visual-Hierarchy-in-Game-Design.md deleted file mode 100644 index cd1b1fa7..00000000 --- a/10_Wiki/Topics/Design & Experience/Visual-Hierarchy-in-Game-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-827C0B -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Visual-Hierarchy-in-Game-Design" ---- - -# [[Visual-Hierarchy-in-Game-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Visual-Hierarchy-in-Game-Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Von Neumann-Morgenstern Axioms.md b/10_Wiki/Topics/Design & Experience/Von Neumann-Morgenstern Axioms.md deleted file mode 100644 index 4bd8bec6..00000000 --- a/10_Wiki/Topics/Design & Experience/Von Neumann-Morgenstern Axioms.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E77B4E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Von Neumann-Morgenstern Axioms" ---- - -# [[Von Neumann-Morgenstern Axioms]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Von Neumann-Morgenstern Axioms.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/W3C-Semantic-Web-Standards.md b/10_Wiki/Topics/Design & Experience/W3C-Semantic-Web-Standards.md deleted file mode 100644 index 993cfd07..00000000 --- a/10_Wiki/Topics/Design & Experience/W3C-Semantic-Web-Standards.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CEA1E7 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - W3C-Semantic-Web-Standards" ---- - -# [[W3C-Semantic-Web-Standards]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/W3C-Semantic-Web-Standards.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Wayfinding-Design.md b/10_Wiki/Topics/Design & Experience/Wayfinding-Design.md deleted file mode 100644 index 86fa91fa..00000000 --- a/10_Wiki/Topics/Design & Experience/Wayfinding-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9E4F37 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Wayfinding-Design" ---- - -# [[Wayfinding-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Wayfinding-Design.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Wicked-Problems.md b/10_Wiki/Topics/Design & Experience/Wicked-Problems.md deleted file mode 100644 index 5a9a6689..00000000 --- a/10_Wiki/Topics/Design & Experience/Wicked-Problems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9805C7 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Wicked-Problems" ---- - -# [[Wicked-Problems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Wicked-Problems.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Width-and-Depth-Subtyping.md b/10_Wiki/Topics/Design & Experience/Width-and-Depth-Subtyping.md deleted file mode 100644 index a1fdf8ab..00000000 --- a/10_Wiki/Topics/Design & Experience/Width-and-Depth-Subtyping.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B088E5 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Width-and-Depth-Subtyping" ---- - -# [[Width-and-Depth-Subtyping]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Width-and-Depth-Subtyping.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Zod-Runtime-Validation.md b/10_Wiki/Topics/Design & Experience/Zod-Runtime-Validation.md deleted file mode 100644 index 063a2214..00000000 --- a/10_Wiki/Topics/Design & Experience/Zod-Runtime-Validation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-869303 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Zod-Runtime-Validation" ---- - -# [[Zod-Runtime-Validation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Zod-Runtime-Validation.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/Zod-Schema-Validation.md b/10_Wiki/Topics/Design & Experience/Zod-Schema-Validation.md deleted file mode 100644 index ffbe16b3..00000000 --- a/10_Wiki/Topics/Design & Experience/Zod-Schema-Validation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1B08D2 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Zod-Schema-Validation" ---- - -# [[Zod-Schema-Validation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Zod-Schema-Validation.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/eSports Performance Psychology.md b/10_Wiki/Topics/Design & Experience/eSports Performance Psychology.md deleted file mode 100644 index e1c7cad9..00000000 --- a/10_Wiki/Topics/Design & Experience/eSports Performance Psychology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-29AB4C -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - eSports Performance Psychology" ---- - -# [[eSports Performance Psychology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/eSports Performance Psychology.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/고성능 실시간 상호작용 시스템을 위한 React 기반 게임 엔진 아키텍처.md b/10_Wiki/Topics/Design & Experience/고성능 실시간 상호작용 시스템을 위한 React 기반 게임 엔진 아키텍처.md deleted file mode 100644 index df8384c4..00000000 --- a/10_Wiki/Topics/Design & Experience/고성능 실시간 상호작용 시스템을 위한 React 기반 게임 엔진 아키텍처.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-416C0F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 고성능 실시간 상호작용 시스템을 위한 React 기반 게임 엔진 아키텍처" ---- - -# [[고성능 실시간 상호작용 시스템을 위한 React 기반 게임 엔진 아키텍처]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/고성능 실시간 상호작용 시스템을 위한 React 기반 게임 엔진 아키텍처.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/교육 심리학에서의 보상 설계.md b/10_Wiki/Topics/Design & Experience/교육 심리학에서의 보상 설계.md deleted file mode 100644 index a2234e31..00000000 --- a/10_Wiki/Topics/Design & Experience/교육 심리학에서의 보상 설계.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DD5110 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 교육 심리학에서의 보상 설계" ---- - -# [[교육 심리학에서의 보상 설계]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/교육 심리학에서의 보상 설계.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/교육학의 모델링 전략.md b/10_Wiki/Topics/Design & Experience/교육학의 모델링 전략.md deleted file mode 100644 index 24593bf4..00000000 --- a/10_Wiki/Topics/Design & Experience/교육학의 모델링 전략.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8413FB -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 교육학의 모델링 전략" ---- - -# [[교육학의 모델링 전략]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/교육학의 모델링 전략.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/뇌과학 기반 중독 재활 프로그램.md b/10_Wiki/Topics/Design & Experience/뇌과학 기반 중독 재활 프로그램.md deleted file mode 100644 index 1d5927dc..00000000 --- a/10_Wiki/Topics/Design & Experience/뇌과학 기반 중독 재활 프로그램.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-563E3F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 뇌과학 기반 중독 재활 프로그램" ---- - -# [[뇌과학 기반 중독 재활 프로그램]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/뇌과학 기반 중독 재활 프로그램.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/데이터 지향 설계 (Data-Oriented Design).md b/10_Wiki/Topics/Design & Experience/데이터 지향 설계 (Data-Oriented Design).md deleted file mode 100644 index 801de48b..00000000 --- a/10_Wiki/Topics/Design & Experience/데이터 지향 설계 (Data-Oriented Design).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D9E964 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 데이터 지향 설계 (Data-Oriented Design)" ---- - -# [[데이터 지향 설계 (Data-Oriented Design)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/데이터 지향 설계 (Data-Oriented Design).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/도파민 보상 체계.md b/10_Wiki/Topics/Design & Experience/도파민 보상 체계.md deleted file mode 100644 index 342e0042..00000000 --- a/10_Wiki/Topics/Design & Experience/도파민 보상 체계.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-19D38E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 도파민 보상 체계" ---- - -# [[도파민 보상 체계]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/도파민 보상 체계.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/마이크로 프론트엔드 (Micro Frontends).md b/10_Wiki/Topics/Design & Experience/마이크로 프론트엔드 (Micro Frontends).md deleted file mode 100644 index 20e3c23d..00000000 --- a/10_Wiki/Topics/Design & Experience/마이크로 프론트엔드 (Micro Frontends).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-039AAE -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 마이크로 프론트엔드 (Micro Frontends)" ---- - -# [[마이크로 프론트엔드 (Micro Frontends)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 마이크로 프론트엔드(Micro Frontends)는 백엔드의 마이크로서비스 아키텍처와 유사하게, 방대하고 복잡한 프론트엔드 애플리케이션을 작고 독립적인 여러 모듈로 나누어 개발하는 접근 방식이다 [1]. 이 아키텍처는 비즈니스 기능에 따라 프론트엔드를 분할하여, 각 부분을 전담 팀이 독립적으로 개발, 테스트, 배포할 수 있도록 지원한다 [1]. 기존 모놀리식 구조의 한계를 극복하여 팀의 자율성, 확장성, 유지보수성을 크게 향상시키는 현대 웹 개발의 솔루션이다 [1-3]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[마이크로서비스 아키텍처 (Microservices Architecture)]], [[모놀리식 아키텍처 (Monolithic Architecture)]], [[관심사의 분리 (Separation of Concerns)]], [[웹 컴포넌트 (Web Components)]], [[모듈 페더레이션 (Module federation)]] -- **Projects/Contexts:** [[Spotify의 마이크로 프론트엔드 도입 (스쿼드 모델)]], [[Netflix의 레거시 현대화 및 대시보드]], [[Zalando의 이커머스 모듈 분리]], [[IKEA와 Amazon의 독립적 UX 커스터마이징]] -- **Contradictions/Notes:** 소스에 따르면 마이크로 프론트엔드는 팀의 자율성과 시스템의 유지보수성을 비약적으로 높여주지만, 동시에 여러 마이크로 프론트엔드 번들이 로드되면서 초기 로딩 성능에 오버헤드(Performance Overhead)가 발생하고, 스타일이나 버전 충돌 등 새로운 복잡성이 추가될 수 있다는 단점(과제)을 명확히 동반한다 [5, 9]. 따라서 소규모 프로젝트나 적절한 DevOps 기반이 없는 환경에서는 오버헤드가 장점을 상쇄하므로 피해야 한다고 경고한다 [11]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/마이크로 프론트엔드 (Micro Frontends).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/맞춤형 개별화 학습 설계.md b/10_Wiki/Topics/Design & Experience/맞춤형 개별화 학습 설계.md deleted file mode 100644 index 16456e84..00000000 --- a/10_Wiki/Topics/Design & Experience/맞춤형 개별화 학습 설계.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6B106E -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 맞춤형 개별화 학습 설계" ---- - -# [[맞춤형 개별화 학습 설계]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/맞춤형 개별화 학습 설계.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/모바일 앱 및 웹 인터페이스 설계.md b/10_Wiki/Topics/Design & Experience/모바일 앱 및 웹 인터페이스 설계.md deleted file mode 100644 index 7f6ed961..00000000 --- a/10_Wiki/Topics/Design & Experience/모바일 앱 및 웹 인터페이스 설계.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B1EC47 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 모바일 앱 및 웹 인터페이스 설계" ---- - -# [[모바일 앱 및 웹 인터페이스 설계]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/모바일 앱 및 웹 인터페이스 설계.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/사용성 공학 (Usability Engineering).md b/10_Wiki/Topics/Design & Experience/사용성 공학 (Usability Engineering).md deleted file mode 100644 index d51d4df4..00000000 --- a/10_Wiki/Topics/Design & Experience/사용성 공학 (Usability Engineering).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5E0332 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 사용성 공학 (Usability Engineering)" ---- - -# [[사용성 공학 (Usability Engineering)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/사용성 공학 (Usability Engineering).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/사용자 경험 (UX) 디자인.md b/10_Wiki/Topics/Design & Experience/사용자 경험 (UX) 디자인.md deleted file mode 100644 index 7e17747a..00000000 --- a/10_Wiki/Topics/Design & Experience/사용자 경험 (UX) 디자인.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A602EE -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 사용자 경험 (UX) 디자인" ---- - -# [[사용자 경험 (UX) 디자인]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/사용자 경험 (UX) 디자인.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/사용자 경험 (UX).md b/10_Wiki/Topics/Design & Experience/사용자 경험 (UX).md deleted file mode 100644 index 4bb8c014..00000000 --- a/10_Wiki/Topics/Design & Experience/사용자 경험 (UX).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-121347 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 사용자 경험 (UX)" ---- - -# [[사용자 경험 (UX)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/사용자 경험 (UX).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/사용자 경험 디자인 (UX Design).md b/10_Wiki/Topics/Design & Experience/사용자 경험 디자인 (UX Design).md deleted file mode 100644 index 873b71d8..00000000 --- a/10_Wiki/Topics/Design & Experience/사용자 경험 디자인 (UX Design).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-EA48D7 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 사용자 경험 디자인 (UX Design)" ---- - -# [[사용자 경험 디자인 (UX Design)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/사용자 경험 디자인 (UX Design).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/사회 인지 이론(Social Cognitive Theory).md b/10_Wiki/Topics/Design & Experience/사회 인지 이론(Social Cognitive Theory).md deleted file mode 100644 index 4c6af097..00000000 --- a/10_Wiki/Topics/Design & Experience/사회 인지 이론(Social Cognitive Theory).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-091F7D -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 사회 인지 이론(Social Cognitive Theory)" ---- - -# [[사회 인지 이론(Social Cognitive Theory)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/사회 인지 이론(Social Cognitive Theory).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/상태 관리 최적화 (Zustand Valtio).md b/10_Wiki/Topics/Design & Experience/상태 관리 최적화 (Zustand Valtio).md deleted file mode 100644 index 11a8ee4e..00000000 --- a/10_Wiki/Topics/Design & Experience/상태 관리 최적화 (Zustand Valtio).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C69D47 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 상태 관리 최적화 (Zustand Valtio)" ---- - -# [[상태 관리 최적화 (Zustand Valtio)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/상태 관리 최적화 (Zustand, Valtio).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/아보(Bobo) 인형 실험.md b/10_Wiki/Topics/Design & Experience/아보(Bobo) 인형 실험.md deleted file mode 100644 index 991d3c37..00000000 --- a/10_Wiki/Topics/Design & Experience/아보(Bobo) 인형 실험.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8F65AF -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 아보(Bobo) 인형 실험" ---- - -# [[아보(Bobo) 인형 실험]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/아보(Bobo) 인형 실험.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/응용 행동 분석(ABA)] [행동 경제학] [교육 심리학의 행동주의 모델.md b/10_Wiki/Topics/Design & Experience/응용 행동 분석(ABA)] [행동 경제학] [교육 심리학의 행동주의 모델.md deleted file mode 100644 index 7970d89b..00000000 --- a/10_Wiki/Topics/Design & Experience/응용 행동 분석(ABA)] [행동 경제학] [교육 심리학의 행동주의 모델.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5A7860 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 응용 행동 분석(ABA)] [행동 경제학] [교육 심리학의 행동주의 모델" ---- - -# [[응용 행동 분석(ABA)] [행동 경제학] [교육 심리학의 행동주의 모델]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/응용 행동 분석(ABA)], [행동 경제학], [교육 심리학의 행동주의 모델.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/인간 요인 공학 (Human Factors Engineering).md b/10_Wiki/Topics/Design & Experience/인간 요인 공학 (Human Factors Engineering).md deleted file mode 100644 index b74ad667..00000000 --- a/10_Wiki/Topics/Design & Experience/인간 요인 공학 (Human Factors Engineering).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E342BB -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 인간 요인 공학 (Human Factors Engineering)" ---- - -# [[인간 요인 공학 (Human Factors Engineering)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/인간 요인 공학 (Human Factors Engineering).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/인지 부조화 이론.md b/10_Wiki/Topics/Design & Experience/인지 부조화 이론.md deleted file mode 100644 index 14de5b24..00000000 --- a/10_Wiki/Topics/Design & Experience/인지 부조화 이론.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CE996D -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 인지 부조화 이론" ---- - -# [[인지 부조화 이론]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/인지 부조화 이론.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/인지 부하 이론(Cognitive Load Theory).md b/10_Wiki/Topics/Design & Experience/인지 부하 이론(Cognitive Load Theory).md deleted file mode 100644 index 6d4193c6..00000000 --- a/10_Wiki/Topics/Design & Experience/인지 부하 이론(Cognitive Load Theory).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AA8C86 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 인지 부하 이론(Cognitive Load Theory)" ---- - -# [[인지 부하 이론(Cognitive Load Theory)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/인지 부하 이론(Cognitive Load Theory).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/인지 심리학 (Cognitive Psychology).md b/10_Wiki/Topics/Design & Experience/인지 심리학 (Cognitive Psychology).md deleted file mode 100644 index ec1f1ae8..00000000 --- a/10_Wiki/Topics/Design & Experience/인지 심리학 (Cognitive Psychology).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-30DB87 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 인지 심리학 (Cognitive Psychology)" ---- - -# [[인지 심리학 (Cognitive Psychology)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/인지 심리학 (Cognitive Psychology).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/인지 평가 이론 (Cognitive Evaluation Theory).md b/10_Wiki/Topics/Design & Experience/인지 평가 이론 (Cognitive Evaluation Theory).md deleted file mode 100644 index a77b6760..00000000 --- a/10_Wiki/Topics/Design & Experience/인지 평가 이론 (Cognitive Evaluation Theory).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C0AA85 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 인지 평가 이론 (Cognitive Evaluation Theory)" ---- - -# [[인지 평가 이론 (Cognitive Evaluation Theory)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/인지 평가 이론 (Cognitive Evaluation Theory).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/인터페이스 (Interface).md b/10_Wiki/Topics/Design & Experience/인터페이스 (Interface).md deleted file mode 100644 index 277757f3..00000000 --- a/10_Wiki/Topics/Design & Experience/인터페이스 (Interface).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DEED85 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 인터페이스 (Interface)" ---- - -# [[인터페이스 (Interface)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> TypeScript에서 인터페이스(Interface)는 객체의 형태(Shape)를 정의하고 내부 및 외부 코드 간의 계약(Contract)을 명시하는 구조적 타이핑(Structural Typing) 도구입니다 [1, 2]. 선택적 속성(Optional)과 읽기 전용 속성(Readonly) 등을 통해 유연하면서도 안전한 데이터 구조를 모델링할 수 있습니다 [2-4]. Type Alias와 비교할 때 캐싱 및 평탄화를 통해 컴파일 성능상 이점을 제공하며, 선언 병합(Declaration Merging)이라는 고유한 확장 기능을 갖추고 있습니다 [5-7]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Type Alias]], [[구조적 타이핑 (Structural Typing)]], [[선언 병합 (Declaration Merging)]], [[Interface Segregation Principle (ISP)]], [[객체 타입 (Object Types)]] -- **Projects/Contexts:** [[대규모 TypeScript 애플리케이션 아키텍처 설계]], [[라이브러리 타입 선언 (d.ts) 확장]] -- **Contradictions/Notes:** 인터페이스의 핵심 기능 중 하나인 '선언 병합'에 대하여, 라이브러리 확장을 위해서는 매우 유용하다는 주장이 있지만, 일반적인 애플리케이션 코드베이스에서는 의도치 않게 호환되지 않는 필드가 병합되어 버그를 유발할 수 있으므로 병합 기능이 없는 `type` 사용을 선호하는 개발자들도 다수 존재합니다 [14, 19-22]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/인터페이스 (Interface).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/자기 효능감 (Self-Efficacy).md b/10_Wiki/Topics/Design & Experience/자기 효능감 (Self-Efficacy).md deleted file mode 100644 index b2576745..00000000 --- a/10_Wiki/Topics/Design & Experience/자기 효능감 (Self-Efficacy).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-43FFC2 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 자기 효능감 (Self-Efficacy)" ---- - -# [[자기 효능감 (Self-Efficacy)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/자기 효능감 (Self-Efficacy).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/자기 효능감(Self-Efficacy).md b/10_Wiki/Topics/Design & Experience/자기 효능감(Self-Efficacy).md deleted file mode 100644 index a8a212ae..00000000 --- a/10_Wiki/Topics/Design & Experience/자기 효능감(Self-Efficacy).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C2A5ED -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 자기 효능감(Self-Efficacy)" ---- - -# [[자기 효능감(Self-Efficacy)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/자기 효능감(Self-Efficacy).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/자기조절학습(Self-Regulated Learning).md b/10_Wiki/Topics/Design & Experience/자기조절학습(Self-Regulated Learning).md deleted file mode 100644 index 8b90da51..00000000 --- a/10_Wiki/Topics/Design & Experience/자기조절학습(Self-Regulated Learning).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-282D40 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 자기조절학습(Self-Regulated Learning)" ---- - -# [[자기조절학습(Self-Regulated Learning)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/자기조절학습(Self-Regulated Learning).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/조직 시민 행동 (OCB).md b/10_Wiki/Topics/Design & Experience/조직 시민 행동 (OCB).md deleted file mode 100644 index 8414062e..00000000 --- a/10_Wiki/Topics/Design & Experience/조직 시민 행동 (OCB).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-03634D -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 조직 시민 행동 (OCB)" ---- - -# [[조직 시민 행동 (OCB)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/조직 시민 행동 (OCB).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/조직 행동론의 성과급 체계 분석.md b/10_Wiki/Topics/Design & Experience/조직 행동론의 성과급 체계 분석.md deleted file mode 100644 index a0750139..00000000 --- a/10_Wiki/Topics/Design & Experience/조직 행동론의 성과급 체계 분석.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6AFB3F -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 조직 행동론의 성과급 체계 분석" ---- - -# [[조직 행동론의 성과급 체계 분석]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/조직 행동론의 성과급 체계 분석.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/중독 의학 및 정신 병리학.md b/10_Wiki/Topics/Design & Experience/중독 의학 및 정신 병리학.md deleted file mode 100644 index d4e26051..00000000 --- a/10_Wiki/Topics/Design & Experience/중독 의학 및 정신 병리학.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E50291 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 중독 의학 및 정신 병리학" ---- - -# [[중독 의학 및 정신 병리학]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/중독 의학 및 정신 병리학.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/중독 재활 프로그램.md b/10_Wiki/Topics/Design & Experience/중독 재활 프로그램.md deleted file mode 100644 index 591be115..00000000 --- a/10_Wiki/Topics/Design & Experience/중독 재활 프로그램.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-383266 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 중독 재활 프로그램" ---- - -# [[중독 재활 프로그램]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/중독 재활 프로그램.md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/플레이어 경험 디자인 (Player Experience Design).md b/10_Wiki/Topics/Design & Experience/플레이어 경험 디자인 (Player Experience Design).md deleted file mode 100644 index 42764780..00000000 --- a/10_Wiki/Topics/Design & Experience/플레이어 경험 디자인 (Player Experience Design).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-216B69 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 플레이어 경험 디자인 (Player Experience Design)" ---- - -# [[플레이어 경험 디자인 (Player Experience Design)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/플레이어 경험 디자인 (Player Experience Design).md]] ---- diff --git a/10_Wiki/Topics/Design & Experience/행동 치료 및 인지 행동 치료 (CBT).md b/10_Wiki/Topics/Design & Experience/행동 치료 및 인지 행동 치료 (CBT).md deleted file mode 100644 index 8e0417ea..00000000 --- a/10_Wiki/Topics/Design & Experience/행동 치료 및 인지 행동 치료 (CBT).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-121D57 -category: "[[10_Wiki/💡 Topics/Design & Experience]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 행동 치료 및 인지 행동 치료 (CBT)" ---- - -# [[행동 치료 및 인지 행동 치료 (CBT)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Design & Experience 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/행동 치료 및 인지 행동 치료 (CBT).md]] ---- diff --git a/10_Wiki/Topics/Education & AI/Adaptive-Learning-Systems.md b/10_Wiki/Topics/Education & AI/Adaptive-Learning-Systems.md deleted file mode 100644 index 960a4ff6..00000000 --- a/10_Wiki/Topics/Education & AI/Adaptive-Learning-Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AI-A2C439 -category: "[[10_Wiki/💡 Topics/Education & AI]]" -confidence_score: 0.95 -tags: [] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Batch 9 - Wikified Adaptive-Learning-Systems" ---- - -# [[Adaptive-Learning-Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> - -## 📖 구조화된 지식 (Synthesized Content) - - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 신규 문서로, 기존 정보와의 충돌 분석 예정. -- **정책 변화:** Education & AI 카테고리의 지식 연결망 강화를 위한 표준 위키화 적용. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Adaptive-Learning-Systems.md]] ---- diff --git a/10_Wiki/Topics/Game Design/Cyber-Physical Systems (CPS).md b/10_Wiki/Topics/Game Design/Cyber-Physical Systems (CPS).md deleted file mode 100644 index 70c6e259..00000000 --- a/10_Wiki/Topics/Game Design/Cyber-Physical Systems (CPS).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5C9113 -category: "[[10_Wiki/💡 Topics/Game Design]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cyber-Physical Systems (CPS)" ---- - -# [[Cyber-Physical Systems (CPS)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Game Design 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cyber-Physical Systems (CPS).md]] ---- diff --git a/10_Wiki/Topics/Game Design/Elite-Athletic-Development.md b/10_Wiki/Topics/Game Design/Elite-Athletic-Development.md deleted file mode 100644 index 75e6f6fa..00000000 --- a/10_Wiki/Topics/Game Design/Elite-Athletic-Development.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6DB4E1 -category: "[[10_Wiki/💡 Topics/Game Design]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Elite-Athletic-Development" ---- - -# [[Elite-Athletic-Development]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Game Design 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Elite-Athletic-Development.md]] ---- diff --git a/10_Wiki/Topics/Game Design/Post-Modernist Literature in Gaming.md b/10_Wiki/Topics/Game Design/Post-Modernist Literature in Gaming.md deleted file mode 100644 index dd31bbc1..00000000 --- a/10_Wiki/Topics/Game Design/Post-Modernist Literature in Gaming.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BC9437 -category: "[[10_Wiki/💡 Topics/Game Design]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Post-Modernist Literature in Gaming" ---- - -# [[Post-Modernist Literature in Gaming]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Game Design 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Post-Modernist Literature in Gaming.md]] ---- diff --git a/10_Wiki/Topics/Game Design/Quantum-Game-Theory.md b/10_Wiki/Topics/Game Design/Quantum-Game-Theory.md deleted file mode 100644 index 25053b79..00000000 --- a/10_Wiki/Topics/Game Design/Quantum-Game-Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-238ED6 -category: "[[10_Wiki/💡 Topics/Game Design]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Quantum-Game-Theory" ---- - -# [[Quantum-Game-Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Game Design 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Quantum-Game-Theory.md]] ---- diff --git a/10_Wiki/Topics/Game Design/Roguelike Procedural Generation.md b/10_Wiki/Topics/Game Design/Roguelike Procedural Generation.md deleted file mode 100644 index 020d8e6c..00000000 --- a/10_Wiki/Topics/Game Design/Roguelike Procedural Generation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-537B8F -category: "[[10_Wiki/💡 Topics/Game Design]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Roguelike Procedural Generation" ---- - -# [[Roguelike Procedural Generation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Game Design 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Roguelike Procedural Generation.md]] ---- diff --git a/10_Wiki/Topics/Game Design/Systems Biology.md b/10_Wiki/Topics/Game Design/Systems Biology.md deleted file mode 100644 index e8669e34..00000000 --- a/10_Wiki/Topics/Game Design/Systems Biology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2A4288 -category: "[[10_Wiki/💡 Topics/Game Design]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Systems Biology" ---- - -# [[Systems Biology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Game Design 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Systems Biology.md]] ---- diff --git a/10_Wiki/Topics/Game Design/인문학적 게임 비평 및 서사학.md b/10_Wiki/Topics/Game Design/인문학적 게임 비평 및 서사학.md deleted file mode 100644 index 300a3343..00000000 --- a/10_Wiki/Topics/Game Design/인문학적 게임 비평 및 서사학.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AC421C -category: "[[10_Wiki/💡 Topics/Game Design]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 인문학적 게임 비평 및 서사학" ---- - -# [[인문학적 게임 비평 및 서사학]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Game Design 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/인문학적 게임 비평 및 서사학.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/2026-04-15.md b/10_Wiki/Topics/General Knowledge/2026-04-15.md deleted file mode 100644 index 1a5b4941..00000000 --- a/10_Wiki/Topics/General Knowledge/2026-04-15.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D3F316 -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 2026-04-15" ---- - -# [[2026-04-15]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/2026-04-15.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/Blog_Content_Rules.md b/10_Wiki/Topics/General Knowledge/Blog_Content_Rules.md deleted file mode 100644 index 571b89bf..00000000 --- a/10_Wiki/Topics/General Knowledge/Blog_Content_Rules.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1FF145 -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Blog_Content_Rules" ---- - -# [[Blog_Content_Rules]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Blog_Content_Rules.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/Blog_Title_Rules.md b/10_Wiki/Topics/General Knowledge/Blog_Title_Rules.md deleted file mode 100644 index ac69aaf4..00000000 --- a/10_Wiki/Topics/General Knowledge/Blog_Title_Rules.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-566F32 -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Blog_Title_Rules" ---- - -# [[Blog_Title_Rules]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Blog_Title_Rules.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/Brand-Identity-Management.md b/10_Wiki/Topics/General Knowledge/Brand-Identity-Management.md deleted file mode 100644 index cf5e53d9..00000000 --- a/10_Wiki/Topics/General Knowledge/Brand-Identity-Management.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F8EDF9 -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Brand-Identity-Management" ---- - -# [[Brand-Identity-Management]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Brand-Identity-Management.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/Code Splitting Lazy Loading.md b/10_Wiki/Topics/General Knowledge/Code Splitting Lazy Loading.md deleted file mode 100644 index 8f70d49f..00000000 --- a/10_Wiki/Topics/General Knowledge/Code Splitting Lazy Loading.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B933B1 -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Code Splitting Lazy Loading" ---- - -# [[Code Splitting Lazy Loading]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Code Splitting & Lazy Loading.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/Description-Logics.md b/10_Wiki/Topics/General Knowledge/Description-Logics.md deleted file mode 100644 index 5b16b54e..00000000 --- a/10_Wiki/Topics/General Knowledge/Description-Logics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-088907 -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Description-Logics" ---- - -# [[Description-Logics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Description-Logics.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/Dopamine Signaling.md b/10_Wiki/Topics/General Knowledge/Dopamine Signaling.md deleted file mode 100644 index cd95038a..00000000 --- a/10_Wiki/Topics/General Knowledge/Dopamine Signaling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C204E9 -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Dopamine Signaling" ---- - -# [[Dopamine Signaling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Dopamine Signaling.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/Markov-Random-Fields.md b/10_Wiki/Topics/General Knowledge/Markov-Random-Fields.md deleted file mode 100644 index 0105ada7..00000000 --- a/10_Wiki/Topics/General Knowledge/Markov-Random-Fields.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B14FE1 -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Markov-Random-Fields" ---- - -# [[Markov-Random-Fields]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Markov-Random-Fields.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/Metaverse Aesthetics.md b/10_Wiki/Topics/General Knowledge/Metaverse Aesthetics.md deleted file mode 100644 index a3b2f761..00000000 --- a/10_Wiki/Topics/General Knowledge/Metaverse Aesthetics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-30803A -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Metaverse Aesthetics" ---- - -# [[Metaverse Aesthetics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Metaverse Aesthetics.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/Model-Free RL vs Model-Based RL.md b/10_Wiki/Topics/General Knowledge/Model-Free RL vs Model-Based RL.md deleted file mode 100644 index 1ad169a1..00000000 --- a/10_Wiki/Topics/General Knowledge/Model-Free RL vs Model-Based RL.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B8C5BC -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Model-Free RL vs Model-Based RL" ---- - -# [[Model-Free RL vs Model-Based RL]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Model-Free RL vs Model-Based RL.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/Motion-Capture-Retargeting.md b/10_Wiki/Topics/General Knowledge/Motion-Capture-Retargeting.md deleted file mode 100644 index 7253426f..00000000 --- a/10_Wiki/Topics/General Knowledge/Motion-Capture-Retargeting.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-34FAC7 -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Motion-Capture-Retargeting" ---- - -# [[Motion-Capture-Retargeting]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Motion-Capture-Retargeting.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/Mycological Horror.md b/10_Wiki/Topics/General Knowledge/Mycological Horror.md deleted file mode 100644 index 6cd5ba75..00000000 --- a/10_Wiki/Topics/General Knowledge/Mycological Horror.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1D7BB8 -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Mycological Horror" ---- - -# [[Mycological Horror]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Mycological Horror.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/OffscreenCanvas (멀티스레딩).md b/10_Wiki/Topics/General Knowledge/OffscreenCanvas (멀티스레딩).md deleted file mode 100644 index 6425c663..00000000 --- a/10_Wiki/Topics/General Knowledge/OffscreenCanvas (멀티스레딩).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-811DEC -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - OffscreenCanvas (멀티스레딩)" ---- - -# [[OffscreenCanvas (멀티스레딩)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/OffscreenCanvas (멀티스레딩).md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/README.md b/10_Wiki/Topics/General Knowledge/README.md deleted file mode 100644 index 571ee145..00000000 --- a/10_Wiki/Topics/General Knowledge/README.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-698D8B -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - README" ---- - -# [[README]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/README.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/Variance-Rules.md b/10_Wiki/Topics/General Knowledge/Variance-Rules.md deleted file mode 100644 index 10886599..00000000 --- a/10_Wiki/Topics/General Knowledge/Variance-Rules.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-85151B -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Variance-Rules" ---- - -# [[Variance-Rules]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Variance-Rules.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/마크-스위프-컴팩트(Mark-Sweep-Compact).md b/10_Wiki/Topics/General Knowledge/마크-스위프-컴팩트(Mark-Sweep-Compact).md deleted file mode 100644 index 49ff4761..00000000 --- a/10_Wiki/Topics/General Knowledge/마크-스위프-컴팩트(Mark-Sweep-Compact).md +++ /dev/null @@ -1,40 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F94637 -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 마크-스위프-컴팩트(Mark-Sweep-Compact)" ---- - -# [[마크-스위프-컴팩트(Mark-Sweep-Compact)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **마크(Mark) 단계:** - 가비지 컬렉터가 힙 내부의 모든 객체를 탐색하여 사용 중인 라이브 객체와 그렇지 않은 객체를 식별하는 단계이다 [8, 9]. 루트(Root) 객체부터 시작하여 포인터로 연결된 객체들을 깊이 우선 탐색(DFS) 방식으로 쫓아가며 도달 가능성을 확인한다 [10, 11]. 이 과정에서 객체들은 세 가지 색상(Tri-color)으로 분류되어 마킹된다 [4, 8]. 가비지 컬렉터가 아직 발견하지 못한 객체는 '흰색(White)', 발견되었지만 이웃 객체들의 처리가 완료되지 않은 상태는 '회색(Grey)', 그리고 객체 자신과 그 이웃까지 모두 처리가 완료된 상태는 '검은색(Black)'으로 표시된다 [8, 12]. - -* **스위프(Sweep) 단계:** - 마킹 단계가 끝난 후에도 도달할 수 없어 '흰색'으로 남아있는 데드 객체들의 연속된 범위를 스캔하는 단계이다 [4, 13, 14]. 가비지 컬렉터는 이 데드 객체 영역을 빈 공간(Free spaces)으로 변환하고 이를 가용 목록(Free lists)에 추가한다 [13, 14]. 가용 목록은 크기별(Small, Medium, Large 등)로 구분되어 관리되며, 이후 새로운 객체를 할당하거나 스캐빈저(Scavenger) 알고리즘에 의해 살아남은 객체들이 이전 세대(Old space)로 승격(Promotion)될 때 사용된다 [13, 14]. - -* **컴팩트(Compact) 단계:** - 힙 메모리의 단편화(Fragmentation)를 줄이기 위해, 빈 공간이 많아 파편화된 페이지에서 라이브 객체들을 가용 공간이나 완전히 새로운 페이지로 이주시키는 과정이다 [2, 15, 16]. 객체가 새로운 위치로 복사되면, 원본 객체의 첫 번째 워드에 새로운 위치를 가리키는 포워딩 주소(Forwarding address)가 남겨진다 [15, 17]. 대규모 힙 공간에서 객체를 이동시키고 이를 참조하는 모든 포인터를 일일이 업데이트하는 작업은 계산 비용이 크기 때문에, 모든 스위프 주기마다 컴팩트가 일어나는 것은 아니며 메모리 파편화가 심각할 때 선택적으로 수행된다 [7, 18]. - -* **성능 및 최적화 전략 (Orinoco 및 동시성 기법):** - 마크-스위프-컴팩트는 수백 메가바이트의 데이터를 처리하므로 애플리케이션 실행을 멈추는 긴 중단 시간(수백 밀리초 단위)을 초래할 수 있다 [2, 5]. V8 엔진의 Orinoco 프로젝트 등 최신 구현체들은 이를 해결하기 위해 백그라운드 스레드를 이용해 자바스크립트 실행과 동시에 마킹 작업을 수행하는 동시 마킹(Concurrent marking), 작업을 잘게 쪼개어 배분하는 점진적 마킹(Incremental marking), 그리고 당장 빈 공간이 필요해질 때까지 스위핑을 늦추는 지연 스위핑(Lazy sweeping) 기법 등을 도입하여 메인 스레드의 부담을 최소화하고 있다 [5, 19-21]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[가비지 컬렉션(Garbage Collection)]], [[이전 세대(Old Generation/Space)]], [[스캐빈저(Scavenger)]], [[동시성 및 점진적 마킹(Concurrent & Incremental Marking)]] -- **Projects/Contexts:** [[V8 자바스크립트 엔진]], [[자바 가상 머신(JVM)]], [[Orinoco 프로젝트]] -- **Contradictions/Notes:** 소스 전반에서 마크-스위프-컴팩트의 기본 원리에는 차이가 없으나, 작동 환경(예: V8 엔진 대 IBM JVM)에 따라 이 알고리즘을 트리거하는 조건이나 조정 가능한 커맨드라인 옵션(`-Xcompactgc`, `--trace-gc` 등)은 구체적인 구현체에 따라 각기 다르게 제어된다는 점이 확인된다 [18, 22]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/마크-스위프-컴팩트(Mark-Sweep-Compact).md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/무제.md b/10_Wiki/Topics/General Knowledge/무제.md deleted file mode 100644 index afe88b10..00000000 --- a/10_Wiki/Topics/General Knowledge/무제.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D69A80 -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 무제" ---- - -# [[무제]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/무제.md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/이벤트 포워딩(Event Forwarding).md b/10_Wiki/Topics/General Knowledge/이벤트 포워딩(Event Forwarding).md deleted file mode 100644 index 6ac7a117..00000000 --- a/10_Wiki/Topics/General Knowledge/이벤트 포워딩(Event Forwarding).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-797EC7 -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 이벤트 포워딩(Event Forwarding)" ---- - -# [[이벤트 포워딩(Event Forwarding)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/이벤트 포워딩(Event Forwarding).md]] ---- diff --git a/10_Wiki/Topics/General Knowledge/환영합니다.md b/10_Wiki/Topics/General Knowledge/환영합니다.md deleted file mode 100644 index f6002d14..00000000 --- a/10_Wiki/Topics/General Knowledge/환영합니다.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BD84CA -category: "[[10_Wiki/💡 Topics/General Knowledge]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 환영합니다" ---- - -# [[환영합니다]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** General Knowledge 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/환영합니다!.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/3D Gaussian Splatting (3DGS).md b/10_Wiki/Topics/Graphics & Performance/3D Gaussian Splatting (3DGS).md deleted file mode 100644 index 807a59d4..00000000 --- a/10_Wiki/Topics/Graphics & Performance/3D Gaussian Splatting (3DGS).md +++ /dev/null @@ -1,37 +0,0 @@ ---- -id: P-REINFORCE-AI-AC09DA -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.95 -tags: [] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Batch 9 - Wikified 3D Gaussian Splatting (3DGS)" ---- - -# [[3D Gaussian Splatting (3DGS)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 3D Gaussian Splatting (3DGS)은 3D 스플랫(splat)들로 구성된 명시적 표현을 사용하여 고품질의 실시간 렌더링을 구현하는 혁신적인 기법이다 [1, 2]. 각 3D 가우시안은 중심 위치, 3D 공분산 행렬, 최대 불투명도, 그리고 구면 조화(Spherical Harmonics) 계수를 활용한 시점 종속적 색상으로 정의된다 [2]. 올바른 렌더링을 위해 카메라로부터의 거리를 기준으로 가우시안들을 뒤에서 앞으로 정렬(depth sorting)하고 알파 블렌딩(alpha-blending)하는 과정이 필수적이며 [3, 4], 미분 가능한 특성 덕분에 브라우저 환경에서 고품질 재구성 및 생성적 3D 모델링에 활발히 응용되고 있다 [1]. - -## 📖 구조화된 지식 (Synthesized Content) -- **기본 동작 원리와 렌더링 구조:** - 3DGS는 장면을 구성하는 3D 가우시안들을 2D 이미지 평면으로 투영하여 렌더링을 수행한다 [2, 4]. 투영된 2D 공분산 행렬과 학습된 불투명도를 기반으로 각 픽셀에 대한 알파 기여도를 계산하며, 카메라 시점 방향에 따른 구면 조화 함수를 평가하여 반사 효과 및 최종 색상을 결정한다 [2, 4]. 투명도를 올바르게 처리하기 위해 수백만 개의 가우시안을 매 프레임마다 카메라와의 거리에 따라 뒤에서 앞으로 정렬해야 하는 막대한 연산이 요구된다 [3-5]. - -- **WebGL 환경에서의 성능 한계 및 오류:** - 기존의 WebGL API는 범용적인 GPU 연산(Compute) 기능을 지원하지 않아, 3DGS의 핵심인 깊이 정렬 작업을 JavaScript나 WebAssembly를 통해 CPU에 오프로드해야 한다 [6-8]. 이는 CPU가 정렬을 마친 뒤 큰 버퍼를 GPU로 업로드하고 드로우 콜을 발생시켜야 하는 심각한 동기화 병목 현상을 유발하며, 장면이 복잡해질수록 16.67ms의 프레임 예산을 맞추지 못하게 만든다 [6, 8]. 실제로 CesiumJS와 같은 시스템에서는 대규모 데이터셋 처리 시 1프레임 내에 정렬이 끝나지 않아 여러 개의 Promise 체인이 서로 간섭하는 경합 조건(race condition)이 발생하며, 이로 인해 모델이 깜빡이거나 렌더링되지 않는 WebGL 오류 및 마이크로 스터터링(micro-stuttering)이 보고되었다 [9-12]. - -- **WebGPU 및 WebSplatter를 통한 GPU 파이프라인 최적화:** - WebGL의 구조적 한계를 극복하기 위해 WebGPU의 컴퓨트 셰이더(Compute Shader)를 활용하는 접근법이 대두되었다 [6, 7, 13]. 대표적으로 WebSplatter 프레임워크는 깊이 정렬과 시점 적응형 평가를 모두 GPU 연산으로 이전하여 CPU-GPU 간의 동기화 오버헤드를 제거하였다 [6, 14]. 특히 WebGPU 환경에 글로벌 아토믹(global atomics) 기능이 부족한 점을 우회하기 위해, 하드웨어 스케줄링에 구애받지 않는 '대기 없는(wait-free) 계층적 기수 정렬(radix sort)' 알고리즘을 도입하였다 [6, 15, 16]. 또한, 래스터화 이전 단계에서 불투명도 및 시야 범위(Bounding Box)를 기준으로 화면 밖 스플랫을 선제적으로 제거하는 동적 컬링(culling)을 적용하여 메모리 대역폭과 오버드로우를 크게 줄였다 [15, 17-19]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 신규 문서로, 기존 정보와의 충돌 분석 예정. -- **정책 변화:** Graphics & Performance 카테고리의 지식 연결망 강화를 위한 표준 위키화 적용. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[WebGPU]], [[WebGL]], [[Compute Shader]] -- **Projects/Contexts:** [[WebSplatter]], [[CesiumJS]] -- **Contradictions/Notes:** WebGL 기반의 기존 3DGS 구현은 정렬 작업을 CPU에 의존하므로 동기화 병목과 프레임 지연이 발생하지만, WebGPU 기반의 WebSplatter는 파이프라인 전체를 GPU에서 병렬 연산함으로써 기존 웹 뷰어 대비 최대 4.5배의 렌더링 속도 향상과 낮은 메모리 소모를 달성한다 [6, 8, 15, 20]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/3D Gaussian Splatting (3DGS).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Agency-Narrative Integration.md b/10_Wiki/Topics/Graphics & Performance/Agency-Narrative Integration.md deleted file mode 100644 index 3567a743..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Agency-Narrative Integration.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2E74EC -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Agency-Narrative Integration" ---- - -# [[Agency-Narrative Integration]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Agency-Narrative Integration.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Apple-Human-Interface-Guidelines.md b/10_Wiki/Topics/Graphics & Performance/Apple-Human-Interface-Guidelines.md deleted file mode 100644 index d9651b9b..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Apple-Human-Interface-Guidelines.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D4F8B4 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Apple-Human-Interface-Guidelines" ---- - -# [[Apple-Human-Interface-Guidelines]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Apple-Human-Interface-Guidelines.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Augmented Reality (AR).md b/10_Wiki/Topics/Graphics & Performance/Augmented Reality (AR).md deleted file mode 100644 index 33a973a6..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Augmented Reality (AR).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-003033 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Augmented Reality (AR)" ---- - -# [[Augmented Reality (AR)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Augmented Reality (AR).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Augmented Reality Navigation Systems.md b/10_Wiki/Topics/Graphics & Performance/Augmented Reality Navigation Systems.md deleted file mode 100644 index ad0b82ba..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Augmented Reality Navigation Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-054006 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Augmented Reality Navigation Systems" ---- - -# [[Augmented Reality Navigation Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Augmented Reality Navigation Systems.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Autonomous Vehicle Perception.md b/10_Wiki/Topics/Graphics & Performance/Autonomous Vehicle Perception.md deleted file mode 100644 index 93024317..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Autonomous Vehicle Perception.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A226DB -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Autonomous Vehicle Perception" ---- - -# [[Autonomous Vehicle Perception]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Autonomous Vehicle Perception.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/BatchedMesh.md b/10_Wiki/Topics/Graphics & Performance/BatchedMesh.md deleted file mode 100644 index b97497a1..00000000 --- a/10_Wiki/Topics/Graphics & Performance/BatchedMesh.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AADCDE -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - BatchedMesh" ---- - -# [[BatchedMesh]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **동작 원리와 초기화:** - BatchedMesh는 렌더링 시 CPU의 명령 발행 횟수(드로우 콜)를 줄이기 위한 기술입니다. 초기화 시 `maxInstanceCount`(최대 인스턴스 수), `maxVertexCount`(최대 정점 수), `maxIndexCount`(최대 인덱스 수)와 인스턴스들이 공유할 단일 `material`을 정의합니다. 이후 여러 지오메트리를 추가(`addGeometry`)하고, 개별 인스턴스에 고유한 변환 행렬(Matrix)을 적용(`setMatrixAt`)하여 위치, 회전, 크기를 설정할 수 있습니다 [1-6]. - -* **InstancedMesh와의 차이점:** - InstancedMesh가 `instancedDraw`를 사용하여 동일한 지오메트리만을 수없이 복제하는 방식이라면, BatchedMesh는 `WEBGL_multi_draw` 확장(WebGPU에서는 indirect draw)을 활용하여 서로 다른 지오메트리를 한 번에 그릴 수 있습니다. 또한 `setVisibleAt` 메서드를 제공하여 개별 객체의 가시성(Visibility)을 제어할 수 있는 유연성을 갖추고 있습니다 [7-11]. - -* **성능 한계 및 병목 현상:** - BatchedMesh는 소규모 또는 다양한 지오메트리가 혼합된 씬(예: 각기 다른 모양의 수많은 벽이나 식물들)에서는 강력하지만, 확장성 측면에서 뚜렷한 한계를 보입니다. - * **버퍼 패킹 및 통신 오버헤드:** 인스턴스가 수만에서 수십만 개(예: 200,000개)로 늘어나면 GPU로 전송할 드로우 시작 지점 및 개수 버퍼 데이터가 커집니다. 매 프레임 이를 업데이트하고 `multiDrawElementsWEBGL`을 호출하는 데 막대한 CPU 자원이 소모됩니다 [11-14]. - * **정렬 및 컬링 비용:** 시야 절두체 컬링(`perObjectFrustumCulled`)과 투명도 처리를 위한 객체 정렬(`sortObjects`)을 수행할 때, 이 연산이 CPU의 메인 스레드를 장악하여 프레임 속도(FPS)를 60FPS에서 10~20FPS 수준으로 급락시키는 병목을 유발합니다 [13, 15-17]. - -* **최적화 적용 전략:** - 동적인 씬에서 고유한(Unique) 객체가 1,000개 이상일 때는 BatchedMesh(`multiDrawElementsWEBGL`)가 적합하지만, 고유 객체가 적고 인스턴스만 수십만 개인 경우에는 InstancedMesh(`drawElementsInstanced`)를 사용하는 것이 훨씬 효율적입니다 [18]. 모델의 삼각형 수가 천만 개를 넘어가거나 고정된 구조물이라면 지오메트리를 하나로 병합(Merging)하는 방식이 CPU 점유율 방어 측면에서 BatchedMesh보다 성능이 우수할 수 있습니다 [19-21]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[InstancedMesh]], [[Draw Call Optimization]], [[WEBGL_multi_draw]], [[Frustum Culling]] -- **Projects/Contexts:** [[Three.js 렌더링 최적화]], [[대규모 3D 건축 모델(BIM) 시각화]], [[InstancedMesh 사용 시 드로우 콜 최적화의 한계점 사례 연구]] -- **Contradictions/Notes:** 소스에서는 BatchedMesh가 여러 지오메트리를 한 번에 그려 드로우 콜을 획기적으로 줄여준다고 설명하지만, 동시에 인스턴스 수가 10만 개 이상이거나 1,200만 폴리곤 이상의 환경에서는 CPU의 버퍼 패킹 및 다중 드로우 처리 부하로 인해 병합된 일반 메쉬(Merged Mesh)나 InstancedMesh보다 FPS가 30~50% 이상 떨어지는 모순적 한계를 지니고 있음을 실증 사례로 지적합니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/BatchedMesh.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Behavioral Economics in Digital Ecosystems.md b/10_Wiki/Topics/Graphics & Performance/Behavioral Economics in Digital Ecosystems.md deleted file mode 100644 index d31d7f36..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Behavioral Economics in Digital Ecosystems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CAA259 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Behavioral Economics in Digital Ecosystems" ---- - -# [[Behavioral Economics in Digital Ecosystems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Behavioral Economics in Digital Ecosystems.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Behavioral Economics.md b/10_Wiki/Topics/Graphics & Performance/Behavioral Economics.md deleted file mode 100644 index bb4e6489..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Behavioral Economics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-612A46 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Behavioral Economics" ---- - -# [[Behavioral Economics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Behavioral Economics.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Bio-mechanical-Modeling.md b/10_Wiki/Topics/Graphics & Performance/Bio-mechanical-Modeling.md deleted file mode 100644 index fe832a77..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Bio-mechanical-Modeling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8DE8EF -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Bio-mechanical-Modeling" ---- - -# [[Bio-mechanical-Modeling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Bio-mechanical-Modeling.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Bioregionalism.md b/10_Wiki/Topics/Graphics & Performance/Bioregionalism.md deleted file mode 100644 index 67130871..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Bioregionalism.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-01D600 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Bioregionalism" ---- - -# [[Bioregionalism]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Bioregionalism.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Bounding Volume Hierarchy (BVH).md b/10_Wiki/Topics/Graphics & Performance/Bounding Volume Hierarchy (BVH).md deleted file mode 100644 index 9c460482..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Bounding Volume Hierarchy (BVH).md +++ /dev/null @@ -1,33 +0,0 @@ ---- -id: P-REINFORCE-AUTO-68A235 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Bounding Volume Hierarchy (BVH)" ---- - -# [[Bounding Volume Hierarchy (BVH)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **빠른 레이캐스팅과 공간 쿼리:** `three-mesh-bvh`와 같은 구현체는 Three.js 환경에서 8만 개 이상의 폴리곤에 대한 레이캐스팅을 60fps의 속도로 원활하게 수행할 수 있도록 지원합니다 [4]. 이는 복잡한 지오메트리를 가진 인터랙티브 씬이나 다수의 레이캐스트가 발생하는 상황에서 성능 저하를 방지하는 강력한 수단입니다 [4, 7]. -- **효율적인 공간 분할과 포괄적 최적화:** 잘 설계된 BVH 스키마는 공간을 효율적으로 분할하고 인덱싱하여, 렌더링뿐만 아니라 조명 및 그림자 계산, 충돌 감지(Collisions), 그리고 에셋의 다운로드와 메모리 로딩 및 폐기에 이르는 전방위적인 최적화를 주도할 수 있습니다 [3]. 특히 정적인(static) 객체에 대해 초기화 시점에 BVH를 계산해두면, CPU 연산 단계에서 해당 객체들을 화면에 그릴지(Culling) 여부를 극도로 빠르고 효율적으로 판별할 수 있습니다 [6, 8]. -- **InstancedMesh 환경에서의 적용:** 인스턴싱 기술(예: `InstancedMesh2` 라이브러리)에 BVH 형태의 공간 인덱스를 결합하면 개별 인스턴스에 대한 매우 빠른 레이캐스팅과 프러스텀 컬링을 구현할 수 있습니다 [5, 9, 10]. 기존 `InstancedMesh` 자체에 대해서는 전체 인스턴스 세트가 아닌 내부의 개별 지오메트리 단위로 BVH 기반 레이캐스팅을 수행하므로, 지오메트리에 대한 바운드 트리(bounds tree)를 생성하여 적용해야 합니다 [11, 12]. -- **도입 시의 기술적 난제와 트레이드오프:** 대규모 인스턴스 씬에서 여러 객체가 겹쳐 있거나 가려진 객체를 정밀하게 선택(GPU Picking의 한계 극복)하기 위해서는 BVH와 같은 정교한 공간 분할 자료구조를 별도로 구축해야 합니다 [2]. 하지만 이러한 고도화된 자료구조를 추가로 구축하는 과정은 `InstancedMesh`가 본래 제공하는 '사용의 단순함'이라는 장점을 퇴색시킬 수 있다는 구조적 한계를 동반합니다 [2]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Raycasting]], [[Frustum Culling]], [[InstancedMesh]], [[Spatial Partitioning]] -- **Projects/Contexts:** [[three-mesh-bvh]], [[InstancedMesh2]] -- **Contradictions/Notes:** BVH 모델을 씬에서 직접 시각화하여 확인하고자 할 때, 최신 라이브러리 환경에서는 기존에 사용되던 `MeshBVHVisualizer`가 더 이상 지원되지 않으므로(deprecated) 반드시 문서를 참조하여 `MeshBVHHelper`를 사용해야 합니다 [12]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Bounding Volume Hierarchy (BVH).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Cel-Shading-Techniques.md b/10_Wiki/Topics/Graphics & Performance/Cel-Shading-Techniques.md deleted file mode 100644 index 838bf8df..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Cel-Shading-Techniques.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6E2113 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cel-Shading-Techniques" ---- - -# [[Cel-Shading-Techniques]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cel-Shading-Techniques.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Cellular Automata.md b/10_Wiki/Topics/Graphics & Performance/Cellular Automata.md deleted file mode 100644 index 5765d0e0..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Cellular Automata.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5EDE2E -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cellular Automata" ---- - -# [[Cellular Automata]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cellular Automata.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Cognitive Load Theory.md b/10_Wiki/Topics/Graphics & Performance/Cognitive Load Theory.md deleted file mode 100644 index ecd3a5f1..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Cognitive Load Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-29F633 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cognitive Load Theory" ---- - -# [[Cognitive Load Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cognitive Load Theory.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Cognitive-Load-Theory.md b/10_Wiki/Topics/Graphics & Performance/Cognitive-Load-Theory.md deleted file mode 100644 index ff8f722c..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Cognitive-Load-Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B1006C -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cognitive-Load-Theory" ---- - -# [[Cognitive-Load-Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cognitive-Load-Theory.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Collaborative Learning Environments.md b/10_Wiki/Topics/Graphics & Performance/Collaborative Learning Environments.md deleted file mode 100644 index fa20385d..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Collaborative Learning Environments.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-617D95 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Collaborative Learning Environments" ---- - -# [[Collaborative Learning Environments]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Collaborative Learning Environments.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Competitive Esports Ecosystems.md b/10_Wiki/Topics/Graphics & Performance/Competitive Esports Ecosystems.md deleted file mode 100644 index 2a410c42..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Competitive Esports Ecosystems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-69DA0B -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Competitive Esports Ecosystems" ---- - -# [[Competitive Esports Ecosystems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Competitive Esports Ecosystems.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Complexity-Theory.md b/10_Wiki/Topics/Graphics & Performance/Complexity-Theory.md deleted file mode 100644 index bcc84c77..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Complexity-Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F606A9 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Complexity-Theory" ---- - -# [[Complexity-Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Complexity-Theory.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Computational Ecology.md b/10_Wiki/Topics/Graphics & Performance/Computational Ecology.md deleted file mode 100644 index 7b0b5354..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Computational Ecology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-563573 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Computational Ecology" ---- - -# [[Computational Ecology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Computational Ecology.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Computer-Vision-Synthesis.md b/10_Wiki/Topics/Graphics & Performance/Computer-Vision-Synthesis.md deleted file mode 100644 index 59af25e9..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Computer-Vision-Synthesis.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C1EBB8 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Computer-Vision-Synthesis" ---- - -# [[Computer-Vision-Synthesis]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Computer-Vision-Synthesis.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Creative Process.md b/10_Wiki/Topics/Graphics & Performance/Creative Process.md deleted file mode 100644 index 8ae7245a..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Creative Process.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DF48CA -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Creative Process" ---- - -# [[Creative Process]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Creative Process.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Critical-Play.md b/10_Wiki/Topics/Graphics & Performance/Critical-Play.md deleted file mode 100644 index e42bd858..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Critical-Play.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0C480C -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Critical-Play" ---- - -# [[Critical-Play]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Critical-Play.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Cultural-Heritage-Informatics.md b/10_Wiki/Topics/Graphics & Performance/Cultural-Heritage-Informatics.md deleted file mode 100644 index 93a5c5c7..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Cultural-Heritage-Informatics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-90A1AA -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cultural-Heritage-Informatics" ---- - -# [[Cultural-Heritage-Informatics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cultural-Heritage-Informatics.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/CyArk.md b/10_Wiki/Topics/Graphics & Performance/CyArk.md deleted file mode 100644 index c7bee9bb..00000000 --- a/10_Wiki/Topics/Graphics & Performance/CyArk.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-78F905 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - CyArk" ---- - -# [[CyArk]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/CyArk.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Cybertext Theory.md b/10_Wiki/Topics/Graphics & Performance/Cybertext Theory.md deleted file mode 100644 index 024f5695..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Cybertext Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-896181 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cybertext Theory" ---- - -# [[Cybertext Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cybertext Theory.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/DBpedia.md b/10_Wiki/Topics/Graphics & Performance/DBpedia.md deleted file mode 100644 index a4e39c25..00000000 --- a/10_Wiki/Topics/Graphics & Performance/DBpedia.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0B4232 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - DBpedia" ---- - -# [[DBpedia]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/DBpedia.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Digital Sandbox Theory.md b/10_Wiki/Topics/Graphics & Performance/Digital Sandbox Theory.md deleted file mode 100644 index d022cb94..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Digital Sandbox Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A1EFBC -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Digital Sandbox Theory" ---- - -# [[Digital Sandbox Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Digital Sandbox Theory.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Digital Twin Visualization.md b/10_Wiki/Topics/Graphics & Performance/Digital Twin Visualization.md deleted file mode 100644 index fb69fef0..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Digital Twin Visualization.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F0B4B1 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Digital Twin Visualization" ---- - -# [[Digital Twin Visualization]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Digital Twin Visualization.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Drama-Management-Systems.md b/10_Wiki/Topics/Graphics & Performance/Drama-Management-Systems.md deleted file mode 100644 index 8f21b4f8..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Drama-Management-Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6D19F6 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Drama-Management-Systems" ---- - -# [[Drama-Management-Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Drama-Management-Systems.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Dual-Track-Agile.md b/10_Wiki/Topics/Graphics & Performance/Dual-Track-Agile.md deleted file mode 100644 index 439a5702..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Dual-Track-Agile.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-92B7C5 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Dual-Track-Agile" ---- - -# [[Dual-Track-Agile]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Dual-Track-Agile.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Duolingo (Language Learning)] [Fitness Tracking Apps (Strava_Fitbit)] [EdTech Gamification] [FinTech Engagement Strategies.md b/10_Wiki/Topics/Graphics & Performance/Duolingo (Language Learning)] [Fitness Tracking Apps (Strava_Fitbit)] [EdTech Gamification] [FinTech Engagement Strategies.md deleted file mode 100644 index 5525c230..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Duolingo (Language Learning)] [Fitness Tracking Apps (Strava_Fitbit)] [EdTech Gamification] [FinTech Engagement Strategies.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-259FF2 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Duolingo (Language Learning)] [Fitness Tracking Apps (Strava_Fitbit)] [EdTech Gamification] [FinTech Engagement Strategies" ---- - -# [[Duolingo (Language Learning)] [Fitness Tracking Apps (Strava_Fitbit)] [EdTech Gamification] [FinTech Engagement Strategies]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Duolingo (Language Learning)], [Fitness Tracking Apps (Strava_Fitbit)], [EdTech Gamification], [FinTech Engagement Strategies.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Dynamic Assessment.md b/10_Wiki/Topics/Graphics & Performance/Dynamic Assessment.md deleted file mode 100644 index 991c166d..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Dynamic Assessment.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-240DDB -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Dynamic Assessment" ---- - -# [[Dynamic Assessment]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Dynamic Assessment.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Dynamical Systems Theory.md b/10_Wiki/Topics/Graphics & Performance/Dynamical Systems Theory.md deleted file mode 100644 index c3fefa76..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Dynamical Systems Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9A39F2 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Dynamical Systems Theory" ---- - -# [[Dynamical Systems Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Dynamical Systems Theory.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/EXT_disjoint_timer_query.md b/10_Wiki/Topics/Graphics & Performance/EXT_disjoint_timer_query.md deleted file mode 100644 index fe6603f2..00000000 --- a/10_Wiki/Topics/Graphics & Performance/EXT_disjoint_timer_query.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-496C9B -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - EXT_disjoint_timer_query" ---- - -# [[EXT_disjoint_timer_query]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> `EXT_disjoint_timer_query`는 렌더링 파이프라인을 멈추지 않고 GPU에서 실행되는 GL 명령어 세트의 소요 시간을 측정할 수 있게 해주는 WebGL API 확장 기능입니다 [1, 2]. 개발자들은 이를 통해 하드웨어 수준에서 명령어 실행의 시작과 끝을 기록하여 비동기 실행 모델의 미세 지연(Micro-latency)을 정확히 측정할 수 있었습니다 [1, 3]. 그러나 이 고정밀 타이머가 메모리 접근 패턴 관찰 등 부채널 공격(Side-channel attacks)에 악용될 수 있다는 보안상 취약점이 발견되어, 현재 대부분의 브라우저에서 비활성화되거나 정밀도가 크게 제한되었습니다 [3-5]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Micro-latency]], [[Side-channel attacks]], [[Spectre and Meltdown]], [[Rowhammer attack]] -- **Projects/Contexts:** [[WebGL API]], [[WebGPU Timestamp Queries]] -- **Contradictions/Notes:** 소스 213은 Chrome이 Site Isolation이 적용된 플랫폼에서 `EXT_disjoint_timer_query`를 노출하여 작동한다고 보고하지만, 소스 380의 사용자는 Rowhammer 공격 방지를 이유로 "모든 브라우저에서 비활성화되어 전혀 작동하지 않는다(it is disabled in all browsers)"고 모순되게 주장합니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/EXT_disjoint_timer_query.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Ecosystem-Modeling.md b/10_Wiki/Topics/Graphics & Performance/Ecosystem-Modeling.md deleted file mode 100644 index f0f3c9a0..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Ecosystem-Modeling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6E0EC9 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ecosystem-Modeling" ---- - -# [[Ecosystem-Modeling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ecosystem-Modeling.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/EdTech (Gamified Learning).md b/10_Wiki/Topics/Graphics & Performance/EdTech (Gamified Learning).md deleted file mode 100644 index 0d0a4236..00000000 --- a/10_Wiki/Topics/Graphics & Performance/EdTech (Gamified Learning).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5D4E83 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - EdTech (Gamified Learning)" ---- - -# [[EdTech (Gamified Learning)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/EdTech (Gamified Learning).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Educational-Gamification.md b/10_Wiki/Topics/Graphics & Performance/Educational-Gamification.md deleted file mode 100644 index 7ec5f3ca..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Educational-Gamification.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8F5AE3 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Educational-Gamification" ---- - -# [[Educational-Gamification]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Educational-Gamification.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Embodied Cognition in Virtual Reality.md b/10_Wiki/Topics/Graphics & Performance/Embodied Cognition in Virtual Reality.md deleted file mode 100644 index 928b0d0a..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Embodied Cognition in Virtual Reality.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C2E060 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Embodied Cognition in Virtual Reality" ---- - -# [[Embodied Cognition in Virtual Reality]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Embodied Cognition in Virtual Reality.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Employee Engagement Systems.md b/10_Wiki/Topics/Graphics & Performance/Employee Engagement Systems.md deleted file mode 100644 index 9e153748..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Employee Engagement Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9F0879 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Employee Engagement Systems" ---- - -# [[Employee Engagement Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Employee Engagement Systems.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Epidemiological Forecasting.md b/10_Wiki/Topics/Graphics & Performance/Epidemiological Forecasting.md deleted file mode 100644 index 77b625c5..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Epidemiological Forecasting.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D5D1FD -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Epidemiological Forecasting" ---- - -# [[Epidemiological Forecasting]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Epidemiological Forecasting.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Epidemiological Modeling.md b/10_Wiki/Topics/Graphics & Performance/Epidemiological Modeling.md deleted file mode 100644 index 8bde0fad..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Epidemiological Modeling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5B9D2F -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Epidemiological Modeling" ---- - -# [[Epidemiological Modeling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Epidemiological Modeling.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Expressjs-Type-Extensions.md b/10_Wiki/Topics/Graphics & Performance/Expressjs-Type-Extensions.md deleted file mode 100644 index be49591a..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Expressjs-Type-Extensions.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1B7084 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Expressjs-Type-Extensions" ---- - -# [[Expressjs-Type-Extensions]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Express.js-Type-Extensions.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/FXAA.md b/10_Wiki/Topics/Graphics & Performance/FXAA.md deleted file mode 100644 index 304455ff..00000000 --- a/10_Wiki/Topics/Graphics & Performance/FXAA.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-332A17 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - FXAA" ---- - -# [[FXAA]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> FXAA는 실시간 3D 렌더링 환경에서 사용되는 포스트 프로세싱(Post-processing) 안티앨리어싱(Anti-aliasing) 기법입니다. 화면 공간(Screen-space) 셰이더로 실행되어 오브젝트의 가장자리를 부드럽게 만들어 줍니다 [1]. 특히 모바일이나 저사양 기기에서 네이티브 안티앨리어싱을 대체하여 높은 렌더링 프레임 속도를 유지할 수 있도록 하는 매우 성능 효율적인 최적화 기술입니다 [1, 2]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Anti-aliasing]], [[SMAA]], [[MSAA]], [[Post-Processing]] -- **Projects/Contexts:** [[Three.js]], [[WebGL]] -- **Contradictions/Notes:** 소스 간의 모순점은 없으며, 모든 소스가 공통적으로 무거운 네이티브 안티앨리어싱을 비활성화하고 FXAA를 포스트 프로세싱 후반부에 적용하는 것이 성능 확보에 필수적이라고 일관되게 권장합니다 [1-3]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/FXAA.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Flow State Theory.md b/10_Wiki/Topics/Graphics & Performance/Flow State Theory.md deleted file mode 100644 index 25b525a4..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Flow State Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-546D8F -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Flow State Theory" ---- - -# [[Flow State Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Flow State Theory.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Formal-Grammar.md b/10_Wiki/Topics/Graphics & Performance/Formal-Grammar.md deleted file mode 100644 index 4fa3cbbd..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Formal-Grammar.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-410500 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Formal-Grammar" ---- - -# [[Formal-Grammar]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Formal-Grammar.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Formalism-vs-Structuralism.md b/10_Wiki/Topics/Graphics & Performance/Formalism-vs-Structuralism.md deleted file mode 100644 index cb550c0a..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Formalism-vs-Structuralism.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AE318B -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Formalism-vs-Structuralism" ---- - -# [[Formalism-vs-Structuralism]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Formalism-vs-Structuralism.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Formalist Game Design.md b/10_Wiki/Topics/Graphics & Performance/Formalist Game Design.md deleted file mode 100644 index 6442e3e0..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Formalist Game Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E0F58C -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Formalist Game Design" ---- - -# [[Formalist Game Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Formalist Game Design.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Game Studies (Academic Discipline).md b/10_Wiki/Topics/Graphics & Performance/Game Studies (Academic Discipline).md deleted file mode 100644 index 071ec4b6..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Game Studies (Academic Discipline).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-EFF2C4 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game Studies (Academic Discipline)" ---- - -# [[Game Studies (Academic Discipline)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game Studies (Academic Discipline).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Game Theory (Economics).md b/10_Wiki/Topics/Graphics & Performance/Game Theory (Economics).md deleted file mode 100644 index d593f256..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Game Theory (Economics).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-329226 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game Theory (Economics)" ---- - -# [[Game Theory (Economics)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game Theory (Economics).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Game Theory and Market Equilibrium.md b/10_Wiki/Topics/Graphics & Performance/Game Theory and Market Equilibrium.md deleted file mode 100644 index 5547fccf..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Game Theory and Market Equilibrium.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C0E0BE -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game Theory and Market Equilibrium" ---- - -# [[Game Theory and Market Equilibrium]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game Theory and Market Equilibrium.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Game Theory.md b/10_Wiki/Topics/Graphics & Performance/Game Theory.md deleted file mode 100644 index 8529af61..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Game Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-69600C -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game Theory" ---- - -# [[Game Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game Theory.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Gamification-Design.md b/10_Wiki/Topics/Graphics & Performance/Gamification-Design.md deleted file mode 100644 index b3bb48e8..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Gamification-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8C354C -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Gamification-Design" ---- - -# [[Gamification-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Gamification-Design.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Graph Theory in Level Design.md b/10_Wiki/Topics/Graphics & Performance/Graph Theory in Level Design.md deleted file mode 100644 index c059d8cb..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Graph Theory in Level Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7898CD -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Graph Theory in Level Design" ---- - -# [[Graph Theory in Level Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Graph Theory in Level Design.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/HTML5 Canvas.md b/10_Wiki/Topics/Graphics & Performance/HTML5 Canvas.md deleted file mode 100644 index 5e209e96..00000000 --- a/10_Wiki/Topics/Graphics & Performance/HTML5 Canvas.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6AA980 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - HTML5 Canvas" ---- - -# [[HTML5 Canvas]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> HTML5 Canvas는 웹 브라우저 내에서 3D 장면이나 그래픽 등 모든 그리기 콘텐츠(drawing contents)를 담는 HTML 요소입니다 [1]. 주로 자바스크립트를 통해 WebGL 또는 WebGPU 컨텍스트를 가져와 GPU에서 하드웨어 가속을 통해 직접 렌더링을 수행하는 대상 화면으로 사용됩니다 [1, 2]. 제공된 소스에서는 독립적인 주제라기보다는 WebGL 및 WebGPU 파이프라인이 그래픽을 출력하는 기본 바탕으로서 단편적으로 언급됩니다. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[WebGL]], [[WebGPU]], [[GPU Rendering]] -- **Projects/Contexts:** [[3D Web-based HMI]], [[LearnWebGL]], [[Chrome DevTools Performance]] -- **Contradictions/Notes:** 소스에 관련 정보가 부족합니다. 소스 데이터 내에서 HTML5 Canvas 자체의 2D API나 내부 동작 원리에 대한 깊이 있는 설명은 존재하지 않으며, WebGL 및 WebGPU 렌더링을 위한 HTML 요소로서의 역할만 제한적으로 다뤄지고 있습니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/HTML5 Canvas.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Human-Centered Design.md b/10_Wiki/Topics/Graphics & Performance/Human-Centered Design.md deleted file mode 100644 index e34e93b8..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Human-Centered Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AFA55D -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Human-Centered Design" ---- - -# [[Human-Centered Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Human-Centered Design.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Human-Computer-Interaction-HCI.md b/10_Wiki/Topics/Graphics & Performance/Human-Computer-Interaction-HCI.md deleted file mode 100644 index d5183dd8..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Human-Computer-Interaction-HCI.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7D2F0C -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Human-Computer-Interaction-HCI" ---- - -# [[Human-Computer-Interaction-HCI]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Human-Computer-Interaction-HCI.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/ISO 9241 Standards.md b/10_Wiki/Topics/Graphics & Performance/ISO 9241 Standards.md deleted file mode 100644 index 460c7c0d..00000000 --- a/10_Wiki/Topics/Graphics & Performance/ISO 9241 Standards.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CA7B1B -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - ISO 9241 Standards" ---- - -# [[ISO 9241 Standards]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/ISO 9241 Standards.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Immersive Educational Simulations.md b/10_Wiki/Topics/Graphics & Performance/Immersive Educational Simulations.md deleted file mode 100644 index 53ea8753..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Immersive Educational Simulations.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7C1550 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Immersive Educational Simulations" ---- - -# [[Immersive Educational Simulations]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Immersive Educational Simulations.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Instructional Systems Design (ISD).md b/10_Wiki/Topics/Graphics & Performance/Instructional Systems Design (ISD).md deleted file mode 100644 index 3e2f5524..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Instructional Systems Design (ISD).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-03221B -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Instructional Systems Design (ISD)" ---- - -# [[Instructional Systems Design (ISD)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Instructional Systems Design (ISD).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Instructional-Design.md b/10_Wiki/Topics/Graphics & Performance/Instructional-Design.md deleted file mode 100644 index 748d8ae6..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Instructional-Design.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FFEC9C -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Instructional-Design" ---- - -# [[Instructional-Design]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Instructional-Design.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Interactive Storytelling.md b/10_Wiki/Topics/Graphics & Performance/Interactive Storytelling.md deleted file mode 100644 index 97537aee..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Interactive Storytelling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-355ABB -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Interactive Storytelling" ---- - -# [[Interactive Storytelling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Interactive Storytelling.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Interactive-Storytelling.md b/10_Wiki/Topics/Graphics & Performance/Interactive-Storytelling.md deleted file mode 100644 index fc3b2718..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Interactive-Storytelling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6D7369 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Interactive-Storytelling" ---- - -# [[Interactive-Storytelling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Interactive-Storytelling.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Internet of Things (IoT) Telemetry.md b/10_Wiki/Topics/Graphics & Performance/Internet of Things (IoT) Telemetry.md deleted file mode 100644 index c56e6eb5..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Internet of Things (IoT) Telemetry.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D09D7C -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Internet of Things (IoT) Telemetry" ---- - -# [[Internet of Things (IoT) Telemetry]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Internet of Things (IoT) Telemetry.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Intrinsic Motivation.md b/10_Wiki/Topics/Graphics & Performance/Intrinsic Motivation.md deleted file mode 100644 index f55c0518..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Intrinsic Motivation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D1BB71 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Intrinsic Motivation" ---- - -# [[Intrinsic Motivation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Intrinsic Motivation.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Knowledge-Graphs.md b/10_Wiki/Topics/Graphics & Performance/Knowledge-Graphs.md deleted file mode 100644 index cca80eb8..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Knowledge-Graphs.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9FC608 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Knowledge-Graphs" ---- - -# [[Knowledge-Graphs]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Knowledge-Graphs.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Looking-Glass-Studios.md b/10_Wiki/Topics/Graphics & Performance/Looking-Glass-Studios.md deleted file mode 100644 index 197310c1..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Looking-Glass-Studios.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-83E00E -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Looking-Glass-Studios" ---- - -# [[Looking-Glass-Studios]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Looking-Glass-Studios.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Loot Box Regulation (EU_China Compliance).md b/10_Wiki/Topics/Graphics & Performance/Loot Box Regulation (EU_China Compliance).md deleted file mode 100644 index 997abbcc..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Loot Box Regulation (EU_China Compliance).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4B1863 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Loot Box Regulation (EU_China Compliance)" ---- - -# [[Loot Box Regulation (EU_China Compliance)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Loot Box Regulation (EU_China Compliance).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Ludology.md b/10_Wiki/Topics/Graphics & Performance/Ludology.md deleted file mode 100644 index 73e5e30f..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Ludology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-397611 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ludology" ---- - -# [[Ludology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ludology.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/MDA Framework.md b/10_Wiki/Topics/Graphics & Performance/MDA Framework.md deleted file mode 100644 index 24558e35..00000000 --- a/10_Wiki/Topics/Graphics & Performance/MDA Framework.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-14D7A9 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - MDA Framework" ---- - -# [[MDA Framework]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/MDA Framework.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/MDA-Framework.md b/10_Wiki/Topics/Graphics & Performance/MDA-Framework.md deleted file mode 100644 index 9ae0b496..00000000 --- a/10_Wiki/Topics/Graphics & Performance/MDA-Framework.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D62F53 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - MDA-Framework" ---- - -# [[MDA-Framework]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/MDA-Framework.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Markov Decision Process (MDP).md b/10_Wiki/Topics/Graphics & Performance/Markov Decision Process (MDP).md deleted file mode 100644 index 236bbedf..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Markov Decision Process (MDP).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-14D223 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Markov Decision Process (MDP)" ---- - -# [[Markov Decision Process (MDP)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Markov Decision Process (MDP).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Markov Decision Processes.md b/10_Wiki/Topics/Graphics & Performance/Markov Decision Processes.md deleted file mode 100644 index 99470b95..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Markov Decision Processes.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-336A60 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Markov Decision Processes" ---- - -# [[Markov Decision Processes]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Markov Decision Processes.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Mathematical Game Theory.md b/10_Wiki/Topics/Graphics & Performance/Mathematical Game Theory.md deleted file mode 100644 index 349a3947..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Mathematical Game Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5BCF2D -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Mathematical Game Theory" ---- - -# [[Mathematical Game Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Mathematical Game Theory.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Measure Theory.md b/10_Wiki/Topics/Graphics & Performance/Measure Theory.md deleted file mode 100644 index 4fd2a024..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Measure Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-06771D -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Measure Theory" ---- - -# [[Measure Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Measure Theory.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Meta Quest_Horizon OS.md b/10_Wiki/Topics/Graphics & Performance/Meta Quest_Horizon OS.md deleted file mode 100644 index a9cd0704..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Meta Quest_Horizon OS.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-65D468 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Meta Quest_Horizon OS" ---- - -# [[Meta Quest_Horizon OS]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Meta Quest_Horizon OS.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Metaverse Architecture.md b/10_Wiki/Topics/Graphics & Performance/Metaverse Architecture.md deleted file mode 100644 index cbcb3a05..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Metaverse Architecture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7BDD7C -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Metaverse Architecture" ---- - -# [[Metaverse Architecture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Metaverse Architecture.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Micro-latency.md b/10_Wiki/Topics/Graphics & Performance/Micro-latency.md deleted file mode 100644 index cf0f995a..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Micro-latency.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B64E78 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Micro-latency" ---- - -# [[Micro-latency]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 웹 그래픽 파이프라인에서 마이크로 레이턴시(Micro-latency)는 60Hz 디스플레이 기준 16.67ms와 같은 엄격한 시간 예산 내에서 하드웨어와 소프트웨어 구성 요소가 동기화할 때 발생하는 미세한 지연을 의미합니다 [1]. 이는 JavaScript 엔진의 가비지 컬렉션, WebGL 및 ANGLE과 같은 API 변환, OS의 컨텍스트 생성, 디스플레이 하드웨어 등 여러 계층에서 복합적으로 발생하며 [2-5], 이러한 미세 지연이 누적되면 프레임 누락이나 인지 가능한 끊김(Stuttering) 현상으로 이어집니다 [1, 5]. 최근에는 Spectre 및 Meltdown과 같은 보안 취약점 완화 조치로 인해 시스템의 기본 마이크로 레이턴시가 소폭 증가하기도 했습니다 [6, 7]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[WebGL]], [[WebGPU]], [[Spectre and Meltdown]], [[EXT_disjoint_timer_query]], [[ANGLE (Almost Native Graphics Layer Engine)]] -- **Projects/Contexts:** [[WebSplatter (3D Gaussian Splatting)]], [[CesiumJS]], [[Figma]] -- **Contradictions/Notes:** 소스에 따르면, 성능 분석을 위한 정밀한 마이크로 레이턴시 측정의 필요성과 시스템 보안(Spectre/Meltdown 공격 방어) 사이에 명확한 상충(Conflict)이 존재합니다. 고정밀 타이머가 사이드 채널 공격에 악용될 수 있다는 연구 결과에 따라 브라우저 벤더들은 `EXT_disjoint_timer_query`를 비활성화하거나 타이머 해상도를 인위적으로 낮추는(Quantization) 타협안을 채택해야만 했습니다 [6, 10-12, 18]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Micro-latency.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Minecraft.md b/10_Wiki/Topics/Graphics & Performance/Minecraft.md deleted file mode 100644 index 09338166..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Minecraft.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A3F579 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Minecraft" ---- - -# [[Minecraft]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Minecraft.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Minecraft_ Education Edition.md b/10_Wiki/Topics/Graphics & Performance/Minecraft_ Education Edition.md deleted file mode 100644 index 18eb5c70..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Minecraft_ Education Edition.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7091B6 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Minecraft_ Education Edition" ---- - -# [[Minecraft_ Education Edition]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Minecraft_ Education Edition.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Mobile Gaming Monetization Strategies.md b/10_Wiki/Topics/Graphics & Performance/Mobile Gaming Monetization Strategies.md deleted file mode 100644 index a36eedfe..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Mobile Gaming Monetization Strategies.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-48096A -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Mobile Gaming Monetization Strategies" ---- - -# [[Mobile Gaming Monetization Strategies]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Mobile Gaming Monetization Strategies.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/NASA-Jet-Propulsion-Laboratory-Software-Standards.md b/10_Wiki/Topics/Graphics & Performance/NASA-Jet-Propulsion-Laboratory-Software-Standards.md deleted file mode 100644 index f5130205..00000000 --- a/10_Wiki/Topics/Graphics & Performance/NASA-Jet-Propulsion-Laboratory-Software-Standards.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-33A414 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - NASA-Jet-Propulsion-Laboratory-Software-Standards" ---- - -# [[NASA-Jet-Propulsion-Laboratory-Software-Standards]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/NASA-Jet-Propulsion-Laboratory-Software-Standards.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/NVIDIA Omniverse.md b/10_Wiki/Topics/Graphics & Performance/NVIDIA Omniverse.md deleted file mode 100644 index 04954343..00000000 --- a/10_Wiki/Topics/Graphics & Performance/NVIDIA Omniverse.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-068667 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - NVIDIA Omniverse" ---- - -# [[NVIDIA Omniverse]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/NVIDIA Omniverse.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Narrative-Branching-Models.md b/10_Wiki/Topics/Graphics & Performance/Narrative-Branching-Models.md deleted file mode 100644 index c236262d..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Narrative-Branching-Models.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4FC48D -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Narrative-Branching-Models" ---- - -# [[Narrative-Branching-Models]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Narrative-Branching-Models.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Narratology.md b/10_Wiki/Topics/Graphics & Performance/Narratology.md deleted file mode 100644 index 9962f67e..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Narratology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BAAE58 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Narratology" ---- - -# [[Narratology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Narratology.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/OffscreenCanvas 기반 멀티스레드 렌더링 구현.md b/10_Wiki/Topics/Graphics & Performance/OffscreenCanvas 기반 멀티스레드 렌더링 구현.md deleted file mode 100644 index 7e839d80..00000000 --- a/10_Wiki/Topics/Graphics & Performance/OffscreenCanvas 기반 멀티스레드 렌더링 구현.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-58B572 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - OffscreenCanvas 기반 멀티스레드 렌더링 구현" ---- - -# [[OffscreenCanvas 기반 멀티스레드 렌더링 구현]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/OffscreenCanvas 기반 멀티스레드 렌더링 구현.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Open Metaverse Framework.md b/10_Wiki/Topics/Graphics & Performance/Open Metaverse Framework.md deleted file mode 100644 index 1367e6a1..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Open Metaverse Framework.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4C9A2B -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Open Metaverse Framework" ---- - -# [[Open Metaverse Framework]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Open Metaverse Framework.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Open-World Design Paradigms.md b/10_Wiki/Topics/Graphics & Performance/Open-World Design Paradigms.md deleted file mode 100644 index fd6464a5..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Open-World Design Paradigms.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B36DC4 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Open-World Design Paradigms" ---- - -# [[Open-World Design Paradigms]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Open-World Design Paradigms.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Operant Conditioning.md b/10_Wiki/Topics/Graphics & Performance/Operant Conditioning.md deleted file mode 100644 index 4c96f36c..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Operant Conditioning.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8BF017 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Operant Conditioning" ---- - -# [[Operant Conditioning]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Operant Conditioning.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Perlin Noise.md b/10_Wiki/Topics/Graphics & Performance/Perlin Noise.md deleted file mode 100644 index ef50da18..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Perlin Noise.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0374D8 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Perlin Noise" ---- - -# [[Perlin Noise]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Perlin Noise.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Physics Engine Integration.md b/10_Wiki/Topics/Graphics & Performance/Physics Engine Integration.md deleted file mode 100644 index 940fc8e4..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Physics Engine Integration.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DE2C95 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Physics Engine Integration" ---- - -# [[Physics Engine Integration]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Physics Engine Integration.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Positive Psychology.md b/10_Wiki/Topics/Graphics & Performance/Positive Psychology.md deleted file mode 100644 index 1853d339..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Positive Psychology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-52AEE2 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Positive Psychology" ---- - -# [[Positive Psychology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Positive Psychology.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Positive-Psychology.md b/10_Wiki/Topics/Graphics & Performance/Positive-Psychology.md deleted file mode 100644 index c6cc997d..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Positive-Psychology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-88BB17 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Positive-Psychology" ---- - -# [[Positive-Psychology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Positive-Psychology.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Post-Acute-Care-Models.md b/10_Wiki/Topics/Graphics & Performance/Post-Acute-Care-Models.md deleted file mode 100644 index ff0a04fd..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Post-Acute-Care-Models.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D22D50 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Post-Acute-Care-Models" ---- - -# [[Post-Acute-Care-Models]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Post-Acute-Care-Models.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Post-humanism.md b/10_Wiki/Topics/Graphics & Performance/Post-humanism.md deleted file mode 100644 index 4e69ecb2..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Post-humanism.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1C09D2 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Post-humanism" ---- - -# [[Post-humanism]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Post-humanism.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Probabilistic-Graphical-Models.md b/10_Wiki/Topics/Graphics & Performance/Probabilistic-Graphical-Models.md deleted file mode 100644 index e36341a1..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Probabilistic-Graphical-Models.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A9AAF3 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Probabilistic-Graphical-Models" ---- - -# [[Probabilistic-Graphical-Models]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Probabilistic-Graphical-Models.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Problem-Solving-Theory.md b/10_Wiki/Topics/Graphics & Performance/Problem-Solving-Theory.md deleted file mode 100644 index 3572da86..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Problem-Solving-Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7E994F -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Problem-Solving-Theory" ---- - -# [[Problem-Solving-Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Problem-Solving-Theory.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Procedural-Animation.md b/10_Wiki/Topics/Graphics & Performance/Procedural-Animation.md deleted file mode 100644 index 08e178a6..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Procedural-Animation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-737A68 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Procedural-Animation" ---- - -# [[Procedural-Animation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Procedural-Animation.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/R3F 3D 게임 환경의 메모리 관리.md b/10_Wiki/Topics/Graphics & Performance/R3F 3D 게임 환경의 메모리 관리.md deleted file mode 100644 index d1dba4a3..00000000 --- a/10_Wiki/Topics/Graphics & Performance/R3F 3D 게임 환경의 메모리 관리.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7C6FD2 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - R3F 3D 게임 환경의 메모리 관리" ---- - -# [[R3F 3D 게임 환경의 메모리 관리]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/R3F 3D 게임 환경의 메모리 관리.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/RDF와 OWL.md b/10_Wiki/Topics/Graphics & Performance/RDF와 OWL.md deleted file mode 100644 index 58764dba..00000000 --- a/10_Wiki/Topics/Graphics & Performance/RDF와 OWL.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-58CF7B -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - RDF와 OWL" ---- - -# [[RDF와 OWL]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/RDF와 OWL.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/React 기반 게임 엔진 아키텍처.md b/10_Wiki/Topics/Graphics & Performance/React 기반 게임 엔진 아키텍처.md deleted file mode 100644 index 1d41f3e4..00000000 --- a/10_Wiki/Topics/Graphics & Performance/React 기반 게임 엔진 아키텍처.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1B0F24 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - React 기반 게임 엔진 아키텍처" ---- - -# [[React 기반 게임 엔진 아키텍처]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/React 기반 게임 엔진 아키텍처.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/React 동시성 기능 (Concurrent Features).md b/10_Wiki/Topics/Graphics & Performance/React 동시성 기능 (Concurrent Features).md deleted file mode 100644 index f9277c95..00000000 --- a/10_Wiki/Topics/Graphics & Performance/React 동시성 기능 (Concurrent Features).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A689F7 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - React 동시성 기능 (Concurrent Features)" ---- - -# [[React 동시성 기능 (Concurrent Features)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/React 동시성 기능 (Concurrent Features).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Redux-Reducer-Pattern.md b/10_Wiki/Topics/Graphics & Performance/Redux-Reducer-Pattern.md deleted file mode 100644 index 0fc07bad..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Redux-Reducer-Pattern.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B7CB54 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Redux-Reducer-Pattern" ---- - -# [[Redux-Reducer-Pattern]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Redux-Reducer-Pattern.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Robotics-Control-Systems.md b/10_Wiki/Topics/Graphics & Performance/Robotics-Control-Systems.md deleted file mode 100644 index 28a8bc81..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Robotics-Control-Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A9830E -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Robotics-Control-Systems" ---- - -# [[Robotics-Control-Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Robotics-Control-Systems.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Role-Playing-Games (RPGs).md b/10_Wiki/Topics/Graphics & Performance/Role-Playing-Games (RPGs).md deleted file mode 100644 index 58522c59..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Role-Playing-Games (RPGs).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5C3932 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Role-Playing-Games (RPGs)" ---- - -# [[Role-Playing-Games (RPGs)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Role-Playing-Games (RPGs).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/SLA-Definition.md b/10_Wiki/Topics/Graphics & Performance/SLA-Definition.md deleted file mode 100644 index 00fafdd3..00000000 --- a/10_Wiki/Topics/Graphics & Performance/SLA-Definition.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-37BE33 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - SLA-Definition" ---- - -# [[SLA-Definition]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/SLA-Definition.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/SaaS-Retention-Strategies.md b/10_Wiki/Topics/Graphics & Performance/SaaS-Retention-Strategies.md deleted file mode 100644 index 0199383d..00000000 --- a/10_Wiki/Topics/Graphics & Performance/SaaS-Retention-Strategies.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B5B823 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - SaaS-Retention-Strategies" ---- - -# [[SaaS-Retention-Strategies]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/SaaS-Retention-Strategies.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Sandbox-Simulation.md b/10_Wiki/Topics/Graphics & Performance/Sandbox-Simulation.md deleted file mode 100644 index e831c294..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Sandbox-Simulation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D0C092 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sandbox-Simulation" ---- - -# [[Sandbox-Simulation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sandbox-Simulation.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Search-Based Procedural Content Generation (SBPCG).md b/10_Wiki/Topics/Graphics & Performance/Search-Based Procedural Content Generation (SBPCG).md deleted file mode 100644 index 10473674..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Search-Based Procedural Content Generation (SBPCG).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8371CD -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Search-Based Procedural Content Generation (SBPCG)" ---- - -# [[Search-Based Procedural Content Generation (SBPCG)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Search-Based Procedural Content Generation (SBPCG).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Semantic Versioning (SemVer) in Type Safety.md b/10_Wiki/Topics/Graphics & Performance/Semantic Versioning (SemVer) in Type Safety.md deleted file mode 100644 index 540d81e4..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Semantic Versioning (SemVer) in Type Safety.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-882353 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Semantic Versioning (SemVer) in Type Safety" ---- - -# [[Semantic Versioning (SemVer) in Type Safety]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Semantic Versioning (SemVer) in Type Safety.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Semantic-Web-Technologies.md b/10_Wiki/Topics/Graphics & Performance/Semantic-Web-Technologies.md deleted file mode 100644 index 75026bcb..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Semantic-Web-Technologies.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BB1892 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Semantic-Web-Technologies" ---- - -# [[Semantic-Web-Technologies]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Semantic-Web-Technologies.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Semantic-Web.md b/10_Wiki/Topics/Graphics & Performance/Semantic-Web.md deleted file mode 100644 index 10b2f189..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Semantic-Web.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8C1755 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Semantic-Web" ---- - -# [[Semantic-Web]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Semantic-Web.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Semiotics in Media.md b/10_Wiki/Topics/Graphics & Performance/Semiotics in Media.md deleted file mode 100644 index 37a6c364..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Semiotics in Media.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A79FEB -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Semiotics in Media" ---- - -# [[Semiotics in Media]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Semiotics in Media.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Sensor Fusion.md b/10_Wiki/Topics/Graphics & Performance/Sensor Fusion.md deleted file mode 100644 index 0f797fa5..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Sensor Fusion.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AA5A99 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sensor Fusion" ---- - -# [[Sensor Fusion]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sensor Fusion.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Service-Dominant-Logic.md b/10_Wiki/Topics/Graphics & Performance/Service-Dominant-Logic.md deleted file mode 100644 index 5e24b0cc..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Service-Dominant-Logic.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-625B63 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Service-Dominant-Logic" ---- - -# [[Service-Dominant-Logic]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Service-Dominant-Logic.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/SharedArrayBuffer.md b/10_Wiki/Topics/Graphics & Performance/SharedArrayBuffer.md deleted file mode 100644 index ac1fc23d..00000000 --- a/10_Wiki/Topics/Graphics & Performance/SharedArrayBuffer.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C22BDF -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - SharedArrayBuffer" ---- - -# [[SharedArrayBuffer]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> SharedArrayBuffer는 다중 스레드 환경에서 Web Worker와 메인 스레드 간에 데이터를 공유할 때 메모리 과부하를 방지하기 위해 사용되는 기술입니다 [1]. 전통적인 데이터 전달 방식과 달리 메모리를 복제하지 않는 제로 카피(Zero-copy) 아키텍처를 구현할 수 있게 해줍니다 [1]. 이를 통해 Electron과 같은 환경에서 대규모 3D 모델을 로드하고 파싱할 때 메모리 안정성을 획기적으로 유지할 수 있습니다 [1, 2]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Web Worker]], [[Structured Cloning]], [[BufferAttribute]], [[Zero-copy architecture]] -- **Projects/Contexts:** [[Electron 기반 WebGL CAD 렌더링 최적화]] -- **Contradictions/Notes:** 소스에서는 워커를 활용할 때 기존의 Structured Cloning을 사용할 경우 데이터가 전체 복사되어 OOM이 발생할 위험이 크지만, SharedArrayBuffer를 사용하면 복사 과정을 없애(Zero-copy) 이러한 메모리 오버헤드를 완벽히 방지할 수 있다고 대조하여 설명합니다 [1]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/SharedArrayBuffer.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Simulations of Social Systems.md b/10_Wiki/Topics/Graphics & Performance/Simulations of Social Systems.md deleted file mode 100644 index e1ba8ec5..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Simulations of Social Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6349BA -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Simulations of Social Systems" ---- - -# [[Simulations of Social Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Simulations of Social Systems.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Simultaneous Localization and Mapping (SLAM).md b/10_Wiki/Topics/Graphics & Performance/Simultaneous Localization and Mapping (SLAM).md deleted file mode 100644 index c6b628ae..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Simultaneous Localization and Mapping (SLAM).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-72B40F -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Simultaneous Localization and Mapping (SLAM)" ---- - -# [[Simultaneous Localization and Mapping (SLAM)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Simultaneous Localization and Mapping (SLAM).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Skybound Protocol 기술 메뉴얼 및 개발자 가이드.md b/10_Wiki/Topics/Graphics & Performance/Skybound Protocol 기술 메뉴얼 및 개발자 가이드.md deleted file mode 100644 index ece37881..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Skybound Protocol 기술 메뉴얼 및 개발자 가이드.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-19F4EF -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Skybound Protocol 기술 메뉴얼 및 개발자 가이드" ---- - -# [[Skybound Protocol 기술 메뉴얼 및 개발자 가이드]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Skybound Protocol 기술 메뉴얼 및 개발자 가이드.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Smart City Digital Twins.md b/10_Wiki/Topics/Graphics & Performance/Smart City Digital Twins.md deleted file mode 100644 index a8c92edc..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Smart City Digital Twins.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-888FC9 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Smart City Digital Twins" ---- - -# [[Smart City Digital Twins]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Smart City Digital Twins.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Smart-City-Frameworks.md b/10_Wiki/Topics/Graphics & Performance/Smart-City-Frameworks.md deleted file mode 100644 index 8cb59abb..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Smart-City-Frameworks.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-28F252 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Smart-City-Frameworks" ---- - -# [[Smart-City-Frameworks]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Smart-City-Frameworks.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Special Education Interventions.md b/10_Wiki/Topics/Graphics & Performance/Special Education Interventions.md deleted file mode 100644 index 03dc19fc..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Special Education Interventions.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B2C5F1 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Special Education Interventions" ---- - -# [[Special Education Interventions]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Special Education Interventions.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Speculative Biology.md b/10_Wiki/Topics/Graphics & Performance/Speculative Biology.md deleted file mode 100644 index e1ce2dab..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Speculative Biology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FF5504 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Speculative Biology" ---- - -# [[Speculative Biology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Speculative Biology.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Structuralism.md b/10_Wiki/Topics/Graphics & Performance/Structuralism.md deleted file mode 100644 index f2492510..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Structuralism.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-569BE2 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Structuralism" ---- - -# [[Structuralism]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Structuralism.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Surgical-Robotics.md b/10_Wiki/Topics/Graphics & Performance/Surgical-Robotics.md deleted file mode 100644 index 0bf6770e..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Surgical-Robotics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C5C20D -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Surgical-Robotics" ---- - -# [[Surgical-Robotics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Surgical-Robotics.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Systemic-Design-Frameworks.md b/10_Wiki/Topics/Graphics & Performance/Systemic-Design-Frameworks.md deleted file mode 100644 index ba86633b..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Systemic-Design-Frameworks.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3308A5 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Systemic-Design-Frameworks" ---- - -# [[Systemic-Design-Frameworks]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Systemic-Design-Frameworks.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Systems Theory.md b/10_Wiki/Topics/Graphics & Performance/Systems Theory.md deleted file mode 100644 index 9e83912d..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Systems Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B5E5CB -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Systems Theory" ---- - -# [[Systems Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Systems Theory.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Temporal-Logic.md b/10_Wiki/Topics/Graphics & Performance/Temporal-Logic.md deleted file mode 100644 index 614f1891..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Temporal-Logic.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8C33E2 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Temporal-Logic" ---- - -# [[Temporal-Logic]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Temporal-Logic.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/The Rapture Setting.md b/10_Wiki/Topics/Graphics & Performance/The Rapture Setting.md deleted file mode 100644 index cd931f18..00000000 --- a/10_Wiki/Topics/Graphics & Performance/The Rapture Setting.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-180DD3 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - The Rapture Setting" ---- - -# [[The Rapture Setting]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/The Rapture Setting.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/The-Space-Syntax-Laboratory.md b/10_Wiki/Topics/Graphics & Performance/The-Space-Syntax-Laboratory.md deleted file mode 100644 index fea0bce1..00000000 --- a/10_Wiki/Topics/Graphics & Performance/The-Space-Syntax-Laboratory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-64715F -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - The-Space-Syntax-Laboratory" ---- - -# [[The-Space-Syntax-Laboratory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/The-Space-Syntax-Laboratory.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Threejs 자원 해제 (Dispose).md b/10_Wiki/Topics/Graphics & Performance/Threejs 자원 해제 (Dispose).md deleted file mode 100644 index a3707f54..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Threejs 자원 해제 (Dispose).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5ED3CA -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Threejs 자원 해제 (Dispose)" ---- - -# [[Threejs 자원 해제 (Dispose)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Three.js 자원 해제 (Dispose).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Turtle-Graphics.md b/10_Wiki/Topics/Graphics & Performance/Turtle-Graphics.md deleted file mode 100644 index ddc4a9dc..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Turtle-Graphics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-51C40D -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Turtle-Graphics" ---- - -# [[Turtle-Graphics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Turtle-Graphics.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/USD - Universal Scene Description.md b/10_Wiki/Topics/Graphics & Performance/USD - Universal Scene Description.md deleted file mode 100644 index 75f47a9f..00000000 --- a/10_Wiki/Topics/Graphics & Performance/USD - Universal Scene Description.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B0E0B6 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - USD - Universal Scene Description" ---- - -# [[USD - Universal Scene Description]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/USD - Universal Scene Description.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/UX Design Gamification.md b/10_Wiki/Topics/Graphics & Performance/UX Design Gamification.md deleted file mode 100644 index f8bfd08d..00000000 --- a/10_Wiki/Topics/Graphics & Performance/UX Design Gamification.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C3544E -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - UX Design Gamification" ---- - -# [[UX Design Gamification]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/UX Design & Gamification.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/UX-Design-Architecture.md b/10_Wiki/Topics/Graphics & Performance/UX-Design-Architecture.md deleted file mode 100644 index 0dc5a16b..00000000 --- a/10_Wiki/Topics/Graphics & Performance/UX-Design-Architecture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6A1026 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - UX-Design-Architecture" ---- - -# [[UX-Design-Architecture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/UX-Design-Architecture.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Urban-Resilience-Planning.md b/10_Wiki/Topics/Graphics & Performance/Urban-Resilience-Planning.md deleted file mode 100644 index e34c8b3e..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Urban-Resilience-Planning.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D2E4D4 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Urban-Resilience-Planning" ---- - -# [[Urban-Resilience-Planning]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Urban-Resilience-Planning.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/User-Story-Mapping.md b/10_Wiki/Topics/Graphics & Performance/User-Story-Mapping.md deleted file mode 100644 index 90b68f1f..00000000 --- a/10_Wiki/Topics/Graphics & Performance/User-Story-Mapping.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1AFDC8 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - User-Story-Mapping" ---- - -# [[User-Story-Mapping]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/User-Story-Mapping.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/VIA-Classification.md b/10_Wiki/Topics/Graphics & Performance/VIA-Classification.md deleted file mode 100644 index 30808914..00000000 --- a/10_Wiki/Topics/Graphics & Performance/VIA-Classification.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-19F48C -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - VIA-Classification" ---- - -# [[VIA-Classification]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/VIA-Classification.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Virtual Reality (VR) Storytelling.md b/10_Wiki/Topics/Graphics & Performance/Virtual Reality (VR) Storytelling.md deleted file mode 100644 index 2daa3111..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Virtual Reality (VR) Storytelling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C15945 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Virtual Reality (VR) Storytelling" ---- - -# [[Virtual Reality (VR) Storytelling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Virtual Reality (VR) Storytelling.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Voxel-based Rendering.md b/10_Wiki/Topics/Graphics & Performance/Voxel-based Rendering.md deleted file mode 100644 index ed841921..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Voxel-based Rendering.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-89D12F -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Voxel-based Rendering" ---- - -# [[Voxel-based Rendering]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Voxel-based Rendering.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Waves of Connection.md b/10_Wiki/Topics/Graphics & Performance/Waves of Connection.md deleted file mode 100644 index 1fcc67b8..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Waves of Connection.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-74AA0F -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Waves of Connection" ---- - -# [[Waves of Connection]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 'Waves of Connection'은 2025년 오사카 엑스포(Expo 2025 Osaka)에서 전시된 설치 작품입니다 [1]. 이 프로젝트는 Three.js WebGPU를 활용하여 98인치 4K 디스플레이 상에 100만 개의 파티클을 실시간으로 렌더링했습니다 [1]. 특히 눈에 띄는 지연(lag) 없이 다수의 사람의 움직임을 추적하는 다인원 바디 트래킹(multi-person body tracking) 기술을 구현하여 WebGPU의 뛰어난 성능을 입증한 사례로 꼽힙니다 [1]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Three.js WebGPU]], [[Particle System]] -- **Projects/Contexts:** [[Expo 2025 Osaka]] -- **Contradictions/Notes:** 소스 내에서 'Waves of Connection'에 대한 정보는 Three.js WebGPU와 Native WebGPU의 성능을 비교하며 WebGPU의 압도적인 렌더링 성능 향상(100만 개 파티클 실시간 처리)을 보여주기 위한 단편적인 사례로만 언급되었습니다. 그 외의 배경지식이나 세부 내용은 소스에 관련 정보가 부족합니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Waves of Connection.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/WebGPU Timestamp Queries.md b/10_Wiki/Topics/Graphics & Performance/WebGPU Timestamp Queries.md deleted file mode 100644 index fd1cbb57..00000000 --- a/10_Wiki/Topics/Graphics & Performance/WebGPU Timestamp Queries.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1F8BE6 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - WebGPU Timestamp Queries" ---- - -# [[WebGPU Timestamp Queries]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> WebGPU Timestamp Queries는 WebGPU 애플리케이션이 컴퓨트(Compute) 및 렌더(Render) 패스의 경계 등에서 GPU 명령이 실행되는 데 걸리는 시간을 나노초 단위까지 정밀하게 측정할 수 있도록 지원하는 API 기능입니다 [1, 2]. 고해상도 타이머를 악용한 캐시 사이드 채널 공격(예: Spectre)을 방지하기 위해 브라우저 환경에서는 일반적으로 해상도를 100마이크로초로 제한하는 타임스탬프 양자화(Timestamp Quantization)가 적용됩니다 [3, 4]. 한편, 루트 주제인 '브라우저 메모리 할당 시점별 미세 지연 측정 사례'와 관련하여, 타임스탬프 쿼리를 직접적으로 메모리 할당 시점과 연계하여 측정한 구체적인 사례는 소스에 관련 정보가 부족합니다. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Micro-latency]], [[Timestamp Quantization]], [[Timing Attacks (Spectre/Meltdown)]] -- **Projects/Contexts:** [[WebGPU Performance Profiling]], [[Browser Security Mitigations]] -- **Contradictions/Notes:** 소스 [5]에서는 보안을 위해 비격리 컨텍스트(Non-isolated contexts)에서 타임스탬프 쿼리 기능을 아예 노출하지 않는 방향을 주장하지만, 소스 [6]에서는 GPU for the Web Community Group의 추후 합의를 통해 사이트 격리 여부와 무관하게 100마이크로초 해상도로 기능을 항상 허용하는 것으로 변경되었음을 보여줍니다. 또한 루트 주제에서 요구한 '브라우저 메모리 할당 시점별' 구체적 지연 측정 사례에 대해서는 소스에 관련 정보가 부족합니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/WebGPU Timestamp Queries.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/Winning Ways for your Mathematical Plays.md b/10_Wiki/Topics/Graphics & Performance/Winning Ways for your Mathematical Plays.md deleted file mode 100644 index c33aa248..00000000 --- a/10_Wiki/Topics/Graphics & Performance/Winning Ways for your Mathematical Plays.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A3A3FC -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Winning Ways for your Mathematical Plays" ---- - -# [[Winning Ways for your Mathematical Plays]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Winning Ways for your Mathematical Plays.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/XState-Library.md b/10_Wiki/Topics/Graphics & Performance/XState-Library.md deleted file mode 100644 index 620aa913..00000000 --- a/10_Wiki/Topics/Graphics & Performance/XState-Library.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7C6A30 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - XState-Library" ---- - -# [[XState-Library]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/XState-Library.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/threejs Issue _30352.md b/10_Wiki/Topics/Graphics & Performance/threejs Issue _30352.md deleted file mode 100644 index d1c6088e..00000000 --- a/10_Wiki/Topics/Graphics & Performance/threejs Issue _30352.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AE68EC -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - threejs Issue _30352" ---- - -# [[threejs Issue _30352]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> three.js Issue #30352는 공유 속성을 가진 여러 개의 일반 `Mesh` 객체를 렌더링할 때보다 `InstancedMesh`를 사용할 때 성능이 오히려 크게 저하되는 현상을 보고한 이슈입니다 [1, 2]. 이 현상의 주요 원인은 `InstancedMesh`가 내부 인스턴스들을 렌더링할 때 앞뒤로 자동 정렬(Sorting)하지 않아 발생하는 막대한 오버드로우(Overdraw) 비용 때문입니다 [3, 4]. 즉, 단일 드로우 콜로 인한 CPU 연산 감소 이득보다 불필요한 픽셀 처리 부하가 더 커지면서 씬이 프래그먼트 바운드(Fragment-bound) 상태에 빠지는 구조적 한계를 보여주는 사례입니다 [5]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[InstancedMesh]], [[Overdraw]], [[BatchedMesh]], [[Fragment-bound]] -- **Projects/Contexts:** [[three.js]] -- **Contradictions/Notes:** 이론적으로 `InstancedMesh`는 드로우 콜 횟수를 1회로 줄여주어 렌더링 성능을 향상시켜야 하지만, 이슈 #30352의 사례에서는 개별 정렬 부재로 인한 오버드로우 비용 때문에 오히려 개별 드로우 콜(5,000회)을 수행하는 일반 `Mesh` 방식보다 성능이 떨어지는 모순적인 결과를 보여줍니다 [1, 2, 5]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/three.js Issue _30352.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/고성능 3D WebGL 게임 렌더링 엔진.md b/10_Wiki/Topics/Graphics & Performance/고성능 3D WebGL 게임 렌더링 엔진.md deleted file mode 100644 index fd85a31e..00000000 --- a/10_Wiki/Topics/Graphics & Performance/고성능 3D WebGL 게임 렌더링 엔진.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BD05D2 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 고성능 3D WebGL 게임 렌더링 엔진" ---- - -# [[고성능 3D WebGL 게임 렌더링 엔진]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/고성능 3D WebGL 게임 렌더링 엔진.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/교육 심리학 및 교수법 설계.md b/10_Wiki/Topics/Graphics & Performance/교육 심리학 및 교수법 설계.md deleted file mode 100644 index 724f12b2..00000000 --- a/10_Wiki/Topics/Graphics & Performance/교육 심리학 및 교수법 설계.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5D01FE -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 교육 심리학 및 교수법 설계" ---- - -# [[교육 심리학 및 교수법 설계]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/교육 심리학 및 교수법 설계.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/기업 문화 진단 및 개선.md b/10_Wiki/Topics/Graphics & Performance/기업 문화 진단 및 개선.md deleted file mode 100644 index eb764fd7..00000000 --- a/10_Wiki/Topics/Graphics & Performance/기업 문화 진단 및 개선.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7FF20D -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 기업 문화 진단 및 개선" ---- - -# [[기업 문화 진단 및 개선]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/기업 문화 진단 및 개선.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/만성 질환 행동 수정 개입.md b/10_Wiki/Topics/Graphics & Performance/만성 질환 행동 수정 개입.md deleted file mode 100644 index b6e1c5eb..00000000 --- a/10_Wiki/Topics/Graphics & Performance/만성 질환 행동 수정 개입.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2F0833 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 만성 질환 행동 수정 개입" ---- - -# [[만성 질환 행동 수정 개입]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/만성 질환 행동 수정 개입.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/명령형 직접 조작 (Imperative Manipulation).md b/10_Wiki/Topics/Graphics & Performance/명령형 직접 조작 (Imperative Manipulation).md deleted file mode 100644 index 3196719b..00000000 --- a/10_Wiki/Topics/Graphics & Performance/명령형 직접 조작 (Imperative Manipulation).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2E3155 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 명령형 직접 조작 (Imperative Manipulation)" ---- - -# [[명령형 직접 조작 (Imperative Manipulation)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/명령형 직접 조작 (Imperative Manipulation).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/브라우저 그래픽 렌더링 백엔드.md b/10_Wiki/Topics/Graphics & Performance/브라우저 그래픽 렌더링 백엔드.md deleted file mode 100644 index 455b55b5..00000000 --- a/10_Wiki/Topics/Graphics & Performance/브라우저 그래픽 렌더링 백엔드.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-102878 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 브라우저 그래픽 렌더링 백엔드" ---- - -# [[브라우저 그래픽 렌더링 백엔드]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 브라우저 그래픽 렌더링 백엔드는 WebGL이나 WebGPU와 같은 웹 그래픽 API의 명령을 물리적 GPU가 실행할 수 있는 명령어로 변환하고 전달하는 기반 시스템입니다 [1, 2]. Windows 환경에서는 ANGLE과 같은 브라우저 추상화 계층을 사용하여 OpenGL ES 호출을 Direct3D로 변환하는 역할을 수행합니다 [1, 3]. 최근의 WebGPU 환경에서는 Dawn과 같은 백엔드를 통해 Vulkan, Metal, Direct3D 12 등 차세대 네이티브 GPU API와 직접적으로 상호작용하여 렌더링 성능을 극대화합니다 [2, 4, 5]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[WebGL]], [[WebGPU]], [[ANGLE]], [[Dawn]], [[마이크로 레이턴시(Micro-latency)]] -- **Projects/Contexts:** [[Google Chrome]], [[Mozilla Firefox]] -- **Contradictions/Notes:** Windows 환경의 ANGLE 백엔드는 WebGL 호환성을 훌륭하게 제공하지만, OpenGL ES를 Direct3D로 변환하는 과정에서 본질적인 오버헤드를 동반합니다. 수천 개의 드로우 콜이 발생하는 복잡한 씬에서는 GPU가 유휴 상태임에도 불구하고 CPU 병목 현상과 마이크로 레이턴시가 누적되어 성능 저하를 일으킬 수 있습니다 [6]. 이를 우회하여 네이티브 OpenGL 구현을 테스트하기 위해 Chrome에서 `--use-gl=desktop` 플래그를 사용하기도 합니다 [3]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/브라우저 그래픽 렌더링 백엔드.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/서비스 디자인 (Service Design).md b/10_Wiki/Topics/Graphics & Performance/서비스 디자인 (Service Design).md deleted file mode 100644 index c0cf9fdc..00000000 --- a/10_Wiki/Topics/Graphics & Performance/서비스 디자인 (Service Design).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DB809B -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 서비스 디자인 (Service Design)" ---- - -# [[서비스 디자인 (Service Design)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/서비스 디자인 (Service Design).md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/실시간 렌더링 파이프라인.md b/10_Wiki/Topics/Graphics & Performance/실시간 렌더링 파이프라인.md deleted file mode 100644 index 8ebfe365..00000000 --- a/10_Wiki/Topics/Graphics & Performance/실시간 렌더링 파이프라인.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8DF18B -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 실시간 렌더링 파이프라인" ---- - -# [[실시간 렌더링 파이프라인]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 실시간 렌더링 파이프라인은 CPU와 GPU 간의 통신을 통해 3D 객체를 화면에 실시간으로 그려내는 일련의 과정이다 [1]. 이 과정은 CPU가 렌더링 상태를 설정하고 명령을 전달하는 드로우 콜(Draw Call) 단계로 시작하여, GPU가 정점을 변환하고 픽셀을 계산하여 화면에 출력하는 단계로 구성된다 [1, 2]. 파이프라인의 성능은 주로 이 두 장치 간의 통신 오버헤드와 데이터 전송 효율성, 그리고 GPU의 병목 현상을 어떻게 최적화하느냐에 따라 결정된다 [1, 3]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[드로우 콜 (Draw Call)]], [[하드웨어 인스턴싱 (Hardware Instancing)]], [[프래그먼트 셰이딩 (Fragment Shading)]], [[오버드로우 (Overdraw)]] -- **Projects/Contexts:** [[Three.js]], [[WebGPU]], [[Unity]], [[BatchedMesh]] -- **Contradictions/Notes:** 실시간 렌더링 파이프라인에서 드로우 콜을 줄이기 위해 도입하는 InstancedMesh 기법은 CPU 오버헤드는 획기적으로 낮추지만, 가시성 판단 로직(시야 절두체 컬링) 부재와 객체 자동 정렬 기능의 한계로 인해 오히려 GPU 측(프래그먼트 처리 등)에 새로운 병목과 막대한 오버드로우 비용을 유발할 수 있다는 기술적 딜레마가 존재한다 [7-9, 15]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/실시간 렌더링 파이프라인.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/실시간 물리 시뮬레이션 동기화.md b/10_Wiki/Topics/Graphics & Performance/실시간 물리 시뮬레이션 동기화.md deleted file mode 100644 index 4deb289a..00000000 --- a/10_Wiki/Topics/Graphics & Performance/실시간 물리 시뮬레이션 동기화.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6A6001 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 실시간 물리 시뮬레이션 동기화" ---- - -# [[실시간 물리 시뮬레이션 동기화]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/실시간 물리 시뮬레이션 동기화.md]] ---- diff --git a/10_Wiki/Topics/Graphics & Performance/조직 행동론의 직무 몰입 연구.md b/10_Wiki/Topics/Graphics & Performance/조직 행동론의 직무 몰입 연구.md deleted file mode 100644 index 5a2112d2..00000000 --- a/10_Wiki/Topics/Graphics & Performance/조직 행동론의 직무 몰입 연구.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6B36D0 -category: "[[10_Wiki/💡 Topics/Graphics & Performance]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 조직 행동론의 직무 몰입 연구" ---- - -# [[조직 행동론의 직무 몰입 연구]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/조직 행동론의 직무 몰입 연구.md]] ---- diff --git a/10_Wiki/Topics/Health & Science/ACL-Injury-Prevention-Protocols.md b/10_Wiki/Topics/Health & Science/ACL-Injury-Prevention-Protocols.md deleted file mode 100644 index c76baa6f..00000000 --- a/10_Wiki/Topics/Health & Science/ACL-Injury-Prevention-Protocols.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AI-CEA4CC -category: "[[10_Wiki/💡 Topics/Health & Science]]" -confidence_score: 0.95 -tags: [] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Batch 9 - Wikified ACL-Injury-Prevention-Protocols" ---- - -# [[ACL-Injury-Prevention-Protocols]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> - -## 📖 구조화된 지식 (Synthesized Content) - - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 신규 문서로, 기존 정보와의 충돌 분석 예정. -- **정책 변화:** Health & Science 카테고리의 지식 연결망 강화를 위한 표준 위키화 적용. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/ACL-Injury-Prevention-Protocols.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Abstract Syntax Tree (AST).md b/10_Wiki/Topics/Programming & Language/Abstract Syntax Tree (AST).md deleted file mode 100644 index e4f68822..00000000 --- a/10_Wiki/Topics/Programming & Language/Abstract Syntax Tree (AST).md +++ /dev/null @@ -1,37 +0,0 @@ ---- -id: P-REINFORCE-AI-696634 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.95 -tags: [] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Batch 9 - Wikified Abstract Syntax Tree (AST)" ---- - -# [[Abstract Syntax Tree (AST)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 추상 구문 트리(AST, Abstract Syntax Tree)는 소스 코드를 파싱(Parsing)한 후 해당 언어의 문법적 구조를 계층적으로 표현한 트리 형태의 데이터 구조입니다 [1, 2]. 구체적 구문 트리(CST)와 달리 여백, 들여쓰기, 주석 등과 같은 레이아웃 및 스타일적 요소를 추상화하여 배제하며, 주로 소스 코드의 구문(syntax) 및 일부 어휘(lexical)적 특징만을 보존합니다 [1, 3, 4]. 이러한 특성 덕분에 주로 정적 애플리케이션 보안 테스트(SAST) 도구에서 오류를 분석하거나, 기계 학습을 통한 코드 저자 식별(Code Stylometry) 모델에서 코드를 표현하는 핵심 기반으로 폭넓게 활용됩니다 [1, 2, 5]. - -## 📖 구조화된 지식 (Synthesized Content) -* **AST의 기본 구조와 특징:** - AST는 소스 코드를 구문 분석하여 생성되며, 개발자가 언어의 문법 구조를 어떻게 조직했는지를 나타냅니다 [1]. 코드 내에서 들여쓰기를 재조정하는 등 레이아웃이나 시각적 형태를 변경하는 소스 대 소스(source-to-source) 변환이 발생하더라도, 파싱 후 생성되는 AST의 구조는 동일하게 유지됩니다 [3]. 전처리 과정을 거친 AST 표현에서는 기본적으로 주석이나 지시어(directives)가 포함되지 않으며, 매크로 역시 확장되지 않은 상태로 맵핑됩니다 [4]. 또한, Eclipse와 같은 환경에서 AST 노드는 단순한 1대1 매핑 구조가 아니라, 구문적 역할에 따라 여러 AST 인터페이스를 다중으로 구현하는 등 복잡한 클래스 계층(다형성) 구조를 띠게 됩니다 [6]. - -* **정적 애플리케이션 보안 테스트(SAST)에서의 활용:** - 정적 분석 기술은 프로그램을 실행하지 않고 소스 코드 자체를 평가하는 데 사용됩니다. 이 과정에서 SAST 도구들은 소스 코드를 파싱하여 추상 구문 트리(AST)를 구축합니다 [2]. 구축된 AST를 기반으로 다양한 분석 기법을 적용하여 코딩 실수, 보안 취약점, 성능 병목 현상 등 잠재적인 문제를 탐지해 냅니다 [2]. - -* **코드 스타일로메트리(저자 식별)에서의 역할:** - 코드의 저자를 자동 식별하는 기계 학습 기반의 코드 스타일로메트리(Code Stylometry) 연구에서 AST는 소스 코드를 표현하는 주요 수단으로 쓰입니다 [1, 5]. AST는 레이아웃적 특징을 포착하지는 못하지만, 개발자 특유의 추상적인 구문적 특징과 본질적인 코딩 스타일을 추출하는 데 탁월합니다 [7]. 실제 연구에 따르면, 파싱된 코드의 AST 노드 유형의 유니그램(unigram) 빈도나 가능한 모든 AST 노드 바이그램(bigram)의 tf-idf 값 등은 특정 프로그래머를 식별하는 데 매우 강력하고 핵심적인 특징(Feature)으로 작용하는 것으로 보고되었습니다 [5, 8]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 신규 문서로, 기존 정보와의 충돌 분석 예정. -- **정책 변화:** Programming & Language 카테고리의 지식 연결망 강화를 위한 표준 위키화 적용. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Concrete Syntax Tree (CST)]], [[Static Application Security Testing (SAST)]], [[Code Stylometry]], [[Parsing]] -- **Projects/Contexts:** [[기계 학습 기반 저자 식별 (Machine Learning-based Code Stylometry)]], [[Eclipse C/C++ Development Tools (CDT)]], [[코드 정적 분석 도구]] -- **Contradictions/Notes:** 소스 코드의 본질적이고 구문적인 스타일을 분석하는 데는 AST가 핵심적으로 사용되지만, 코드의 들여쓰기, 공백과 같은 시각적 레이아웃 특징을 담아내지는 못합니다. 따라서 포맷팅이나 난독화 등이 프로그래머의 식별 가능성에 미치는 영향을 분석해야 할 경우에는 AST보다는 이를 모두 포함하는 구체적 구문 트리(CST)를 사용하는 것이 더 효과적이라는 지적이 있습니다 [1, 3, 7]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Abstract Syntax Tree (AST).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Albion Online (Full Loot_Player-Driven Production).md b/10_Wiki/Topics/Programming & Language/Albion Online (Full Loot_Player-Driven Production).md deleted file mode 100644 index dace6460..00000000 --- a/10_Wiki/Topics/Programming & Language/Albion Online (Full Loot_Player-Driven Production).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DCA70F -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Albion Online (Full Loot_Player-Driven Production)" ---- - -# [[Albion Online (Full Loot_Player-Driven Production)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Albion Online (Full Loot_Player-Driven Production).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Allocation Timeline(할당 타임라인).md b/10_Wiki/Topics/Programming & Language/Allocation Timeline(할당 타임라인).md deleted file mode 100644 index 8e1bd65a..00000000 --- a/10_Wiki/Topics/Programming & Language/Allocation Timeline(할당 타임라인).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-891010 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Allocation Timeline(할당 타임라인)" ---- - -# [[Allocation Timeline(할당 타임라인)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> Allocation Timeline(할당 타임라인)은 Chrome 및 Edge DevTools에서 제공하는 프로파일링 도구로, 적절하게 가비지 컬렉션(Garbage Collection)되지 않고 메모리를 계속 점유하는 객체를 찾아 메모리 누수를 추적하는 데 사용됩니다 [1, 2]. 이 도구는 힙 프로파일러의 상세한 스냅샷 정보와 타임라인 패널의 점진적 추적 기능을 결합하여, 기록 중 발생하는 모든 메모리 할당을 스택 트레이스와 함께 기록합니다 [1-3]. 결과적으로 시각적인 막대(파란색 및 회색)를 통해 메모리에 남아있는 객체와 이미 수거된 객체를 구별하여 보여줍니다 [3-5]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Garbage Collection]], [[Memory Leak]], [[Heap Snapshot]] -- **Projects/Contexts:** [[Chrome DevTools]], [[V8 Engine]] -- **Contradictions/Notes:** 소스에 관련 정보가 부족합니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Allocation Timeline(할당 타임라인).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Athletic-Performance-Optimization.md b/10_Wiki/Topics/Programming & Language/Athletic-Performance-Optimization.md deleted file mode 100644 index e6049a79..00000000 --- a/10_Wiki/Topics/Programming & Language/Athletic-Performance-Optimization.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-18F4BB -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Athletic-Performance-Optimization" ---- - -# [[Athletic-Performance-Optimization]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Athletic-Performance-Optimization.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Authorship Attribution.md b/10_Wiki/Topics/Programming & Language/Authorship Attribution.md deleted file mode 100644 index 16dff010..00000000 --- a/10_Wiki/Topics/Programming & Language/Authorship Attribution.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -id: P-REINFORCE-AUTO-750690 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Authorship Attribution" ---- - -# [[Authorship Attribution]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **발전 배경과 개념:** - 저자 식별은 본래 손글씨나 문서의 물리적 특성을 주관적으로 감정하던 것에서 출발하여, 글의 내용과 어휘, 문법 등 '문체(Style)'를 통계적으로 분석하는 문체론(Stylometry)으로 발전했습니다 [3, 6, 7]. 1980년대 후반부터는 이 기법론이 소프트웨어에도 적용되기 시작하여, 프로그래머가 작성한 소스 코드나 실행 파일에서 고유한 프로그래밍 스타일을 추출하는 '코드 문체론(Code Stylometry)'으로 확장되었습니다 [1, 2]. -* **주요 식별 특징 (Features):** - 코드 문체론에서는 작성자의 스타일을 크게 세 가지 범주로 나누어 분석합니다. 첫째, 문자와 단어의 사용 패턴을 보는 '어휘적(Lexical) 특징', 둘째, 파싱된 추상 구문 트리(AST)의 구조를 분석하는 '구문적(Syntactic) 특징', 셋째, 띄어쓰기와 들여쓰기 등을 포함하는 '레이아웃(Layout) 특징'입니다 [8]. 컴파일된 실행 파일(Binary)의 경우 레이아웃과 주석이 제거되지만, 데이터 구조의 선택, 시스템/라이브러리 호출 패턴, 제어 흐름 그래프(CFG), 레지스터 흐름 등을 통해 여전히 작성자를 식별할 수 있습니다 [9-12]. -* **응용 분야와 프라이버시 위협:** - 이 기술은 코드 클론 탐지, 저작권 분쟁 해결, 표절 탐지(Plagiarism Detection) 및 유실된 저자 정보 복원 등에 매우 효과적으로 사용됩니다 [4, 13, 14]. 그러나 사이버 범죄자 추적을 넘어, 억압적인 정권 하에서 익명으로 검열 우회 도구나 프라이버시 강화 기술을 개발하는 오픈소스 기여자들의 신원을 노출시키는 데 악용될 수 있다는 심각한 우려가 제기되고 있습니다 [4, 5, 15, 16]. -* **코드 포맷팅과 축소화(Minification)의 영향:** - 개발자들이 코드의 일관성을 위해 Black과 같은 코드 포맷터(Formatter)나, 파일 크기를 줄이기 위한 축소기(Minifier)를 사용하면 작성자 고유의 레이아웃 특징 등이 훼손되어 저자 식별의 정확도가 유의미하게 하락합니다 [17-20]. 연구에 따르면, 구체 구문 트리(CST) 기반 분석에서 포맷팅과 축소화를 거친 코드는 원본에 비해 식별 정확도가 최대 18%가량(68%에서 50% 수준으로) 떨어졌습니다 [20, 21]. 하지만 이러한 하락에도 불구하고 무작위 추측 확률에 비해서는 월등히 높은 정확도를 보였으며, 단순히 포맷팅이나 축소화를 적용하는 것만으로는 저자 식별을 완전히 피할 수 없다는 것이 확인되었습니다 [21-24]. -* **적대적 코드 문체론 (Adversarial Code Stylometry):** - 저자 식별 기술에 대응하기 위해, 기계학습 모델(예: 랜덤 포레스트)의 결정 트리를 분석하여 자신의 코딩 스타일을 난독화(Obfuscation)하거나 다른 특정 개발자의 스타일을 정교하게 모방(Mimicry)하도록 돕는 연구가 진행되었습니다 [25, 26]. 이 기술을 자동화한 'StyleCounsel'과 같은 시스템은 사용자의 코드가 다른 사람의 코드로 오분류되도록 소스 코드 수정 권장 사항을 도출해 내며, 저자 식별 기술이 의도적인 조작에 취약할 수 있음을 입증했습니다 [25, 27, 28]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Code Stylometry]], [[Plagiarism Detection]], [[Code Formatting]], [[Adversarial Code Stylometry]] -- **Projects/Contexts:** [[Google Code Jam]] (소스 코드 저자 식별 연구에서 광범위하게 사용되는 주요 데이터셋), [[StyleCounsel]] (적대적 저자 식별 회피를 돕기 위해 개발된 도구) -- **Contradictions/Notes:** 소스코드가 컴파일되면 주석, 들여쓰기, 변수명 등이 파괴되므로 작성자의 흔적이 사라질 것이라 예상하기 쉽지만, 실제로는 컴파일러 최적화 수준과 관계없이 실행 파일 내 제어 흐름과 데이터 구조 선택 방식 등의 정보가 남아 있어 상당한 정확도로 저자 식별(Executable Code Attribution)이 가능합니다 [29, 30]. 또한, 포맷터와 Minifier의 사용이 코드 문체론을 교란하기는 하나 식별을 완벽히 방어해주지는 못합니다 [24, 31]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Authorship Attribution.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Autotelic Personality.md b/10_Wiki/Topics/Programming & Language/Autotelic Personality.md deleted file mode 100644 index f696bfab..00000000 --- a/10_Wiki/Topics/Programming & Language/Autotelic Personality.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-75E436 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Autotelic Personality" ---- - -# [[Autotelic Personality]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Autotelic Personality.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Autotelic-Personality.md b/10_Wiki/Topics/Programming & Language/Autotelic-Personality.md deleted file mode 100644 index 1f3164a1..00000000 --- a/10_Wiki/Topics/Programming & Language/Autotelic-Personality.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-13B1BE -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Autotelic-Personality" ---- - -# [[Autotelic-Personality]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Autotelic-Personality.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/BM25 알고리즘 (Best Match 25).md b/10_Wiki/Topics/Programming & Language/BM25 알고리즘 (Best Match 25).md deleted file mode 100644 index 3d0bec71..00000000 --- a/10_Wiki/Topics/Programming & Language/BM25 알고리즘 (Best Match 25).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CA15D0 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - BM25 알고리즘 (Best Match 25)" ---- - -# [[BM25 알고리즘 (Best Match 25)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/BM25 알고리즘 (Best Match 25).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Biomechanical-Analysis.md b/10_Wiki/Topics/Programming & Language/Biomechanical-Analysis.md deleted file mode 100644 index 80968c04..00000000 --- a/10_Wiki/Topics/Programming & Language/Biomechanical-Analysis.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C5D712 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Biomechanical-Analysis" ---- - -# [[Biomechanical-Analysis]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Biomechanical-Analysis.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Biomechanics.md b/10_Wiki/Topics/Programming & Language/Biomechanics.md deleted file mode 100644 index b197621e..00000000 --- a/10_Wiki/Topics/Programming & Language/Biomechanics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-93212D -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Biomechanics" ---- - -# [[Biomechanics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Biomechanics.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Black-box Testing.md b/10_Wiki/Topics/Programming & Language/Black-box Testing.md deleted file mode 100644 index a928dee8..00000000 --- a/10_Wiki/Topics/Programming & Language/Black-box Testing.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DC07C2 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Black-box Testing" ---- - -# [[Black-box Testing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 블랙박스 테스팅(Black-box Testing)은 애플리케이션의 내부 소스 코드를 보지 않고 외부에서 실행 중인 애플리케이션을 기반으로 테스트하는 방법입니다 [1], [2]. 대표적인 예로 DAST(동적 애플리케이션 보안 테스트)가 블랙박스 테스팅 방식을 취하며, 주로 CI 파이프라인의 후반부에 적용됩니다 [2]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[DAST]], [[White-box Testing]], [[SAST]] -- **Projects/Contexts:** [[CI Pipeline]] -- **Contradictions/Notes:** 소스 데이터는 블랙박스 테스팅을 독립된 주제로 다루기보다는, 내부 소스 코드 기반의 정적 분석(SAST)인 화이트박스 테스팅과 대비되는 개념(DAST)으로 설명하고 있습니다 [1], [2]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/Black-box Testing.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Branded Types.md b/10_Wiki/Topics/Programming & Language/Branded Types.md deleted file mode 100644 index 9c5bb869..00000000 --- a/10_Wiki/Topics/Programming & Language/Branded Types.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -id: P-REINFORCE-AUTO-494E42 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Branded Types" ---- - -# [[Branded Types]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -**Branded Types의 등장 배경과 원리** -TypeScript는 이름이 아닌 구조를 기준으로 호환성을 판단하는 구조적 타이핑(덕 타이핑)을 사용합니다 [7, 8]. 이로 인해 사용자 ID와 주문 ID, 혹은 이메일과 일반 이름이 모두 `string` 타입일 경우, 서로 잘못 전달되더라도 컴파일러가 오류를 잡아내지 못합니다 [2, 3, 5]. 이러한 문제를 방지하기 위해 `type UserId = string & { readonly __brand: unique symbol }`과 같이 교집합(`&`)과 고유 속성을 활용하여 런타임 구조는 동일하지만 타입 시스템 상에서는 완전히 구별되는 명목적(Nominal) 타입을 에뮬레이트하는 것이 Branded Types의 핵심 원리입니다 [3-5]. - -**타입 생성과 런타임 검증의 결합** -개발자가 Branded Type 값을 생성하려면, 해당 값이 지정된 조건을 만족하는지 컴파일러에 알려주어야 합니다 [9]. -* **Type Assertions (`as`)**: 가장 간단하지만 개발자의 실수로 잘못된 값을 강제할 위험이 있습니다 [10, 11]. -* **Type Predicates**: `isPositive(value: number): value is Positive`와 같은 커스텀 타입 가드 함수를 만들어 안전하게 타입을 좁힙니다 [12]. -* **Assertion Functions**: 조건에 맞지 않으면 런타임 에러를 던지도록 하여, 통과한 값만 해당 타입으로 취급되게 합니다 [13, 14]. -* **유효성 검사 라이브러리 연동**: "검증하지 말고 파싱하라(Parse, Don't Validate)"는 철학과 결합하여, Zod와 같은 라이브러리의 `.brand()` 메서드를 활용하면 런타임 검증과 컴파일 타임 Branded Type 생성을 우아하게 결합할 수 있습니다 [15-18]. - -**주요 활용 사례** -* **도메인 데이터 격리**: User ID와 Order ID(GUID 등)를 분리하여 서로 섞이는 것을 방지합니다 [16, 19]. -* **안전성 강제**: XSS 공격을 방지하기 위해 일반 문자열과 '소독된(Sanitized) 문자열'을 엄격하게 구분합니다 [20]. -* **수치 연산 통제**: 서로 다른 통화(Currency)끼리 합산되는 것을 막거나, 양수(Positive) 혹은 특정 범위 내의 숫자만 허용하도록 강제합니다 [21-23]. - -**브랜드 강도에 따른 변형 (Variations)** -필요한 엄격함의 수준에 따라 Branded Type의 구현 방식을 나눌 수 있습니다 [3, 24]. -* **Weak Brand**: 기본 타입으로 암시적 변환이 허용되어 사용이 쉽습니다 (`type T = base & Tag`) [3, 24]. -* **Strong Brand**: 명시적 캐스팅 없이는 기본 타입으로 호환되지 않아 높은 수준의 격리를 제공합니다 (`type T = (base & Tag) | Tag`) [3, 25]. -* **Super Brand**: 캐스팅조차 매우 어렵게 설계하여 외부 유출을 철저히 차단하는 형태입니다 [3, 26]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Structural Typing]], [[Primitive Obsession]], [[Type Predicates]], [[Parse, Don't Validate]] -- **Projects/Contexts:** [[Domain-Driven Design (DDD)]], [[Zod]], [[Effect TS]], [[ts-brand]] -- **Contradictions/Notes:** Branded Types는 강력한 안전성을 제공하지만 코드의 개념적 복잡성을 증가시키고 보일러플레이트 코드를 유발합니다 [27, 28]. 따라서 유니온(Unions), 열거형(Enums), 템플릿 리터럴 타입(Template Literal Types)과 같은 단순한 대안으로 해결 가능한 상황이라면 도입 시 이점과 유지보수 비용을 저울질해야 한다고 경고하고 있습니다 [29-31]. 또한, TypeScript 언어 자체에 명목적 타이핑(Nominal typing)을 직접 지원하자는 논의는 커뮤니티에서 오랫동안 있었으나 아직 명확한 합의에 이르지는 못했습니다 [9, 32]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/Branded Types.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/CI_CD 파이프라인 (CI_CD Pipelines).md b/10_Wiki/Topics/Programming & Language/CI_CD 파이프라인 (CI_CD Pipelines).md deleted file mode 100644 index 3d4a5870..00000000 --- a/10_Wiki/Topics/Programming & Language/CI_CD 파이프라인 (CI_CD Pipelines).md +++ /dev/null @@ -1,33 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3D8966 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - CI_CD 파이프라인 (CI_CD Pipelines)" ---- - -# [[CI_CD 파이프라인 (CI_CD Pipelines)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **보안 및 품질 검사의 자동화 통합 (Shift-left):** CI/CD 파이프라인은 개발자가 코드를 푸시하거나 풀 리퀘스트(PR)를 생성할 때마다 백그라운드에서 자동으로 코드 스캔을 실행합니다 [3, 7-10]. 이를 통해 코드 스멜, 보안 취약점(예: SQL 인젝션, 하드코딩된 비밀번호 등), 문법 오류를 개발 초기 단계에서 식별하여 수정 비용을 최소화하는 '시프트 레프트(Shift-left)' 전략을 실현합니다 [3, 4, 11]. -- **품질 게이트(Quality Gate)와 빌드 차단:** CI/CD 파이프라인 내에 심각도 임계값이나 보안 정책을 기반으로 한 '품질 게이트'를 설정할 수 있습니다 [2, 12, 13]. SonarQube, Snyk 등과 통합되어 코드가 조직의 보안 및 품질 표준을 충족하지 못할 경우 빌드와 병합을 자동으로 실패 처리(Fail builds or block merges)하여 악성 코드나 결함 있는 코드가 릴리스되는 것을 방지합니다 [6, 11, 14, 15]. -- **로컬 검사와의 차이점 및 보완:** 로컬에서 실행되는 Git Hooks(예: Husky, lint-staged)는 변경된 파일만 빠르게 검사하고 개발자가 우회(Bypass)할 수도 있는 편의성 도구인 반면, CI/CD 파이프라인은 우회할 수 없는 최종적인 집행 경계(Enforcement boundary)입니다 [5, 16, 17]. 따라서 CI/CD에서는 전체 테스트 스위트 실행, 심층적인 타입 체크, 전체 코드베이스 린팅과 같이 로컬에서 수행하기엔 무거운 전체 검사를 수행하도록 구성됩니다 [17-19]. -- **도구 적용 시의 성능 고려:** 대규모 저장소에서 정밀한 정적 분석 도구를 CI/CD 환경에 통합하면 빌드 소요 시간이 길어질 수 있는 단점이 존재합니다 [20-22]. 이를 최적화하기 위해 파이프라인 내에서 변경된 코드만 스캔하는 증분 스캔(Incremental/differential scanning) 방식을 도입하여 빠른 피드백 루프를 유지하는 것이 권장됩니다 [11]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[SAST (Static Application Security Testing)]], [[Quality Gate]], [[Automated Code Review]], [[Shift-left]], [[Git Hooks]] -- **Projects/Contexts:** [[GitHub Actions, GitLab CI, Jenkins (CI/CD Platforms)]], [[SonarQube / Snyk Code Integration]] -- **Contradictions/Notes:** 개발 로컬 환경에서의 Git Hooks(Husky 등) 검사는 빠른 피드백을 제공하지만 개발자에 의해 의도적으로 무시될 수 있습니다. 반면 CI/CD 파이프라인에서의 검사는 조직의 규칙을 최종적으로 집행하므로, 로컬 검사가 CI/CD 파이프라인의 필요성을 대체할 수는 없다고 소스들은 강조합니다 [5, 16]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/CI_CD 파이프라인 (CI_CD Pipelines).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Causal Tracing (인과적 추적).md b/10_Wiki/Topics/Programming & Language/Causal Tracing (인과적 추적).md deleted file mode 100644 index 3aa740cf..00000000 --- a/10_Wiki/Topics/Programming & Language/Causal Tracing (인과적 추적).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BFC9FF -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Causal Tracing (인과적 추적)" ---- - -# [[Causal Tracing (인과적 추적)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Causal Tracing (인과적 추적).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Cellular-Automata.md b/10_Wiki/Topics/Programming & Language/Cellular-Automata.md deleted file mode 100644 index 6402a384..00000000 --- a/10_Wiki/Topics/Programming & Language/Cellular-Automata.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D84732 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cellular-Automata" ---- - -# [[Cellular-Automata]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cellular-Automata.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Chaos Theory.md b/10_Wiki/Topics/Programming & Language/Chaos Theory.md deleted file mode 100644 index 102eff6e..00000000 --- a/10_Wiki/Topics/Programming & Language/Chaos Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1F2821 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Chaos Theory" ---- - -# [[Chaos Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Chaos Theory.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Chaos-Theory.md b/10_Wiki/Topics/Programming & Language/Chaos-Theory.md deleted file mode 100644 index efb7ed05..00000000 --- a/10_Wiki/Topics/Programming & Language/Chaos-Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-639E39 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Chaos-Theory" ---- - -# [[Chaos-Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Chaos-Theory.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Chrome 렌더러 프로세스 V8 샌드박스 보안.md b/10_Wiki/Topics/Programming & Language/Chrome 렌더러 프로세스 V8 샌드박스 보안.md deleted file mode 100644 index d2a15fcc..00000000 --- a/10_Wiki/Topics/Programming & Language/Chrome 렌더러 프로세스 V8 샌드박스 보안.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3832A0 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Chrome 렌더러 프로세스 V8 샌드박스 보안" ---- - -# [[Chrome 렌더러 프로세스 V8 샌드박스 보안]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> V8 샌드박스(또는 메모리 케이지)는 Chrome 103 및 이후 이를 도입한 Electron 등에서 V8 JavaScript 엔진 내 발생하는 취약점 악용을 근본적으로 방지하기 위해 설계된 보안 기술입니다 [1, 2]. 힙 내에 실제 메모리 포인터를 저장하는 대신 예약된 메모리 영역의 기준 주소로부터의 32비트 오프셋(offset)만 저장하는 포인터 압축(Pointer Compression) 기술을 사용합니다 [2-4]. 이를 통해 공격자가 메모리 손상 버그를 악용하더라도 그 피해 및 메모리 접근 범위를 4GB 크기의 샌드박스 내부로 제한하여 프로세스 전체의 탈취를 막고 보안을 강화합니다 [2, 5]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Pointer Compression]], [[Type Confusion]], [[ArrayBuffer]], [[Just-In-Time (JIT) Compiler]] -- **Projects/Contexts:** [[Chrome 103]], [[Electron 21]] -- **Contradictions/Notes:** 소스는 V8 샌드박스와 포인터 압축 기술이 보안, 성능, 메모리 사용량 측면에서 큰 이점을 제공한다고 설명하지만, 이로 인해 V8 힙의 최대 크기가 4GB로 제한되는 명확한 단점(trade-off)이 존재한다고 지적합니다 [5, 14]. 대용량 메모리가 필요한 특수한 경우, 포인터 압축을 비활성화한 사용자 지정 빌드를 사용하거나 하위 프로세스로 작업을 분리해야 할 수도 있습니다 [15]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Chrome 렌더러 프로세스 V8 샌드박스 보안.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Clean as You Code.md b/10_Wiki/Topics/Programming & Language/Clean as You Code.md deleted file mode 100644 index 115a0317..00000000 --- a/10_Wiki/Topics/Programming & Language/Clean as You Code.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B535E8 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Clean as You Code" ---- - -# [[Clean as You Code]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 'Clean as You Code'는 레거시 백로그(legacy backlogs)를 처리하는 것에 집중하기보다는, 새로 작성되거나 변경된 코드의 문제를 즉시 해결하는 데 중점을 두는 방법론입니다 [1]. 이 접근 방식은 개발자가 코드를 병합하거나 수정할 때마다 코드 품질과 보안을 점진적이고 지속적으로 향상시키는 것을 목표로 합니다 [1, 2]. 소스에 관련 정보가 부족하지만, 주로 SonarQube 플랫폼에서 지속적인 코드 분석과 품질 관리를 장려하기 위해 사용하는 핵심 철학으로 소개됩니다 [1, 2]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[SonarQube]], [[Technical Debt]], [[Static Application Security Testing (SAST)]] -- **Projects/Contexts:** [[SonarQube 플랫폼을 활용한 CI/CD 파이프라인 내 자동화된 코드 리뷰 및 품질 게이트 적용]] -- **Contradictions/Notes:** 소스 내에서 'Clean as You Code'라는 정확한 용어는 SonarQube의 방법론을 설명하는 단 한 문장[1]에만 등장합니다. 따라서 상세한 원리 및 배경에 대해서는 소스에 관련 정보가 부족하며, SonarQube의 코드 분석 철학을 바탕으로 내용을 합성했습니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Clean as You Code.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Codemod-Engineering.md b/10_Wiki/Topics/Programming & Language/Codemod-Engineering.md deleted file mode 100644 index 2c9916a9..00000000 --- a/10_Wiki/Topics/Programming & Language/Codemod-Engineering.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-084361 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Codemod-Engineering" ---- - -# [[Codemod-Engineering]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Codemod-Engineering.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Complex Adaptive Systems.md b/10_Wiki/Topics/Programming & Language/Complex Adaptive Systems.md deleted file mode 100644 index 9a237d70..00000000 --- a/10_Wiki/Topics/Programming & Language/Complex Adaptive Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AB2667 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Complex Adaptive Systems" ---- - -# [[Complex Adaptive Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Complex Adaptive Systems.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Complex-Adaptive-Systems.md b/10_Wiki/Topics/Programming & Language/Complex-Adaptive-Systems.md deleted file mode 100644 index 300708c6..00000000 --- a/10_Wiki/Topics/Programming & Language/Complex-Adaptive-Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A9DF17 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Complex-Adaptive-Systems" ---- - -# [[Complex-Adaptive-Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Complex-Adaptive-Systems.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Conscientiousness.md b/10_Wiki/Topics/Programming & Language/Conscientiousness.md deleted file mode 100644 index 27a51e59..00000000 --- a/10_Wiki/Topics/Programming & Language/Conscientiousness.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-04F596 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Conscientiousness" ---- - -# [[Conscientiousness]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Conscientiousness.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Control-Flow-Analysis.md b/10_Wiki/Topics/Programming & Language/Control-Flow-Analysis.md deleted file mode 100644 index 8f082b6e..00000000 --- a/10_Wiki/Topics/Programming & Language/Control-Flow-Analysis.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-452CC1 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Control-Flow-Analysis" ---- - -# [[Control-Flow-Analysis]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Control-Flow-Analysis.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Covariance-and-Contravariance.md b/10_Wiki/Topics/Programming & Language/Covariance-and-Contravariance.md deleted file mode 100644 index bd536fd3..00000000 --- a/10_Wiki/Topics/Programming & Language/Covariance-and-Contravariance.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1D016B -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Covariance-and-Contravariance" ---- - -# [[Covariance-and-Contravariance]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Covariance-and-Contravariance.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Cybertext.md b/10_Wiki/Topics/Programming & Language/Cybertext.md deleted file mode 100644 index 5cf77b2f..00000000 --- a/10_Wiki/Topics/Programming & Language/Cybertext.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-52E635 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cybertext" ---- - -# [[Cybertext]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cybertext.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Cypher 질의 언어 (Neo4j).md b/10_Wiki/Topics/Programming & Language/Cypher 질의 언어 (Neo4j).md deleted file mode 100644 index 85c5b087..00000000 --- a/10_Wiki/Topics/Programming & Language/Cypher 질의 언어 (Neo4j).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C101DD -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Cypher 질의 언어 (Neo4j)" ---- - -# [[Cypher 질의 언어 (Neo4j)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Cypher 질의 언어 (Neo4j).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/DefinitelyTyped and Ambient Declarations.md b/10_Wiki/Topics/Programming & Language/DefinitelyTyped and Ambient Declarations.md deleted file mode 100644 index 4183ca71..00000000 --- a/10_Wiki/Topics/Programming & Language/DefinitelyTyped and Ambient Declarations.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8435E3 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - DefinitelyTyped and Ambient Declarations" ---- - -# [[DefinitelyTyped and Ambient Declarations]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/DefinitelyTyped and Ambient Declarations.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Description Logic (기술 논리).md b/10_Wiki/Topics/Programming & Language/Description Logic (기술 논리).md deleted file mode 100644 index 78e4be28..00000000 --- a/10_Wiki/Topics/Programming & Language/Description Logic (기술 논리).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-442F1D -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Description Logic (기술 논리)" ---- - -# [[Description Logic (기술 논리)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Description Logic (기술 논리).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Deterministic Algorithms.md b/10_Wiki/Topics/Programming & Language/Deterministic Algorithms.md deleted file mode 100644 index 7cbd5b1c..00000000 --- a/10_Wiki/Topics/Programming & Language/Deterministic Algorithms.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FB6D64 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Deterministic Algorithms" ---- - -# [[Deterministic Algorithms]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Deterministic Algorithms.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Disentanglement (개념 분리).md b/10_Wiki/Topics/Programming & Language/Disentanglement (개념 분리).md deleted file mode 100644 index cb6f6591..00000000 --- a/10_Wiki/Topics/Programming & Language/Disentanglement (개념 분리).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3C9639 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Disentanglement (개념 분리)" ---- - -# [[Disentanglement (개념 분리)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Disentanglement (개념 분리).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Dublin Core Metadata Initiative.md b/10_Wiki/Topics/Programming & Language/Dublin Core Metadata Initiative.md deleted file mode 100644 index 2327d14d..00000000 --- a/10_Wiki/Topics/Programming & Language/Dublin Core Metadata Initiative.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4C7308 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Dublin Core Metadata Initiative" ---- - -# [[Dublin Core Metadata Initiative]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Dublin Core Metadata Initiative.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Dwarf Fortress (Simulation-heavy PCG).md b/10_Wiki/Topics/Programming & Language/Dwarf Fortress (Simulation-heavy PCG).md deleted file mode 100644 index 2a2744f9..00000000 --- a/10_Wiki/Topics/Programming & Language/Dwarf Fortress (Simulation-heavy PCG).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D6FB1C -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Dwarf Fortress (Simulation-heavy PCG)" ---- - -# [[Dwarf Fortress (Simulation-heavy PCG)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Dwarf Fortress (Simulation-heavy PCG).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Dwarf-Fortress.md b/10_Wiki/Topics/Programming & Language/Dwarf-Fortress.md deleted file mode 100644 index 96fc827d..00000000 --- a/10_Wiki/Topics/Programming & Language/Dwarf-Fortress.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1E23B6 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Dwarf-Fortress" ---- - -# [[Dwarf-Fortress]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Dwarf-Fortress.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Emergent Gameplay Theory.md b/10_Wiki/Topics/Programming & Language/Emergent Gameplay Theory.md deleted file mode 100644 index 6ce545e5..00000000 --- a/10_Wiki/Topics/Programming & Language/Emergent Gameplay Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7320C9 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Emergent Gameplay Theory" ---- - -# [[Emergent Gameplay Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Emergent Gameplay Theory.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Emergent Gameplay.md b/10_Wiki/Topics/Programming & Language/Emergent Gameplay.md deleted file mode 100644 index b2a644d7..00000000 --- a/10_Wiki/Topics/Programming & Language/Emergent Gameplay.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-30AB3F -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Emergent Gameplay" ---- - -# [[Emergent Gameplay]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Emergent Gameplay.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Emergent Systems.md b/10_Wiki/Topics/Programming & Language/Emergent Systems.md deleted file mode 100644 index 8c2087b3..00000000 --- a/10_Wiki/Topics/Programming & Language/Emergent Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-98C9F1 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Emergent Systems" ---- - -# [[Emergent Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Emergent Systems.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Emergent-Gameplay.md b/10_Wiki/Topics/Programming & Language/Emergent-Gameplay.md deleted file mode 100644 index d8e8bdf9..00000000 --- a/10_Wiki/Topics/Programming & Language/Emergent-Gameplay.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B15A5A -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Emergent-Gameplay" ---- - -# [[Emergent-Gameplay]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Emergent-Gameplay.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Entity Component System (ECS).md b/10_Wiki/Topics/Programming & Language/Entity Component System (ECS).md deleted file mode 100644 index e28a40bc..00000000 --- a/10_Wiki/Topics/Programming & Language/Entity Component System (ECS).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-523650 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Entity Component System (ECS)" ---- - -# [[Entity Component System (ECS)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Entity Component System (ECS).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Epigenetics of Neuroplasticity.md b/10_Wiki/Topics/Programming & Language/Epigenetics of Neuroplasticity.md deleted file mode 100644 index a351948a..00000000 --- a/10_Wiki/Topics/Programming & Language/Epigenetics of Neuroplasticity.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0EB0EC -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Epigenetics of Neuroplasticity" ---- - -# [[Epigenetics of Neuroplasticity]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Epigenetics of Neuroplasticity.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Feature Ablation (피처 제거).md b/10_Wiki/Topics/Programming & Language/Feature Ablation (피처 제거).md deleted file mode 100644 index 1512c707..00000000 --- a/10_Wiki/Topics/Programming & Language/Feature Ablation (피처 제거).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-41CA87 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Feature Ablation (피처 제거)" ---- - -# [[Feature Ablation (피처 제거)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Feature Ablation (피처 제거).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Federated SPARQL (연합 질의).md b/10_Wiki/Topics/Programming & Language/Federated SPARQL (연합 질의).md deleted file mode 100644 index 69575f41..00000000 --- a/10_Wiki/Topics/Programming & Language/Federated SPARQL (연합 질의).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-04F8F3 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Federated SPARQL (연합 질의)" ---- - -# [[Federated SPARQL (연합 질의)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Federated SPARQL (연합 질의).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Finite-State-Machines-in-TypeScript.md b/10_Wiki/Topics/Programming & Language/Finite-State-Machines-in-TypeScript.md deleted file mode 100644 index 6ce2228b..00000000 --- a/10_Wiki/Topics/Programming & Language/Finite-State-Machines-in-TypeScript.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A0FC70 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Finite-State-Machines-in-TypeScript" ---- - -# [[Finite-State-Machines-in-TypeScript]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Finite-State-Machines-in-TypeScript.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Flow Theory.md b/10_Wiki/Topics/Programming & Language/Flow Theory.md deleted file mode 100644 index f4137dc0..00000000 --- a/10_Wiki/Topics/Programming & Language/Flow Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B216EA -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Flow Theory" ---- - -# [[Flow Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Flow Theory.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Flow-Theory.md b/10_Wiki/Topics/Programming & Language/Flow-Theory.md deleted file mode 100644 index 584a2615..00000000 --- a/10_Wiki/Topics/Programming & Language/Flow-Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7C8E03 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Flow-Theory" ---- - -# [[Flow-Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Flow-Theory.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Fractal-Geometry.md b/10_Wiki/Topics/Programming & Language/Fractal-Geometry.md deleted file mode 100644 index a764e683..00000000 --- a/10_Wiki/Topics/Programming & Language/Fractal-Geometry.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FCAC5E -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Fractal-Geometry" ---- - -# [[Fractal-Geometry]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Fractal-Geometry.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Function-Overloading.md b/10_Wiki/Topics/Programming & Language/Function-Overloading.md deleted file mode 100644 index e2f632e6..00000000 --- a/10_Wiki/Topics/Programming & Language/Function-Overloading.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9ABCD8 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Function-Overloading" ---- - -# [[Function-Overloading]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Function-Overloading.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Function-Signature-Compatibility.md b/10_Wiki/Topics/Programming & Language/Function-Signature-Compatibility.md deleted file mode 100644 index 35ef4ed8..00000000 --- a/10_Wiki/Topics/Programming & Language/Function-Signature-Compatibility.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D7BC47 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Function-Signature-Compatibility" ---- - -# [[Function-Signature-Compatibility]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Function-Signature-Compatibility.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/GQL (Graph Query Language ISO 표준).md b/10_Wiki/Topics/Programming & Language/GQL (Graph Query Language ISO 표준).md deleted file mode 100644 index 46140775..00000000 --- a/10_Wiki/Topics/Programming & Language/GQL (Graph Query Language ISO 표준).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F13C1F -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - GQL (Graph Query Language ISO 표준)" ---- - -# [[GQL (Graph Query Language ISO 표준)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/GQL (Graph Query Language, ISO 표준).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Game Studies (Digital Media Theory).md b/10_Wiki/Topics/Programming & Language/Game Studies (Digital Media Theory).md deleted file mode 100644 index 6dacef14..00000000 --- a/10_Wiki/Topics/Programming & Language/Game Studies (Digital Media Theory).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-46EF56 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game Studies (Digital Media Theory)" ---- - -# [[Game Studies (Digital Media Theory)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game Studies (Digital Media Theory).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Game Studies (Ludology vs Narratology).md b/10_Wiki/Topics/Programming & Language/Game Studies (Ludology vs Narratology).md deleted file mode 100644 index 0a5c0681..00000000 --- a/10_Wiki/Topics/Programming & Language/Game Studies (Ludology vs Narratology).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A1A637 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game Studies (Ludology vs Narratology)" ---- - -# [[Game Studies (Ludology vs Narratology)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game Studies (Ludology vs. Narratology).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Game Studies.md b/10_Wiki/Topics/Programming & Language/Game Studies.md deleted file mode 100644 index f1bc9457..00000000 --- a/10_Wiki/Topics/Programming & Language/Game Studies.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-21CD99 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Game Studies" ---- - -# [[Game Studies]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Game Studies.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Garbage Collection (GC) 최적화.md b/10_Wiki/Topics/Programming & Language/Garbage Collection (GC) 최적화.md deleted file mode 100644 index 817641f4..00000000 --- a/10_Wiki/Topics/Programming & Language/Garbage Collection (GC) 최적화.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6C336D -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Garbage Collection (GC) 최적화" ---- - -# [[Garbage Collection (GC) 최적화]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -**1. GC 스파이크와 프레임 드랍(Stop-the-world) 원인** 자바스크립트 엔진의 가비지 컬렉터(GC)는 자동 메모리 관리를 제공하지만, 실시간 상호작용이 필요한 게임이나 고성능 렌더링 환경에서는 불규칙한 'Stop-the-world(일시 정지)' 현상을 유발하는 주범이 됩니다. 짧은 시간 안에 수많은 객체를 무분별하게 생성하고 삭제하면, 힙 메모리가 파편화되고 가비지 컬렉터가 메모리를 정리하느라 시스템 자원을 소모하게 되어 화면이 뚝뚝 끊기는 지연(Lag)이나 프리징 현상이 발생합니다. - -**2. 렌더링 루프(Render Loop) 내부의 객체 생성 금지** 애니메이션을 제어하는 `requestAnimationFrame`이나 React Three Fiber의 `useFrame` 같은 핵심 게임 루프 내부에서 새로운 객체(예: `new Vector3()`)를 반복적으로 생성하면 끊임없는 가비지 컬렉션이 트리거됩니다. 이를 방지하려면 루프 외부에서 미리 객체를 할당해 두거나(`useMemo` 등 활용), 객체의 속성값만 덮어씌워 갱신(Direct mutation)하는 방식으로 재사용해야 합니다. - -**3. 오브젝트 풀링(Object Pooling)의 적극 도입** 탄환, 파티클, 적 캐릭터 등 생성과 파괴가 매우 빈번한 객체는 **오브젝트 풀(Object Pool)**이라는 고정된 크기의 배열을 만들어 최적화합니다. 로딩 시점에 필요한 객체를 미리 생성해 두고, 게임 중에는 삭제(Free)하지 않은 채 활성/비활성 상태만 변경하여 돌려 사용합니다. 이 방식을 사용하면 런타임 중의 메모리 할당 및 해제 횟수가 '0'에 가까워져 GC로 인한 성능 저하를 극적으로 막을 수 있습니다. - -**4. 세대별 GC(Generational GC) 특성을 고려한 주의사항** 최신 브라우저(V8 엔진 등)는 **세대별 가비지 컬렉션(Generational GC)**을 사용하므로, 생성 후 금방 버려지는 단기 생존 객체(Short-lived garbage)는 사실상 거의 비용 없이 회수됩니다. 따라서 무분별하게 모든 객체를 풀링할 경우, 오히려 객체들이 메모리에 계속 상주하는 '장기 생존 객체'로 취급되어 구세대(Old generation) 메모리를 압박하고 GC 성능을 악화시킬 수 있습니다. 오브젝트 풀링은 반드시 프로파일링을 통해 객체 생성 비용이 진짜 병목으로 판명된 경우에만 선별적으로 도입해야 합니다. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Object Pooling (오브젝트 풀링)]], [[Memory Leak Prevention (메모리 누수 방지)]], [[Generational GC (세대별 가비지 컬렉션)]], [[React Three Fiber (R3F) 자산 최적화]] -- **Projects/Contexts:** [[수만 개의 엔티티가 존재하는 실시간 물리 시뮬레이션]], [[대규모 파티클 시스템 최적화]] -- **Contradictions/Notes:** 가비지 컬렉션의 멈춤 현상을 극도로 피해야 하는 환경(예: AAA급 웹 게임)에서는 ECS(엔티티 컴포넌트 시스템)와 같이 자바스크립트 기본 객체가 아닌, 연속된 `TypedArray` 형태의 메모리 버퍼(SoA)를 직접 다루는 데이터 지향 설계(Data-Oriented Design)를 통해 GC 자체를 원천 우회하는 설계가 활용되기도 합니다. -- Raw Source: [[00_Raw/2026-04-20/Garbage Collection (GC) 최적화.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Garbage Collection (GC).md b/10_Wiki/Topics/Programming & Language/Garbage Collection (GC).md deleted file mode 100644 index fe7dad02..00000000 --- a/10_Wiki/Topics/Programming & Language/Garbage Collection (GC).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-99978B -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Garbage Collection (GC)" ---- - -# [[Garbage Collection (GC)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 가비지 컬렉션(GC)은 프로그램에서 더 이상 사용되지 않는 객체(가비지)를 식별하고 그들이 차지하던 메모리를 자동으로 회수하여 재사용할 수 있도록 하는 메모리 관리 프로세스입니다 [1, 2]. 이 방식은 개발자가 명시적으로 메모리를 관리할 필요성을 줄여 애플리케이션의 메모리 누수와 오류를 방지하는 이점이 있습니다 [3]. 하지만 GC가 실행되는 동안에는 프로그램 실행이 멈추는 'Stop-the-world' 현상이 발생할 수 있으므로, 응답성과 성능을 유지하기 위해 엔진 수준에서 다양한 최적화 기법이 함께 적용됩니다 [2, 4]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Mark-Sweep-Compact]], [[Scavenger (Minor GC)]], [[Generational GC]], [[Orinoco]] -- **Projects/Contexts:** [[V8 JavaScript Engine]], [[Eclipse OpenJ9 VM]], [[Node.js Memory Management]] -- **Contradictions/Notes:** 가비지 컬렉션은 개발자에게서 메모리 관리의 부담을 없애주는 매우 강력한 기능이지만 제어 권한을 완전히 잃게 된다는 양날의 검과 같은 특성을 가집니다 [3, 4]. 관리되지 않는(Unmanaged) 언어와 비교해 무조건적으로 성능이 더 좋거나 나쁜 것은 아니며, 적절히 최적화되지 않은 GC 시스템은 길고 예측 불가능한 멈춤 현상을 발생시킬 수 있습니다 [4]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Garbage Collection (GC).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Graph-Grammars.md b/10_Wiki/Topics/Programming & Language/Graph-Grammars.md deleted file mode 100644 index b24f5988..00000000 --- a/10_Wiki/Topics/Programming & Language/Graph-Grammars.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-492313 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Graph-Grammars" ---- - -# [[Graph-Grammars]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Graph-Grammars.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Grokking (그로킹 지연 일반화).md b/10_Wiki/Topics/Programming & Language/Grokking (그로킹 지연 일반화).md deleted file mode 100644 index 271e4e31..00000000 --- a/10_Wiki/Topics/Programming & Language/Grokking (그로킹 지연 일반화).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D1916C -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Grokking (그로킹 지연 일반화)" ---- - -# [[Grokking (그로킹 지연 일반화)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Grokking (그로킹, 지연 일반화).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/HNSW 알고리즘 (Hierarchical Navigable Small World).md b/10_Wiki/Topics/Programming & Language/HNSW 알고리즘 (Hierarchical Navigable Small World).md deleted file mode 100644 index a12751dd..00000000 --- a/10_Wiki/Topics/Programming & Language/HNSW 알고리즘 (Hierarchical Navigable Small World).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E7A769 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - HNSW 알고리즘 (Hierarchical Navigable Small World)" ---- - -# [[HNSW 알고리즘 (Hierarchical Navigable Small World)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/HNSW 알고리즘 (Hierarchical Navigable Small World).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/HTC Vive Pro HMD.md b/10_Wiki/Topics/Programming & Language/HTC Vive Pro HMD.md deleted file mode 100644 index 5ffa90e7..00000000 --- a/10_Wiki/Topics/Programming & Language/HTC Vive Pro HMD.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7B2D1B -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - HTC Vive Pro HMD" ---- - -# [[HTC Vive Pro HMD]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **실험 도구로서의 활용:** 한 연구에서 HTC Vive Pro HMD는 사용자가 가상현실 엑서게임(비트 세이버)을 10분 및 50분 동안 플레이하도록 한 뒤, 시각, 인지, 웰빙에 미치는 사후 효과(VR 멀미 등)를 측정하기 위한 실험 장치로 채택되었습니다 [3], [1], [2]. -* **안전 가이드라인 및 부작용:** HTC Vive Pro를 포함한 VR 기기 제조사들은 기기 사용 설명서 및 안전 규정 가이드를 통해 VR 사용 시간에 대한 권장 사항(예: 30분에서 1시간)을 제공하고 잠재적인 부작용을 경고합니다 [4]. 그러나 사용자가 게임의 몰입감으로 인해 시간을 잊고 장시간 기기를 착용할 경우 심각한 VR 멀미(VR sickness) 증상을 겪을 수 있습니다 [4]. -* 소스에 관련 정보가 부족합니다. 기기 구동 원리, 해상도, 부가 기능 등 HTC Vive Pro HMD 자체의 핵심 기능에 대한 상세한 설명은 소스 내에 존재하지 않습니다. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Head-Mounted Display (HMD)]], [[Virtual Reality (VR)]], [[VR Sickness]] -- **Projects/Contexts:** [[Exergaming With Beat Saber 연구 (VR 엑서게임 사후 효과 연구)]] -- **Contradictions/Notes:** 기기 자체의 특성이나 스펙에 대한 세부 내용은 없고, 특정 연구의 실험 세팅용 장비로만 등장하므로 전체적인 맥락을 파악하기에는 소스에 관련 정보가 부족합니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/HTC Vive Pro HMD.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Husky lint-staged.md b/10_Wiki/Topics/Programming & Language/Husky lint-staged.md deleted file mode 100644 index e09350fe..00000000 --- a/10_Wiki/Topics/Programming & Language/Husky lint-staged.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6F1BCF -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Husky lint-staged" ---- - -# [[Husky lint-staged]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> Husky와 lint-staged는 개발자가 코드를 Git 저장소에 커밋하기 전에 코드의 품질과 스타일을 자동으로 검사하고 수정할 수 있도록 돕는 도구입니다 [1, 2]. Husky는 Git 훅(Git hooks)을 버전 관리 시스템에 포함시켜 팀원 전체가 쉽게 공유하고 관리할 수 있도록 해주는 훅 관리 레이어입니다 [3, 4]. lint-staged는 전체 코드베이스가 아닌 커밋을 위해 스테이징된(staged) 파일에 대해서만 특정 명령어(Linter, Formatter 등)를 실행하도록 오케스트레이션하여 검사 속도와 효율성을 높여줍니다 [3, 4]. 이 두 도구를 결합하여 사용하면 잘못된 코드가 저장소에 병합되는 것을 사전에 방지하고 일관된 코드 퀄리티를 효율적으로 유지할 수 있습니다 [5]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Git Hooks]], [[ESLint]], [[Prettier]], [[Continuous Integration (CI)]] -- **Projects/Contexts:** [[Monorepo(Turborepo 등) 환경의 린트 관리]], [[프론트엔드 및 Node.js 개발 워크플로우]] -- **Contradictions/Notes:** 소스에 따르면 lint-staged의 자체적인 기능을 사용할 때 스크립트 명령어 내에서 수동으로 `git add`를 추가해서는 안 됩니다. lint-staged가 충돌(race condition)을 방지하기 위해 파일의 자동 스테이징을 내부적으로 직접 처리하기 때문입니다 [13, 16]. 또한 lint-staged는 파일 필터링 역할을 하므로, `tsc`와 같이 전체 프로젝트 문맥이 필요한 도구를 적용할 때는 단순히 명령어를 추가하는 것이 아니라 파일 인자가 무시되도록 별도의 함수 설정을 사용해야 하는 등 도구의 성격에 맞게 분리 적용할 필요가 있습니다 [16, 20, 21]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/Husky & lint-staged.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Immersive Sim Genre.md b/10_Wiki/Topics/Programming & Language/Immersive Sim Genre.md deleted file mode 100644 index d5d876e6..00000000 --- a/10_Wiki/Topics/Programming & Language/Immersive Sim Genre.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-33177A -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Immersive Sim Genre" ---- - -# [[Immersive Sim Genre]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Immersive Sim Genre.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Industry 40_Smart Manufacturing.md b/10_Wiki/Topics/Programming & Language/Industry 40_Smart Manufacturing.md deleted file mode 100644 index b98cc7a7..00000000 --- a/10_Wiki/Topics/Programming & Language/Industry 40_Smart Manufacturing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-84B460 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Industry 40_Smart Manufacturing" ---- - -# [[Industry 40_Smart Manufacturing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Industry 4.0_Smart Manufacturing.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/InstancedMesh Performance Bottlenecks.md b/10_Wiki/Topics/Programming & Language/InstancedMesh Performance Bottlenecks.md deleted file mode 100644 index e33ecf6e..00000000 --- a/10_Wiki/Topics/Programming & Language/InstancedMesh Performance Bottlenecks.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F035BF -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - InstancedMesh Performance Bottlenecks" ---- - -# [[InstancedMesh Performance Bottlenecks]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **시야 절두체 컬링(Frustum Culling)의 비효율성** - `InstancedMesh`는 단일 바운딩 볼륨(Bounding Volume)을 기준으로 렌더링 여부를 결정하므로, **화면에 단 하나의 인스턴스만 보여도 GPU는 보이지 않는 나머지 수만 개 인스턴스의 정점 변환 연산을 강제로 수행**해야 합니다 [1, 2]. 이를 해결하기 위해 CPU(자바스크립트)에서 매 프레임 개별 인스턴스의 가시성을 수학적으로 판별하여 버퍼를 재구성할 수 있지만, 이 경우 막대한 CPU 연산 비용과 병목이 발생하여 본래의 최적화 취지를 훼손합니다 [3, 4]. - -* **자동 깊이 정렬(Sorting) 부재 및 오버드로우(Overdraw)** - 인스턴스들은 인스턴스 버퍼에 기록된 순서대로만 그려지며, 거리에 따른 자동 정렬을 지원하지 않습니다 [5, 6]. 이로 인해 불투명 객체의 경우 뒤에 가려진 픽셀을 반복해서 계산하는 **오버드로우가 발생하여 프래그먼트 셰이더(Fragment Shader) 성능을 심각하게 저하시킵니다** [5-7]. 특히 투명 객체는 알파 블렌딩 오류를 막기 위해 '뒤에서 앞으로(Back-to-Front)' 정렬해야 하는데, 동적 씬에서 이를 위해 CPU 기반의 재정렬(예: Radix Sort)을 매 프레임 수행하면 메인 스레드에 치명적인 부하가 걸립니다 [8]. - -* **메모리 대역폭 및 동적 업데이트 한계** - 매 프레임 위치나 색상이 바뀌는 동적 씬에서는 수많은 인스턴스의 $4 \times 4$ 변환 행렬 데이터를 매번 CPU에서 GPU로 전송해야 합니다. 예컨대 200만 개의 인스턴스 변환 시 초당 약 7.68GB/s의 대역폭을 점유하여 시스템 버스에 과부하를 일으킵니다 [9, 10]. 또한, 생성 및 삭제가 빈번해 버퍼 크기를 동적으로 재할당해야 할 경우, 가비지 컬렉터(GC)가 작동하면서 프레임이 일시적으로 멈추는 지연 현상(Stuttering)을 유발합니다 [11]. - -* **지오메트리 및 텍스처 다양성 확보의 어려움** - 하나의 `InstancedMesh`는 오직 하나의 `BufferGeometry`와 `Material`만 사용할 수 있으므로, 모델 종류가 많아지면 결국 드로우 콜이 기하급수적으로 증가합니다 [12-14]. 여러 인스턴스에 각기 다른 텍스처를 입히기 위해 텍스처 아틀라스(Texture Atlas)를 사용할 경우, 밉맵(Mipmap) 생성 시 인접 텍스처 간에 색이 섞이는 경계선 블리딩(Edge Bleeding) 문제가 발생하며 셰이더 구성이 매우 복잡해집니다 [15-17]. - -* **피킹(Picking) 및 상호작용(Raycasting) 지연** - `InstancedMesh`에 대한 CPU 레이캐스팅은 광선(Ray)이 각 인스턴스의 변환 행렬을 개별적으로 역산해야 하므로 상호작용 시 즉각적인 반응을 어렵게 합니다 [18, 19]. 셰이더에서 애니메이션(예: 바람, 물리 연산)을 적용했다면 CPU는 실제 위치를 추적할 수 없어 피킹이 어긋나며, 대안으로 GPU 픽셀 피킹을 사용하더라도 `readPixels` 함수 호출 시 GPU 파이프라인 동기화 지연(Sync stall)으로 인해 프레임 저하가 일어납니다 [18, 20]. - -* **스킨드 애니메이션(Skinned Mesh) 연동 불가** - 기본적으로 본(Bone) 기반의 스킨드 애니메이션을 지원하지 않습니다 [21, 22]. 수많은 인스턴스에 개별적인 포즈를 적용하려면 각 인스턴스별 본 행렬 데이터를 텍스처 등을 통해 전부 GPU로 전송해야 하며, 데이터의 폭발적 증가로 인해 일반적인 버퍼 제한을 초과하게 되는 물리적 한계에 부딪힙니다 [21]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Frustum Culling]], [[Overdraw]], [[Draw Call]], [[BatchedMesh]], [[Texture Atlas]] -- **Projects/Contexts:** [[InstancedMesh2 library]], [[Three.js WebGPU Renderer]], [[WebGL multi_draw extension]] -- **Contradictions/Notes:** 많은 렌더링 상황에서 `InstancedMesh`가 만능 최적화 기법으로 여겨지지만, 실제 벤치마크 사례에서는 드로우 콜을 1회로 줄였음에도 불구하고 오버드로우 및 GPU 프래그먼트 병목 때문에 개별 메쉬나 `BatchedMesh` 방식보다 오히려 렌더링 시간(Frame Time)이 느려지거나 성능이 저하되는 모순적인 결과가 발생하기도 합니다 [5, 6, 23]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/InstancedMesh Performance Bottlenecks.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Integrated Gradients (통합 그래디언트).md b/10_Wiki/Topics/Programming & Language/Integrated Gradients (통합 그래디언트).md deleted file mode 100644 index e05bc8ae..00000000 --- a/10_Wiki/Topics/Programming & Language/Integrated Gradients (통합 그래디언트).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-904FDF -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Integrated Gradients (통합 그래디언트)" ---- - -# [[Integrated Gradients (통합 그래디언트)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Integrated Gradients (통합 그래디언트).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Interactive Fiction (IF).md b/10_Wiki/Topics/Programming & Language/Interactive Fiction (IF).md deleted file mode 100644 index 4bc23701..00000000 --- a/10_Wiki/Topics/Programming & Language/Interactive Fiction (IF).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F4E42B -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Interactive Fiction (IF)" ---- - -# [[Interactive Fiction (IF)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Interactive Fiction (IF).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Interactive Narrative.md b/10_Wiki/Topics/Programming & Language/Interactive Narrative.md deleted file mode 100644 index edf66d25..00000000 --- a/10_Wiki/Topics/Programming & Language/Interactive Narrative.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-270B9D -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Interactive Narrative" ---- - -# [[Interactive Narrative]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Interactive Narrative.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Interactive-Fiction-Tradition.md b/10_Wiki/Topics/Programming & Language/Interactive-Fiction-Tradition.md deleted file mode 100644 index 229e1743..00000000 --- a/10_Wiki/Topics/Programming & Language/Interactive-Fiction-Tradition.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FEC397 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Interactive-Fiction-Tradition" ---- - -# [[Interactive-Fiction-Tradition]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Interactive-Fiction-Tradition.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Intrinsic-Motivation.md b/10_Wiki/Topics/Programming & Language/Intrinsic-Motivation.md deleted file mode 100644 index 5b33f6c7..00000000 --- a/10_Wiki/Topics/Programming & Language/Intrinsic-Motivation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8559CD -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Intrinsic-Motivation" ---- - -# [[Intrinsic-Motivation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Intrinsic-Motivation.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Isovist-Analysis.md b/10_Wiki/Topics/Programming & Language/Isovist-Analysis.md deleted file mode 100644 index f39d7da2..00000000 --- a/10_Wiki/Topics/Programming & Language/Isovist-Analysis.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4BC607 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Isovist-Analysis" ---- - -# [[Isovist-Analysis]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Isovist-Analysis.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Jacobian-Matrix-Analysis.md b/10_Wiki/Topics/Programming & Language/Jacobian-Matrix-Analysis.md deleted file mode 100644 index f8586d57..00000000 --- a/10_Wiki/Topics/Programming & Language/Jacobian-Matrix-Analysis.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BC322B -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Jacobian-Matrix-Analysis" ---- - -# [[Jacobian-Matrix-Analysis]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Jacobian-Matrix-Analysis.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/JavaScript 메모리 관리(JavaScript Memory Management).md b/10_Wiki/Topics/Programming & Language/JavaScript 메모리 관리(JavaScript Memory Management).md deleted file mode 100644 index c645897b..00000000 --- a/10_Wiki/Topics/Programming & Language/JavaScript 메모리 관리(JavaScript Memory Management).md +++ /dev/null @@ -1,48 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AABE4C -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - JavaScript 메모리 관리(JavaScript Memory Management)" ---- - -# [[JavaScript 메모리 관리(JavaScript Memory Management)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -**스택(Stack)과 힙(Heap) 메모리 구조** -* **스택(Stack):** 실행 중인 프로세스의 정적 데이터(메서드/함수 프레임, 원시 값, 힙 객체에 대한 포인터 등)를 저장하는 영역으로 LIFO 방식으로 관리됩니다 [2-4]. -* **힙(Heap):** 크기를 컴파일 타임에 결정할 수 없는 동적 데이터 및 객체가 저장되는 공간으로 가비지 컬렉터에 의해 직접 관리됩니다 [3, 10]. V8은 힙을 여러 공간(Space)으로 나눕니다. - -**힙의 세대별 구성 (Generational Layout)** -V8은 객체의 수명을 기준으로 힙을 효율적으로 관리합니다 [6, 7]. -* **New Space (Young Generation):** 작고 수명이 짧은 대부분의 새 객체가 할당되는 공간입니다 [6, 11-13]. 내부적으로 두 개의 반공간(To-Space와 From-Space)으로 나뉘어 관리됩니다 [14-16]. -* **Old Space (Old Generation):** New Space에서 일정한 가비지 컬렉션 주기(통상 2회)를 살아남은 객체들이 승격(Promote)되어 이동하는 큰 공간으로, 포인터 영역과 데이터 영역으로 더 나뉩니다 [6, 11, 13, 17, 18]. -* **기타 영역:** 크기가 제한을 초과하는 객체를 위한 Large Object Space, 실행 가능한 머신 코드가 저장되는 Code Space 등이 존재합니다 [11, 19]. - -**가비지 컬렉션(Garbage Collection) 메커니즘** -V8 엔진은 주로 두 가지 가비지 컬렉터를 사용하여 메모리를 회수합니다 [20]. -* **마이너 GC (Scavenger):** New Space에서 빈번하고 빠르게 동작합니다 [6, 14, 20]. Cheney의 알고리즘에 기반하여 활성 객체를 추적한 뒤 To-Space로 대피(Copy/Evacuate)시키고 기존 From-Space의 쓰레기를 일괄 비워 단편화를 해결합니다 [14, 15, 17]. -* **메이저 GC (Mark-Sweep-Compact):** Old Space 전체를 관리합니다 [6, 20, 21]. 스택과 전역 객체 같은 루트(Root)에서 출발해 포인터를 따라가며 살아있는 객체를 식별(Mark)하고, 도달할 수 없는 객체의 메모리를 회수(Sweep)한 뒤, 파편화를 줄이기 위해 필요시 객체들을 압축(Compact)합니다 [5, 8, 21-24]. -* **오리노코(Orinoco):** 최신 V8의 GC 프로젝트로 메인 스레드의 정지 시간(Stop-the-world)을 줄이기 위해 병렬(Parallel), 점진적(Incremental), 동시(Concurrent) 스레딩 방식을 도입하여 JS 실행과 GC 작업을 효율적으로 교차 수행합니다 [25-31]. - -**메모리 누수(Memory Leaks)와 최적화** -* 메모리 누수는 객체가 더 이상 프로그램에서 쓰이지 않음에도 GC 루트(전역 변수, 클로저, 이벤트 리스너, 잊혀진 타이머 등)에서 참조를 계속 유지하여 GC가 수거하지 못할 때 발생합니다 [32-37]. -* 해결 및 탐지 방법으로는 Chrome DevTools의 Heap Snapshot을 사용해 세 번의 스냅샷을 비교하는 기법, Allocation Timeline을 통한 힙 할당 추적, Node.js의 `--trace-gc` 플래그 및 `process.memoryUsage()`를 통한 메모리 상태 모니터링 등이 있습니다 [38-42]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Garbage Collection (가비지 컬렉션)]], [[V8 Engine (V8 엔진)]], [[Generational Hypothesis (세대 가설)]], [[Memory Leak (메모리 누수)]] -- **Projects/Contexts:** [[Chrome DevTools 메모리 분석]], [[Node.js 메모리 튜닝]] -- **Contradictions/Notes:** 가비지 컬렉션을 사용하는 언어는 메모리 관리의 복잡성을 크게 줄여주지만, 프로그래머가 메모리 제어권을 완전히 상실하게 된다는 단점이 있습니다 [1, 43]. 또한 GC 실행 시 불규칙한 일시 정지 현상이 발생해 대화형 시스템에 영향을 줄 수 있으며 [43], 64비트 플랫폼에서 V8 힙은 포인터 압축(Pointer Compression) 보안 기술로 인해 4GB의 크기 제한(V8 Memory Cage)을 갖는 특징이 있습니다 [44-46]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/JavaScript 메모리 관리(JavaScript Memory Management).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Kinematics.md b/10_Wiki/Topics/Programming & Language/Kinematics.md deleted file mode 100644 index 48a676db..00000000 --- a/10_Wiki/Topics/Programming & Language/Kinematics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CC099B -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Kinematics" ---- - -# [[Kinematics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Kinematics.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/L-Systems.md b/10_Wiki/Topics/Programming & Language/L-Systems.md deleted file mode 100644 index b36bfa16..00000000 --- a/10_Wiki/Topics/Programming & Language/L-Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-EBE0D0 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - L-Systems" ---- - -# [[L-Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/L-Systems.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/L-systems in Biology.md b/10_Wiki/Topics/Programming & Language/L-systems in Biology.md deleted file mode 100644 index db08aed1..00000000 --- a/10_Wiki/Topics/Programming & Language/L-systems in Biology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5DB108 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - L-systems in Biology" ---- - -# [[L-systems in Biology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/L-systems in Biology.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Labeled Property Graph (LPG 속성 그래프).md b/10_Wiki/Topics/Programming & Language/Labeled Property Graph (LPG 속성 그래프).md deleted file mode 100644 index 09da7ab3..00000000 --- a/10_Wiki/Topics/Programming & Language/Labeled Property Graph (LPG 속성 그래프).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-84C8D8 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Labeled Property Graph (LPG 속성 그래프)" ---- - -# [[Labeled Property Graph (LPG 속성 그래프)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Labeled Property Graph (LPG, 속성 그래프).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Latiotech Report.md b/10_Wiki/Topics/Programming & Language/Latiotech Report.md deleted file mode 100644 index f4dd4589..00000000 --- a/10_Wiki/Topics/Programming & Language/Latiotech Report.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B2FE12 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Latiotech Report" ---- - -# [[Latiotech Report]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -소스 데이터에는 'Latio.tech Report'의 전체 내용이 아닌 특정 솔루션과 관련된 단편적인 평가 결과만 포함되어 있습니다. 소스에서 확인 가능한 주요 내용은 다음과 같습니다: - -* **Corgea에 대한 평가:** Latio.tech Report는 Corgea를 시중에 나와 있는 자동 수정(auto-fixing) 도구 중 가장 뛰어난(best) 도구로 평가했습니다 [1]. -* **Snyk에 대한 평가:** Snyk의 자동 수정 기능에 대해서는 IDE 확장 프로그램 내에서 재검사(rescan)를 수행할 때만 수정 사항을 생성할 수 있다는 한계점을 지적했습니다 [2]. 보고서는 이러한 특징이 특정 워크플로우에서는 자동 수정 기능의 실용성을 제한한다고 분석했습니다 [2]. - -*소스에 관련 정보가 부족합니다.* - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Corgea]], [[Snyk Code]], [[Auto-fixing Tool]] -- **Projects/Contexts:** [[SAST Tools Evaluation]] -- **Contradictions/Notes:** 제공된 소스에는 'Latio.tech Report'가 Corgea와 Snyk를 평가한 내용 중 극히 일부만 언급되어 있으며, 평가 기준이나 다른 벤더에 대한 정보 등 전체적인 맥락을 파악하기에는 소스에 관련 정보가 부족합니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Latio.tech Report.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Lighthouse.md b/10_Wiki/Topics/Programming & Language/Lighthouse.md deleted file mode 100644 index 956567a5..00000000 --- a/10_Wiki/Topics/Programming & Language/Lighthouse.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B44166 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Lighthouse" ---- - -# [[Lighthouse]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> Lighthouse는 페이지 속도를 측정하고 성능 개선을 위한 권장 사항을 제공하는 구글의 무료 오픈소스 도구입니다 [1, 2]. 주로 Chrome DevTools 패널이나 명령줄에서 실행되며, PageSpeed Insights의 진단 기능을 구동하는 핵심 엔진으로 사용됩니다 [1, 2]. 또한, 이와 별개로 분산 시스템에서 네트워크 위치 지정(Network Positioning)의 확장성 문제를 해결하기 위해 고안된 동명의 연구 프로젝트인 'Lighthouses'도 존재합니다 [3, 4]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[PageSpeed Insights]], [[Chrome DevTools]], [[Synthetic Testing]], [[Time to Interactive (TTI)]], [[Global Network Positioning (GNP)]] -- **Projects/Contexts:** [[Web Performance Optimization]], [[Network Coordinate Systems]] -- **Contradictions/Notes:** 구글 Lighthouse의 스로틀링 시뮬레이션은 프리로드된 리소스를 렌더링 차단 리소스로 잘못 분류하는 등 부정확한 점수를 도출하는 모순적 한계가 있으며, 현재 이를 실제 환경에 맞게 바로잡는 연구가 진행 중입니다 [8, 9]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Lighthouse.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Linked Open Data (LOD).md b/10_Wiki/Topics/Programming & Language/Linked Open Data (LOD).md deleted file mode 100644 index a5357874..00000000 --- a/10_Wiki/Topics/Programming & Language/Linked Open Data (LOD).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-30BF26 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Linked Open Data (LOD)" ---- - -# [[Linked Open Data (LOD)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Linked Open Data (LOD).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Live Streaming Monetization.md b/10_Wiki/Topics/Programming & Language/Live Streaming Monetization.md deleted file mode 100644 index c4dcfb55..00000000 --- a/10_Wiki/Topics/Programming & Language/Live Streaming Monetization.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9CC93F -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Live Streaming Monetization" ---- - -# [[Live Streaming Monetization]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Live Streaming Monetization.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Logit Lens (로짓 렌즈).md b/10_Wiki/Topics/Programming & Language/Logit Lens (로짓 렌즈).md deleted file mode 100644 index 2bce6260..00000000 --- a/10_Wiki/Topics/Programming & Language/Logit Lens (로짓 렌즈).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8DE413 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Logit Lens (로짓 렌즈)" ---- - -# [[Logit Lens (로짓 렌즈)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Logit Lens (로짓 렌즈).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Long-Term Potentiation (LTP).md b/10_Wiki/Topics/Programming & Language/Long-Term Potentiation (LTP).md deleted file mode 100644 index f61c2c31..00000000 --- a/10_Wiki/Topics/Programming & Language/Long-Term Potentiation (LTP).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AEAE94 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Long-Term Potentiation (LTP)" ---- - -# [[Long-Term Potentiation (LTP)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Long-Term Potentiation (LTP).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Looking Glass Studios.md b/10_Wiki/Topics/Programming & Language/Looking Glass Studios.md deleted file mode 100644 index 6b75ff8b..00000000 --- a/10_Wiki/Topics/Programming & Language/Looking Glass Studios.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FBDE4E -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Looking Glass Studios" ---- - -# [[Looking Glass Studios]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Looking Glass Studios.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Ludology vs Narratology Debate.md b/10_Wiki/Topics/Programming & Language/Ludology vs Narratology Debate.md deleted file mode 100644 index e34f7b7f..00000000 --- a/10_Wiki/Topics/Programming & Language/Ludology vs Narratology Debate.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-10519B -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ludology vs Narratology Debate" ---- - -# [[Ludology vs Narratology Debate]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ludology vs Narratology Debate.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Ludology vs Narratology.md b/10_Wiki/Topics/Programming & Language/Ludology vs Narratology.md deleted file mode 100644 index 5ab77c30..00000000 --- a/10_Wiki/Topics/Programming & Language/Ludology vs Narratology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E5E303 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ludology vs Narratology" ---- - -# [[Ludology vs Narratology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ludology vs. Narratology.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Ludonarrative Dissonance.md b/10_Wiki/Topics/Programming & Language/Ludonarrative Dissonance.md deleted file mode 100644 index 5ac19bee..00000000 --- a/10_Wiki/Topics/Programming & Language/Ludonarrative Dissonance.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D88E68 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ludonarrative Dissonance" ---- - -# [[Ludonarrative Dissonance]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ludonarrative Dissonance.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Ludonarrative Resonance.md b/10_Wiki/Topics/Programming & Language/Ludonarrative Resonance.md deleted file mode 100644 index 172027d5..00000000 --- a/10_Wiki/Topics/Programming & Language/Ludonarrative Resonance.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2B4A1C -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Ludonarrative Resonance" ---- - -# [[Ludonarrative Resonance]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Ludonarrative Resonance.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/MMORPG Ecosystems.md b/10_Wiki/Topics/Programming & Language/MMORPG Ecosystems.md deleted file mode 100644 index 715f202f..00000000 --- a/10_Wiki/Topics/Programming & Language/MMORPG Ecosystems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-525534 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - MMORPG Ecosystems" ---- - -# [[MMORPG Ecosystems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/MMORPG Ecosystems.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Mark-Sweep-Compact.md b/10_Wiki/Topics/Programming & Language/Mark-Sweep-Compact.md deleted file mode 100644 index 29bb2108..00000000 --- a/10_Wiki/Topics/Programming & Language/Mark-Sweep-Compact.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1D592D -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Mark-Sweep-Compact" ---- - -# [[Mark-Sweep-Compact]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -**동작 원리 및 주요 단계** -* **마킹(Marking) 단계:** 힙 상의 모든 활성(Live) 객체를 발견하고 표시하는 과정입니다 [3]. 메모리 힙을 객체들이 포인터로 연결된 방향성 그래프로 간주하여, 루트(root) 객체에서 시작해 깊이 우선 탐색(Depth-First-Search)을 수행합니다 [8, 9]. 객체는 처리 상태에 따라 흰색(미발견), 회색(발견되었으나 이웃 미처리), 검은색(발견 및 이웃 처리 완료)으로 구분됩니다 [3, 10]. 마킹이 종료되면 검은색은 활성 객체, 흰색은 죽은 객체를 의미합니다 [4, 11]. -* **스위핑(Sweeping) 단계:** 마킹 맵을 스캔하여 마킹되지 않은(흰색) 죽은 객체들의 연속된 범위를 찾고, 이를 빈 공간(Free space)으로 변환하여 크기별 프리 리스트(Free lists)에 추가합니다 [4, 12, 13]. -* **컴팩팅(Compacting) 단계:** 파편화가 심한 페이지에 있는 객체들을 다른 페이지의 빈 공간으로 이주(Migration)시켜 실제 메모리 사용량을 줄입니다 [5, 14]. 객체가 복사된 후 기존 객체의 첫 번째 워드에 포워딩 주소(Forwarding address)를 남기고, 대피가 완료되면 시스템은 기록된 포인터 위치를 순회하며 참조를 새 위치로 업데이트합니다 [5, 10]. - -**V8 엔진에서의 활용 (Major GC)** -* V8 엔진에서는 메가바이트 단위 이상의 크기를 갖는 'Old Space(오래된 세대)'를 수집할 때 마크-스윕(Mark-sweep) 및 마크-컴팩트(Mark-compact) 알고리즘을 사용합니다 [1, 10]. -* 과거에는 전체 실행을 멈추는 "Stop-the-world" 방식으로 인해 500-1000ms의 긴 일시 정지가 발생했으나, 메인 스레드의 부담을 줄이기 위해 증분 마킹(Incremental marking)과 지연 스위핑(Lazy sweeping), 그리고 백그라운드 스레드를 활용하는 동시 마킹/스위핑(Concurrent marking/sweeping) 등의 최적화가 도입되었습니다 [15-18]. - -**IBM Java GC에서의 활용** -* Java 가비지 컬렉터에서도 마크와 스윕은 메모리를 재확보하는 핵심 사이클로 함께 작동합니다 [19]. -* 그러나 컴팩트(Compact) 작업은 객체의 참조(Reference)를 모두 변경해야 하므로 매우 비용이 많이 드는(Expensive) 작업으로 간주됩니다 [7]. 따라서 컴팩트 작업은 기본적으로 매번 발생하지 않으며, `-Xcompactgc` 옵션을 명시하거나 힙을 스위핑한 후에도 할당 요청을 충족할 공간이 부족할 때 등 특정한 트리거 조건 하에서만 수행됩니다 [7, 20]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Garbage Collection]], [[Old Generation]], [[Incremental Marking]], [[Memory Fragmentation]] -- **Projects/Contexts:** [[V8 JavaScript Engine]], [[IBM Java GC]], [[Orinoco Garbage Collector]] -- **Contradictions/Notes:** 컴팩트(Compact) 단계의 빈도와 관련하여, V8에서는 Old Space의 파편화를 줄이기 위해 Major GC 과정에서 컴팩팅을 통합적으로 활용하여 객체를 마이그레이션하는 반면 [5, 10], IBM Java GC 환경에서는 객체 이동에 따른 높은 오버헤드로 인해 컴팩트 단계가 기본 활성화 상태가 아니며 메모리 부족이나 명시적 설정 시에만 제한적으로 트리거된다는 차이가 있습니다 [7, 21]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Mark-Sweep-Compact.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Mechanobiology.md b/10_Wiki/Topics/Programming & Language/Mechanobiology.md deleted file mode 100644 index af9c6b8d..00000000 --- a/10_Wiki/Topics/Programming & Language/Mechanobiology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D8F1A7 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Mechanobiology" ---- - -# [[Mechanobiology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Mechanobiology.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Meltdown.md b/10_Wiki/Topics/Programming & Language/Meltdown.md deleted file mode 100644 index 8337fc0b..00000000 --- a/10_Wiki/Topics/Programming & Language/Meltdown.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0BF53B -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Meltdown" ---- - -# [[Meltdown]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> Meltdown은 현대의 프로세서에 영향을 미치는 보안 취약점으로, 공격자가 보호되어야 할 비밀 메모리 영역에 읽기 권한을 얻을 수 있게 합니다 [1]. 구체적으로는 웹 브라우저에서 실행되는 JavaScript와 같은 사용자 영역(userland)의 코드가 커널 메모리를 읽을 수 있게 만듭니다 [2]. 웹 브라우저(예: WebKit)를 통해 Meltdown 공격을 수행하려면, 먼저 Spectre 취약점을 이용해 브라우저의 보안 속성을 우회하는 과정이 선행되어야 합니다 [1, 2]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Spectre]], [[Side-channel attacks]], [[Web Timing Security]] -- **Projects/Contexts:** [[WebKit]], [[Blink]] -- **Contradictions/Notes:** 제공된 소스 내에서 모순되는 내용은 확인되지 않으며, Meltdown 방어를 위해 운영체제 수준의 완화와 브라우저(WebKit, Blink) 수준의 타이밍 정밀도 제한 및 Spectre 방어 조치가 상호 보완적으로 작용함을 강조하고 있습니다 [2, 4]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Meltdown.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Memory Leak(메모리 누수).md b/10_Wiki/Topics/Programming & Language/Memory Leak(메모리 누수).md deleted file mode 100644 index 5c0faadd..00000000 --- a/10_Wiki/Topics/Programming & Language/Memory Leak(메모리 누수).md +++ /dev/null @@ -1,32 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D05474 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Memory Leak(메모리 누수)" ---- - -# [[Memory Leak(메모리 누수)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 메모리 누수(Memory Leak)는 프로그램이 더 이상 필요하지 않은 메모리를 해제하지 않아, 해당 메모리가 운영체제의 가용 메모리 풀로 반환되지 않는 현상을 의미합니다 [1]. JavaScript와 같은 가비지 컬렉션(GC) 기반 언어에서는 메모리가 단순히 유실되는 것이 아니라, 더 이상 사용되지 않아야 할 객체들이 GC 루트(window, 활성 클로저, 이벤트 리스너, 타이머 등)에서 여전히 참조 가능(reachable)한 상태로 남아 있어 가비지 컬렉터가 이를 회수하지 못할 때 발생합니다 [2, 3]. 이러한 누수가 누적되면 애플리케이션의 성능이 저하되고 잦은 가비지 컬렉션 일시 정지를 유발하며, 최종적으로는 메모리 고갈로 인한 크래시(OOM, Out-Of-Memory)로 이어지게 됩니다 [1, 4, 5]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Garbage Collection(가비지 컬렉션)]], [[V8 JavaScript Engine]], [[Heap Snapshot(힙 스냅샷)]], [[Closure(클로저)]] -- **Projects/Contexts:** [[Frontend Browser Diagnostics]], [[Node.js Production Monitoring]] -- **Contradictions/Notes:** - * 메모리가 증가한다고 해서 무조건 누수인 것은 아닙니다. 캐시나 실행 취소 내역(undo histories) 등은 의도적으로 데이터를 보존하므로, 소스에서는 '의도적 보존(intentional retention)'과 '우발적 누수(accidental retention)'를 명확히 구분해야 한다고 강조합니다 [12]. - * `WeakRef`와 `FinalizationRegistry`를 사용해 가비지 컬렉션을 방해하지 않는 참조 패턴을 만들 수 있지만, 가비지 컬렉터의 실행 일정은 비결정적(non-deterministic)이므로 이를 적절한 수명 주기 관리(lifecycle management)의 대체재로 사용해서는 안 됩니다 [11]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Memory Leak(메모리 누수).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Memory Leak.md b/10_Wiki/Topics/Programming & Language/Memory Leak.md deleted file mode 100644 index 4ff6b852..00000000 --- a/10_Wiki/Topics/Programming & Language/Memory Leak.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-61D625 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Memory Leak" ---- - -# [[Memory Leak]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 메모리 누수(Memory Leak)는 프로그램이 더 이상 필요하지 않은 메모리를 반환하지 않고 계속 참조를 유지하여 지속적으로 메모리를 점유하는 현상입니다[1, 2]. JavaScript 환경에서 메모리 누수는 메모리가 유실되는 것이 아니라, 객체가 가비지 컬렉터(GC) 루트(window, 클로저, 이벤트 리스너 등)에서 여전히 도달 가능(reachable)한 상태로 남아 있어 GC가 이를 회수하지 못할 때 발생합니다[3, 4]. 이러한 누수가 장기간 누적되면 가비지 컬렉션 일시 정지가 잦아지고 응답 시간이 저하되며, 결국 메모리 한계를 초과하여 OOM(Out of Memory) 크래시를 유발할 수 있습니다[1, 5, 6]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Garbage Collection]], [[V8 Engine]], [[Heap Snapshot]], [[Allocation Timeline]] -- **Projects/Contexts:** [[Browser Application]], [[Node.js Server Production]] -- **Contradictions/Notes:** 소스에 따르면 `WeakRef`나 `FinalizationRegistry`와 같은 최신 도구를 누수 방지 패턴에 활용할 수는 있으나, GC의 실행 시점이 비결정적이므로 이러한 도구들이 명시적인 생명주기 관리(정확한 타이머 및 리스너 해제)를 완전히 대체할 수는 없다고 지적합니다[12]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Memory Leak.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Mesa-Optimization (메사 최적화).md b/10_Wiki/Topics/Programming & Language/Mesa-Optimization (메사 최적화).md deleted file mode 100644 index 00b806de..00000000 --- a/10_Wiki/Topics/Programming & Language/Mesa-Optimization (메사 최적화).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4AF7B4 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Mesa-Optimization (메사 최적화)" ---- - -# [[Mesa-Optimization (메사 최적화)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Mesa-Optimization (메사 최적화).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Microsoft Edge DevTools.md b/10_Wiki/Topics/Programming & Language/Microsoft Edge DevTools.md deleted file mode 100644 index dc31bd88..00000000 --- a/10_Wiki/Topics/Programming & Language/Microsoft Edge DevTools.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D3063D -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Microsoft Edge DevTools" ---- - -# [[Microsoft Edge DevTools]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **DevTools 실행 및 접근 방법:** 웹페이지에서 마우스 우클릭 후 **Inspect(검사)**를 선택하거나 단축키(`Ctrl+Shift+I` 또는 macOS의 경우 `Command+Option+I`)를 눌러 DevTools를 열 수 있습니다 [1]. 이후 Activity Bar에서 **Memory** 도구를 선택하여 메모리 프로파일링 기능에 접근합니다 [1]. -- **타임라인의 할당 계측 (Allocations on timeline):** JS 힙에서 메모리 누수를 추적하기 위한 DevTools의 주요 기능 중 하나입니다 [3]. 이 기능은 힙 프로파일러의 상세한 스냅샷 정보와 Performance 도구의 점진적인 업데이트 및 추적 기능을 결합하여 작동합니다 [2]. 기록 세션 동안 주기적으로(최대 50ms마다) 힙 스냅샷을 찍고, 기록이 끝날 때 최종 스냅샷을 생성합니다 [4]. -- **메모리 누수 식별 및 분석:** - - 기록 중 타임라인에 나타나는 막대의 높이는 최근 할당된 객체의 크기를 나타냅니다 [5]. - - **파란색 막대**는 타임라인이 끝날 때까지 여전히 살아있는(가비지 컬렉션되지 않은) 객체를 나타내며, 메모리 누수의 주요 후보가 됩니다 [3, 5]. - - **회색 막대**는 할당되었으나 이후 가비지 컬렉션으로 정리된 객체를 의미합니다 [5]. - - 특정 막대를 확대하여 해당 기간에 할당된 객체만 표시하도록 필터링할 수 있으며, 힙 하단에서 유지 트리(retaining tree)와 경로를 검사해 객체가 수집되지 않은 원인을 분석할 수 있습니다 [3, 6]. -- **영구 객체 ID 추적:** 가비지 컬렉션 진행 중에 객체들의 메모리 주소가 이동할 수 있으므로, DevTools는 메모리 주소를 표시하는 대신 '@' 기호 뒤에 고유한 객체 ID를 부여합니다. 이 ID는 여러 스냅샷에 걸쳐 유지되어 힙 상태를 정확하게 비교할 수 있게 해줍니다 [4]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Memory Tool]], [[Garbage Collection]], [[Heap Snapshot]], [[Memory Leak]] -- **Projects/Contexts:** [[Allocation instrumentation on timeline]] -- **Contradictions/Notes:** 소스에 관련 정보가 부족합니다. Microsoft Edge DevTools의 전체적인 구조나 다른 패널(네트워크, 콘솔 등)에 대한 설명은 없으며, 오직 Memory 패널 내부의 타임라인 할당 프로파일링 도구에 대해서만 설명하고 있습니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Microsoft Edge DevTools.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Model-Checking.md b/10_Wiki/Topics/Programming & Language/Model-Checking.md deleted file mode 100644 index a4683aa6..00000000 --- a/10_Wiki/Topics/Programming & Language/Model-Checking.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D4D8C1 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Model-Checking" ---- - -# [[Model-Checking]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Model-Checking.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Multi-Agent-Systems.md b/10_Wiki/Topics/Programming & Language/Multi-Agent-Systems.md deleted file mode 100644 index 61e5f83c..00000000 --- a/10_Wiki/Topics/Programming & Language/Multi-Agent-Systems.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E9AAEE -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Multi-Agent-Systems" ---- - -# [[Multi-Agent-Systems]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Multi-Agent-Systems.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/NPM Ecosystem.md b/10_Wiki/Topics/Programming & Language/NPM Ecosystem.md deleted file mode 100644 index 807afd0e..00000000 --- a/10_Wiki/Topics/Programming & Language/NPM Ecosystem.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B38BB3 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - NPM Ecosystem" ---- - -# [[NPM Ecosystem]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/NPM Ecosystem.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Network Science.md b/10_Wiki/Topics/Programming & Language/Network Science.md deleted file mode 100644 index 89a964a8..00000000 --- a/10_Wiki/Topics/Programming & Language/Network Science.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7C08A1 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Network Science" ---- - -# [[Network Science]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Network Science.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/New Media Theory.md b/10_Wiki/Topics/Programming & Language/New Media Theory.md deleted file mode 100644 index b83c8e55..00000000 --- a/10_Wiki/Topics/Programming & Language/New Media Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-30D01C -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - New Media Theory" ---- - -# [[New Media Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/New Media Theory.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/New Space.md b/10_Wiki/Topics/Programming & Language/New Space.md deleted file mode 100644 index 24995f27..00000000 --- a/10_Wiki/Topics/Programming & Language/New Space.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BAE893 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - New Space" ---- - -# [[New Space]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> New Space(뉴 스페이스)는 V8 JavaScript 엔진의 힙(Heap) 메모리 영역 중 하나로, '젊은 세대(Young Generation)'라고도 불리며 대부분의 새로운 객체가 처음 할당되는 작고 빠른 공간입니다 [1-3]. 이 공간은 대부분의 객체가 생성된 직후 접근 불가능해진다는 '세대별 가설(Generational Hypothesis)'에 기반하여 설계되어, 수명이 짧은 객체들을 매우 빈번하고 빠르게 가비지 컬렉션(GC) 하도록 최적화되어 있습니다 [4-6]. 효율적인 메모리 관리를 위해 내부적으로 크기가 동일한 두 개의 반공간(To-Space와 From-Space)으로 나뉘어 운영됩니다 [7-9]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Old Space]], [[Scavenger]], [[Garbage Collection]], [[Generational Hypothesis]], [[To-Space]], [[From-Space]] -- **Projects/Contexts:** [[V8 JavaScript Engine]], [[Node.js Memory Management]] -- **Contradictions/Notes:** 소스 [4] 및 [15]에서는 New Space의 크기가 일반적으로 1~8MB라고 설명하지만, 소스 [8]에서는 전형적으로 1MB~64MB 사이의 크기를 가진다고 주장하여 문헌 간 구체적인 기본 용량 범위에 수치상 차이가 있습니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/New Space.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Nodejs Memory Management.md b/10_Wiki/Topics/Programming & Language/Nodejs Memory Management.md deleted file mode 100644 index 27aa3785..00000000 --- a/10_Wiki/Topics/Programming & Language/Nodejs Memory Management.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3D2466 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Nodejs Memory Management" ---- - -# [[Nodejs Memory Management]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -**V8 메모리 아키텍처 (Stack & Heap)** -* Node.js를 실행하는 V8 엔진은 메모리를 스택(Stack)과 힙(Heap)으로 나누어 관리합니다 [1, 2]. -* 스택은 정적 데이터, 메서드/함수 프레임, 원시 값, 힙에 있는 객체를 가리키는 포인터를 LIFO(Last In, First Out) 방식으로 저장하며, 운영체제에 의해 매우 빠르게 자동 관리됩니다 [1, 10-12]. -* 힙은 실행 시간에 크기가 결정되는 동적 객체가 저장되는 곳으로 가비지 컬렉터(GC)의 주요 관리 대상이 됩니다 [10, 13, 14]. 힙 내부는 객체의 수명과 목적에 따라 New-space(Young generation), Old-space(Old generation), Large-object-space, Code-space, Map-space 등으로 세분화됩니다 [14-16]. - -**세대별 가비지 컬렉션 (Generational Garbage Collection)** -* **Minor GC (Scavenger):** New-space를 관리하는 빠르고 빈번한 컬렉터입니다 [17, 18]. New-space는 절반씩 To-space와 From-space로 나뉘며(Cheney's algorithm), 할당 포인터가 공간 끝에 도달하면 살아있는 객체만 To-space로 복사하고 죽은 객체를 버립니다 [18-20]. 이 과정을 두 번 생존한 객체는 Old-space로 승격(Promotion)됩니다 [17, 19, 20]. -* **Major GC (Mark-Sweep-Compact):** Old-space가 일정 한도에 도달하면 실행되며, Mark-Sweep-Compact 알고리즘을 사용합니다 [17, 21-23]. 루트(스택, 전역 객체 등)에서 시작해 도달 가능한 객체를 탐색하여 마킹(Marking)하고, 도달할 수 없는 영역을 회수(Sweeping)하며, 필요 시 살아남은 객체를 모아 단편화를 줄이는 압축(Compacting)을 수행합니다 [21, 24-27]. -* **Orinoco 프로젝트:** 전통적인 GC의 단점인 긴 일시 정지(Stop-the-world) 문제를 해결하기 위해 도입된 V8의 GC 아키텍처입니다 [28-30]. 작업 스레드를 활용하여 GC 작업을 병렬(Parallel), 점진적(Incremental), 동시적(Concurrent)으로 수행하여 메인 스레드의 부하와 지연을 최소화합니다 [31-37]. - -**메모리 누수 (Memory Leaks) 발생 패턴 및 분석** -* Node.js에서 메모리 누수는 객체가 유실된 것이 아니라 개발자가 의도치 않게 참조(Reference)를 유지하여 가비지 컬렉터가 이를 살아있는 것으로 간주할 때 발생합니다 [8, 38, 39]. -* 정상적인 GC 사이클을 거치는 애플리케이션은 톱니바퀴(Sawtooth) 형태의 메모리 사용 패턴을 보이지만, 누수가 있는 경우 해제되지 않고 계속 증가만 하는 라쳇(Ratchet) 패턴을 보입니다 [40-42]. -* 주요 누수 원인으로는 이벤트 리스너 누적(예: `EventEmitter` 경고), 해제되지 않은 타이머/인터벌(Timer Drift), 클로저 변수 보존(Closure Retention), 한도 없는 인메모리 캐시, 종료되지 않은 스트림(Streams) 등이 있습니다 [39, 43-46]. - -**모니터링 및 메모리 튜닝 (Monitoring and Tuning)** -* 코드 상에서 `process.memoryUsage()`를 통해 rss, heapTotal, heapUsed 등의 메모리 지표를 추적할 수 있으며 [47, 48], `--trace-gc` 플래그나 V8 모듈, 퍼포먼스 훅(Performance Hooks)을 통해 GC 활동 로그를 분석할 수 있습니다 [49-51]. -* 발견하기 힘든 누수 분석 시에는 Chrome DevTools의 Memory 패널을 이용하여 힙 스냅샷(Heap Snapshots)을 비교하거나 Allocation Timeline을 기록하여 누수 대상을 추적합니다 [40, 52-57]. -* Node.js 실행 시 플래그를 통해 메모리를 제어할 수 있습니다. `--max-old-space-size`로 Old-space 한도를 늘리거나, `--max-semi-space-size`로 New-space 크기를 키울 수 있으며, `--expose-gc`를 설정하면 애플리케이션에서 `global.gc()`를 통해 수동으로 GC를 유발할 수 있습니다 [58-62]. -* 포인터 압축(Pointer Compression) 기술로 인해 64비트 시스템에서도 V8 힙은 최대 4GB로 제한될 수 있으며, 이를 초과할 경우 빈번한 GC 발생 및 OOM이 일어날 수 있습니다 [63-66]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[V8 JavaScript Engine]], [[Garbage Collection]], [[Orinoco GC]], [[Memory Leaks]], [[Pointer Compression]] -- **Projects/Contexts:** [[Node.js Production Monitoring]], [[Chrome DevTools Memory Profiling]] -- **Contradictions/Notes:** `--expose-gc` 옵션을 사용해 코드 내에서 수동으로 GC(`global.gc()`)를 호출하여 메모리를 회수할 수는 있으나, 과도하게 사용하면 프로그램 성능 저하(Performance degradation)를 초래할 수 있으므로 주의해서 사용해야 한다고 경고합니다 [62, 67]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Node.js Memory Management.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Nominal-Subtyping.md b/10_Wiki/Topics/Programming & Language/Nominal-Subtyping.md deleted file mode 100644 index d6c2157c..00000000 --- a/10_Wiki/Topics/Programming & Language/Nominal-Subtyping.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-60CC9F -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Nominal-Subtyping" ---- - -# [[Nominal-Subtyping]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Nominal-Subtyping.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Nominal-Typing.md b/10_Wiki/Topics/Programming & Language/Nominal-Typing.md deleted file mode 100644 index 2ea09d9c..00000000 --- a/10_Wiki/Topics/Programming & Language/Nominal-Typing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F87246 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Nominal-Typing" ---- - -# [[Nominal-Typing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Nominal-Typing.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Non-null Assertion Operator.md b/10_Wiki/Topics/Programming & Language/Non-null Assertion Operator.md deleted file mode 100644 index 5dee75d7..00000000 --- a/10_Wiki/Topics/Programming & Language/Non-null Assertion Operator.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D4BCC2 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Non-null Assertion Operator" ---- - -# [[Non-null Assertion Operator]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **기능 및 정의**: Non-null Assertion Operator는 `!` 기호를 통해 표현되며, 해당 변수나 표현식의 값이 `null` 또는 `undefined`가 아님을 컴파일러에게 명시적으로 단언(assert)합니다 [1]. -- **사용 목적**: 코드의 문맥상 특정 값이 반드시 존재한다는 것을 개발자는 인지하고 있으나, TypeScript의 타입 시스템이 이를 입증하지 못할 때 사용합니다 [1]. -- **주의점**: 이 연산자는 TypeScript가 제공하는 타입 안전성 검사(safety checks)를 인위적으로 우회하는 기능이므로, 가급적 제한적으로(sparingly) 사용해야 합니다 [1]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[null]], [[undefined]], [[Type Assertions]] -- **Projects/Contexts:** TypeScript 타입 검사 시스템 및 안전성 검사 우회 [1] -- **Contradictions/Notes:** 소스에 관련 정보가 부족합니다. (Non-null Assertion Operator에 대해 제공된 소스의 정보가 매우 제한적이며, 상충되는 의견이나 추가적인 맥락은 포함되어 있지 않습니다.) - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/Non-null Assertion Operator.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Objective Distillation (목표 증류).md b/10_Wiki/Topics/Programming & Language/Objective Distillation (목표 증류).md deleted file mode 100644 index 29094978..00000000 --- a/10_Wiki/Topics/Programming & Language/Objective Distillation (목표 증류).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C021D6 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Objective Distillation (목표 증류)" ---- - -# [[Objective Distillation (목표 증류)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Objective Distillation (목표 증류).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Occlusion Culling.md b/10_Wiki/Topics/Programming & Language/Occlusion Culling.md deleted file mode 100644 index 6e096708..00000000 --- a/10_Wiki/Topics/Programming & Language/Occlusion Culling.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3A1034 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Occlusion Culling" ---- - -# [[Occlusion Culling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 오클루전 컬링(Occlusion Culling)은 시야(Frustum) 내에 있더라도 다른 물체에 의해 완전히 가려져 보이지 않는 객체들을 식별하고 렌더링 파이프라인에서 제외하는 그래픽스 최적화 기법입니다 [1, 2]. CPU 기반으로 복잡한 기하학적 구조를 계산하기에는 난이도가 높고, GPU에서 수행하더라도 지연(Latency) 문제로 비용이 발생할 수 있어, 최신 렌더링 환경에서는 컴퓨트 셰이더나 깊이 사전 패스(Depth Pre-Pass) 등의 우회 및 발전된 기법과 함께 사용됩니다 [2, 3]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Frustum Culling]], [[Compute Shader]], [[Depth Pre-Pass]], [[InstancedMesh]], [[Early-Z]], [[Draw Call]] -- **Projects/Contexts:** [[WebGPU]], [[Three.js]], [[WebGL/Three.js CAD Rendering Optimization]] -- **Contradictions/Notes:** 소스에 따르면 오클루전 컬링은 그래픽스 성능 최적화의 핵심적인 개념이지만, 복잡성으로 인해 고유의 연산 비용이 따릅니다. 따라서 상황에 따라 오클루전 컬링을 직접 구현하기보다는 Depth Pre-Pass로 우회하거나, WebGPU의 컴퓨트 셰이더를 통해 CPU를 거치지 않고 가시성을 판별하는 방식으로 기술이 발전하고 있음이 관찰됩니다 [1, 2, 4]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Occlusion Culling.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Opaque Types.md b/10_Wiki/Topics/Programming & Language/Opaque Types.md deleted file mode 100644 index 92f3f29e..00000000 --- a/10_Wiki/Topics/Programming & Language/Opaque Types.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AB1B53 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Opaque Types" ---- - -# [[Opaque Types]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> Opaque Types(또는 Branded Types, Nominal Types)는 타입스크립트의 구조적 타이핑(Structural Typing)이 갖는 한계를 극복하기 위해, 구조가 동일한 기본 타입(primitive type)이라도 의미적으로 다른 값을 구별할 수 있도록 고유한 식별자(브랜드)를 부여하는 디자인 패턴입니다 [1-4]. 런타임에는 존재하지 않는 가상의 속성이나 유니크 심볼(unique symbol)을 타입 시스템에만 추가하여 타입 간의 혼용을 컴파일 시점에 차단합니다 [2, 5, 6]. 이를 통해 화폐 단위, 사용자 ID와 주문 ID의 혼동 등 논리적 오류를 방지하고 코드의 안정성과 예측 가능성을 크게 높일 수 있습니다 [7-9]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Branded Types]], [[Structural Typing]], [[Nominal Typing]], [[Type Assertions]], [[Type Predicates]] -- **Projects/Contexts:** [[Domain-Driven Design (DDD)]], [[Zod Validation]], [[Effect TS]], [[ts-brand]] -- **Contradictions/Notes:** Opaque Types는 타입 안정성을 크게 높여주지만, 코드의 구조적 복잡성을 증가시키고 검증 함수나 타입 래퍼(Wrapper) 등 부가적인 코드를 요구한다는 단점이 있습니다 [30, 31]. 따라서 값의 범위가 명확히 정해져 있는 경우에는 Opaque Type 대신 [[Unions]], [[Enums]], 혹은 [[Template Literal Types]]와 같은 다른 타입스크립트 내장 전략을 활용하는 것이 더 단순하고 나은 해결책이 될 수 있습니다 [30, 32-34]. 추가로 Flow 같은 타입 시스템에서는 Opaque Type을 네이티브로 지원하지만, 타입스크립트 진영에서는 아직 이러한 네이티브 지원에 대한 완전한 합의에 이르지 못했습니다 [35]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/Opaque Types.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Operations-Management.md b/10_Wiki/Topics/Programming & Language/Operations-Management.md deleted file mode 100644 index aadbb506..00000000 --- a/10_Wiki/Topics/Programming & Language/Operations-Management.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5F96BE -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Operations-Management" ---- - -# [[Operations-Management]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Operations-Management.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Organizational Behavior.md b/10_Wiki/Topics/Programming & Language/Organizational Behavior.md deleted file mode 100644 index 4ef7f381..00000000 --- a/10_Wiki/Topics/Programming & Language/Organizational Behavior.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-189D31 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Organizational Behavior" ---- - -# [[Organizational Behavior]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Organizational Behavior.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Organizational-Behavior.md b/10_Wiki/Topics/Programming & Language/Organizational-Behavior.md deleted file mode 100644 index d716439d..00000000 --- a/10_Wiki/Topics/Programming & Language/Organizational-Behavior.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0FF44B -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Organizational-Behavior" ---- - -# [[Organizational-Behavior]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Organizational-Behavior.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Organizational-Psychology.md b/10_Wiki/Topics/Programming & Language/Organizational-Psychology.md deleted file mode 100644 index dcc7260f..00000000 --- a/10_Wiki/Topics/Programming & Language/Organizational-Psychology.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CB4F42 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Organizational-Psychology" ---- - -# [[Organizational-Psychology]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Organizational-Psychology.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Orinoco GC.md b/10_Wiki/Topics/Programming & Language/Orinoco GC.md deleted file mode 100644 index 152c705a..00000000 --- a/10_Wiki/Topics/Programming & Language/Orinoco GC.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4DDD3E -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Orinoco GC" ---- - -# [[Orinoco GC]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> Orinoco는 V8 JavaScript 엔진에 적용된 최신 가비지 컬렉터(GC) 프로젝트의 코드명이다 [1, 2]. 기존의 순차적이고 애플리케이션 실행을 완전히 멈추는 'stop-the-world' 방식의 가비지 컬렉터를 병렬(parallel), 점진적(incremental), 동시적(concurrent) 기술을 활용하는 형태로 변환하여 메인 스레드의 부하를 줄이도록 설계되었다 [1, 3]. 이를 통해 애플리케이션의 일시 정지(pause) 시간을 대폭 단축하고, 애니메이션 및 사용자 입력에 대한 응답성을 크게 향상시키는 역할을 한다 [4-6]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[V8 Engine]], [[Garbage Collection]], [[Generational Hypothesis]], [[Scavenger]], [[Mark-Sweep-Compact]] -- **Projects/Contexts:** [[Chrome]], [[Node.js]] -- **Contradictions/Notes:** 소스 간에 모순되는 정보는 발견되지 않았습니다. 문서 전반에 걸쳐 Orinoco GC 도입으로 인한 병렬성(Parallel) 및 동시성(Concurrent) 최적화의 이점이 일관되게 강조되어 있습니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Orinoco GC.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Orinoco(V8 GC 프로젝트).md b/10_Wiki/Topics/Programming & Language/Orinoco(V8 GC 프로젝트).md deleted file mode 100644 index e099f023..00000000 --- a/10_Wiki/Topics/Programming & Language/Orinoco(V8 GC 프로젝트).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6C6E51 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Orinoco(V8 GC 프로젝트)" ---- - -# [[Orinoco(V8 GC 프로젝트)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> Orinoco는 V8 JavaScript 엔진의 가비지 컬렉터(GC)를 혁신적으로 개선하기 위해 진행된 프로젝트의 코드명이다 [1, 2]. 이 프로젝트의 핵심 목표는 기존의 순차적이고 메인 스레드를 멈추게 하던(stop-the-world) 가비지 컬렉터를 병렬(Parallel), 점진적(Incremental), 동시적(Concurrent) 수집 방식으로 변환하는 것이다 [1]. 이를 통해 메인 스레드의 부하를 해방시키고 가비지 컬렉션으로 인한 애플리케이션 지연(jank)과 대기 시간을 대폭 줄여 원활한 사용자 경험을 제공한다 [3, 4]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[V8 Engine]], [[Garbage Collection]], [[Scavenger (Minor GC)]], [[Mark-Compact (Major GC)]] -- **Projects/Contexts:** [[V8 JavaScript Engine Memory Management]] -- **Contradictions/Notes:** 점진적(Incremental) 가비지 컬렉션 기법의 경우, 메인 스레드의 일시 정지(Pause) 기간을 여러 개의 짧은 시간으로 분산시켜 체감 대기 시간을 줄이지만, 메인 스레드에서 수행하는 GC의 총시간 자체는 오히려 약간 증가한다는 특징이 있다 [8]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Orinoco(V8 GC 프로젝트).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/PageRank (페이지랭크 알고리즘).md b/10_Wiki/Topics/Programming & Language/PageRank (페이지랭크 알고리즘).md deleted file mode 100644 index dd374dbd..00000000 --- a/10_Wiki/Topics/Programming & Language/PageRank (페이지랭크 알고리즘).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-ECBEB7 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - PageRank (페이지랭크 알고리즘)" ---- - -# [[PageRank (페이지랭크 알고리즘)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/PageRank (페이지랭크 알고리즘).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Papers Please (Mechanics as Moral Argument).md b/10_Wiki/Topics/Programming & Language/Papers Please (Mechanics as Moral Argument).md deleted file mode 100644 index 3ea993a7..00000000 --- a/10_Wiki/Topics/Programming & Language/Papers Please (Mechanics as Moral Argument).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-126062 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Papers Please (Mechanics as Moral Argument)" ---- - -# [[Papers Please (Mechanics as Moral Argument)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Papers, Please (Mechanics as Moral Argument).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Post-Apocalyptic Fiction.md b/10_Wiki/Topics/Programming & Language/Post-Apocalyptic Fiction.md deleted file mode 100644 index 744780a8..00000000 --- a/10_Wiki/Topics/Programming & Language/Post-Apocalyptic Fiction.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-593061 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Post-Apocalyptic Fiction" ---- - -# [[Post-Apocalyptic Fiction]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Post-Apocalyptic Fiction.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Post-Surgical-Orthopedic-Recovery.md b/10_Wiki/Topics/Programming & Language/Post-Surgical-Orthopedic-Recovery.md deleted file mode 100644 index 6ca21e76..00000000 --- a/10_Wiki/Topics/Programming & Language/Post-Surgical-Orthopedic-Recovery.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-161900 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Post-Surgical-Orthopedic-Recovery" ---- - -# [[Post-Surgical-Orthopedic-Recovery]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Post-Surgical-Orthopedic-Recovery.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Procedural-Rhetoric.md b/10_Wiki/Topics/Programming & Language/Procedural-Rhetoric.md deleted file mode 100644 index dd2a419d..00000000 --- a/10_Wiki/Topics/Programming & Language/Procedural-Rhetoric.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4B887E -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Procedural-Rhetoric" ---- - -# [[Procedural-Rhetoric]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Procedural-Rhetoric.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Proprioception.md b/10_Wiki/Topics/Programming & Language/Proprioception.md deleted file mode 100644 index e72c8e20..00000000 --- a/10_Wiki/Topics/Programming & Language/Proprioception.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B85544 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Proprioception" ---- - -# [[Proprioception]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Proprioception.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/RDF-star (RDF 확장 사양).md b/10_Wiki/Topics/Programming & Language/RDF-star (RDF 확장 사양).md deleted file mode 100644 index c67fdfcb..00000000 --- a/10_Wiki/Topics/Programming & Language/RDF-star (RDF 확장 사양).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E70DB9 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - RDF-star (RDF 확장 사양)" ---- - -# [[RDF-star (RDF 확장 사양)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/RDF-star (RDF 확장 사양).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/RRF (Reciprocal Rank Fusion).md b/10_Wiki/Topics/Programming & Language/RRF (Reciprocal Rank Fusion).md deleted file mode 100644 index a4d0492c..00000000 --- a/10_Wiki/Topics/Programming & Language/RRF (Reciprocal Rank Fusion).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6A4FE8 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - RRF (Reciprocal Rank Fusion)" ---- - -# [[RRF (Reciprocal Rank Fusion)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/RRF (Reciprocal Rank Fusion).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/React 게임 엔진 아키텍처.md b/10_Wiki/Topics/Programming & Language/React 게임 엔진 아키텍처.md deleted file mode 100644 index 6d5d172c..00000000 --- a/10_Wiki/Topics/Programming & Language/React 게임 엔진 아키텍처.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D1ED6C -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - React 게임 엔진 아키텍처" ---- - -# [[React 게임 엔진 아키텍처]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/React 게임 엔진 아키텍처.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Reward Shaping (보상 설계).md b/10_Wiki/Topics/Programming & Language/Reward Shaping (보상 설계).md deleted file mode 100644 index 4f47c588..00000000 --- a/10_Wiki/Topics/Programming & Language/Reward Shaping (보상 설계).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1B82EC -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Reward Shaping (보상 설계)" ---- - -# [[Reward Shaping (보상 설계)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Reward Shaping (보상 설계).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Robotic-Manipulator-Dynamics.md b/10_Wiki/Topics/Programming & Language/Robotic-Manipulator-Dynamics.md deleted file mode 100644 index cbd22aec..00000000 --- a/10_Wiki/Topics/Programming & Language/Robotic-Manipulator-Dynamics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CA896D -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Robotic-Manipulator-Dynamics" ---- - -# [[Robotic-Manipulator-Dynamics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Robotic-Manipulator-Dynamics.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Runtime-Type-Validation.md b/10_Wiki/Topics/Programming & Language/Runtime-Type-Validation.md deleted file mode 100644 index 956dbfea..00000000 --- a/10_Wiki/Topics/Programming & Language/Runtime-Type-Validation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BFB695 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Runtime-Type-Validation" ---- - -# [[Runtime-Type-Validation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Runtime-Type-Validation.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/SOLID 원칙 (SOLID Principles).md b/10_Wiki/Topics/Programming & Language/SOLID 원칙 (SOLID Principles).md deleted file mode 100644 index 5f4a70ee..00000000 --- a/10_Wiki/Topics/Programming & Language/SOLID 원칙 (SOLID Principles).md +++ /dev/null @@ -1,46 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D3B79D -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - SOLID 원칙 (SOLID Principles)" ---- - -# [[SOLID 원칙 (SOLID Principles)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -**SOLID의 5가지 핵심 원칙** -소스 데이터에 따르면 SOLID는 다음 다섯 가지 원칙의 약자입니다 [1]. -* **단일 책임 원칙 (Single Responsibility Principle, SRP):** 클래스는 단 하나의 변경 이유만 가져야 하며, 오직 하나의 작업(책임)만 수행해야 합니다 [4]. 예를 들어, 사용자 데이터를 저장하고 조회하는 클래스가 사용자 입력 검증 기능까지 담당해서는 안 됩니다 [4]. 이는 관심사의 분리(SoC) 원칙을 극단적으로 적용한 형태로 볼 수 있습니다 [5]. -* **개방/폐쇄 원칙 (Open/Closed Principle, OCP):** 소프트웨어 엔티티는 확장을 위해서는 열려 있어야 하지만, 수정을 위해서는 닫혀 있어야 합니다 [4, 6]. 인터페이스나 추상 클래스를 사용하여, 기존 코드를 변경하지 않고도 새로운 하위 클래스를 통해 기능을 추가할 수 있게 함으로써 달성할 수 있습니다 [4]. -* **리스코프 치환 원칙 (Liskov Substitution Principle, LSP):** 하위 타입(Subtype)은 프로그램의 정확성을 훼손하지 않으면서도 기본 타입(Base type)으로 완벽하게 대체될 수 있어야 합니다 [4]. -* **인터페이스 분리 원칙 (Interface Segregation Principle, ISP):** 클라이언트가 자신이 사용하지 않는 인터페이스에 의존하도록 강요받아서는 안 됩니다 [4]. 하나의 크고 범용적인 인터페이스를 만들기보다는, 더 작고 구체적인 여러 개의 인터페이스를 생성해야 합니다 [4]. -* **의존성 역전 원칙 (Dependency Inversion Principle, DIP):** 고수준 모듈은 저수준 모듈에 의존해서는 안 되며, 두 모듈 모두 추상화(예: 인터페이스)에 의존해야 합니다 [4, 7]. 이는 주로 의존성 주입(Dependency Injection)을 사용하여 구현됩니다 [4]. - -**구현을 위한 실용적인 조언** -* **SRP부터 적용하기:** 단일 책임 원칙은 적용하기 가장 쉬우며 즉각적인 이점을 제공합니다. 클래스를 작성하기 전에 "이 클래스의 단일 책임은 무엇인가?"라고 스스로 질문해야 합니다 [3, 8]. -* **구현 전 인터페이스 설계:** 컴포넌트가 '어떻게' 동작할지를 구현하기 전에, '무엇을' 해야 하는지(인터페이스)를 먼저 정의해야 합니다 [8]. 이 방식은 자연스럽게 OCP와 DIP 원칙을 지원합니다 [8]. -* **의존성 주입(DI) 프레임워크 활용:** Spring(Java)이나 ASP.NET Core와 같이 내장된 DI 컨테이너를 제공하는 프레임워크를 사용하면 컴포넌트 간의 결합을 분리하고 DIP를 훨씬 쉽게 구현할 수 있습니다 [8]. -* **점진적 도입:** 기존의 레거시 애플리케이션을 한 번에 모두 리팩토링할 필요는 없습니다. 새로운 기능을 추가하거나 기존 코드를 수정할 때 SOLID 원칙을 점진적으로 적용하여 코드베이스의 상태를 개선해 나가는 것이 좋습니다 [8]. - -**적용 시의 복잡도 및 요구사항** -* SOLID 원칙을 구현하는 것은 설계 규율과 패턴을 요구하므로 중간에서 높음(Medium–High) 수준의 복잡도를 가집니다 [3]. -* 이를 원활하게 적용하기 위해서는 숙련된 개발자와 의존성 주입(DI) 프레임워크 등의 리소스가 뒷받침되어야 합니다 [3]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[객체 지향 프로그래밍 (OOP)]], [[관심사의 분리 (Separation of Concerns)]], [[의존성 주입 (Dependency Injection)]] -- **Projects/Contexts:** [[엔터프라이즈 애플리케이션 및 점진적 리팩토링]], [[라이브러리 및 확장 가능한 코드베이스]] -- **Contradictions/Notes:** 소스 내에서 상충하는 주장은 발견되지 않았습니다. 다만, 단일 책임 원칙(SRP)은 시스템을 고차원적인 수준에서 분리하는 '관심사의 분리(SoC)' 원칙과 종종 비교되며, SRP는 클래스나 모듈의 '책임'이라는 더 미시적인 수준을 다루는 것으로 설명됩니다 [9]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/SOLID 원칙 (SOLID Principles).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/SPARQL (RDF 그래프 질의 언어).md b/10_Wiki/Topics/Programming & Language/SPARQL (RDF 그래프 질의 언어).md deleted file mode 100644 index fd1af564..00000000 --- a/10_Wiki/Topics/Programming & Language/SPARQL (RDF 그래프 질의 언어).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6D75A5 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - SPARQL (RDF 그래프 질의 언어)" ---- - -# [[SPARQL (RDF 그래프 질의 언어)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/SPARQL (RDF 그래프 질의 언어).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/SaaS-Product-Management.md b/10_Wiki/Topics/Programming & Language/SaaS-Product-Management.md deleted file mode 100644 index e2a29f00..00000000 --- a/10_Wiki/Topics/Programming & Language/SaaS-Product-Management.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B72D67 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - SaaS-Product-Management" ---- - -# [[SaaS-Product-Management]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/SaaS-Product-Management.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Sandbox Simulations (eg Minecraft Dwarf Fortress).md b/10_Wiki/Topics/Programming & Language/Sandbox Simulations (eg Minecraft Dwarf Fortress).md deleted file mode 100644 index 74a6b1eb..00000000 --- a/10_Wiki/Topics/Programming & Language/Sandbox Simulations (eg Minecraft Dwarf Fortress).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0DFB46 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sandbox Simulations (eg Minecraft Dwarf Fortress)" ---- - -# [[Sandbox Simulations (eg Minecraft Dwarf Fortress)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sandbox Simulations (e.g., Minecraft, Dwarf Fortress).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Santa Fe Institute.md b/10_Wiki/Topics/Programming & Language/Santa Fe Institute.md deleted file mode 100644 index 2ee81df9..00000000 --- a/10_Wiki/Topics/Programming & Language/Santa Fe Institute.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6E6047 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Santa Fe Institute" ---- - -# [[Santa Fe Institute]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Santa Fe Institute.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Satisfiability-Problem-(SAT).md b/10_Wiki/Topics/Programming & Language/Satisfiability-Problem-(SAT).md deleted file mode 100644 index 30bfaff1..00000000 --- a/10_Wiki/Topics/Programming & Language/Satisfiability-Problem-(SAT).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-55CA55 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Satisfiability-Problem-(SAT)" ---- - -# [[Satisfiability-Problem-(SAT)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Satisfiability-Problem-(SAT).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Scavenger(Minor GC).md b/10_Wiki/Topics/Programming & Language/Scavenger(Minor GC).md deleted file mode 100644 index 0381b89c..00000000 --- a/10_Wiki/Topics/Programming & Language/Scavenger(Minor GC).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7DB27B -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Scavenger(Minor GC)" ---- - -# [[Scavenger(Minor GC)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> Scavenger(Minor GC)는 V8 엔진에서 새로운 객체가 할당되는 '새로운 공간(New-space)' 또는 '젊은 세대(Young Generation)'의 메모리를 빠르고 효율적으로 정리하기 위해 사용되는 가비지 컬렉션 메커니즘입니다 [1-3]. 이 알고리즘은 **"대부분의 객체는 생성된 직후 죽는다"는 세대적 가설(Generational hypothesis)**을 바탕으로 짧은 수명의 객체들을 신속하게 제거합니다 [2, 4, 5]. 빈번하게 발생하는 만큼 실행 속도가 매우 빠르며, 객체를 복사하고 이동하는 과정을 통해 메모리 단편화를 방지하는 핵심적인 역할을 합니다 [6-8]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Young Generation]], [[Mark-Sweep/Mark-Compact(Major GC)]], [[Write Barriers]], [[Cheney's Algorithm]], [[Orinoco GC]] -- **Projects/Contexts:** [[V8 JavaScript Engine Memory Management]] -- **Contradictions/Notes:** 과거 버전의 V8에서는 스캐빈저가 동기적인 Cheney's 알고리즘을 사용하였으나, V8 v6.2 이후부터는 다중 코어 환경의 이점을 살리기 위해 Halstead 알고리즘과 유사한 동적 작업 훔치기(work stealing) 기법을 사용하는 병렬 처리 구조로 진화했다는 점이 소스에 기록되어 있습니다 [22, 25]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Scavenger(Minor GC).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Scavenger(마이너 GC).md b/10_Wiki/Topics/Programming & Language/Scavenger(마이너 GC).md deleted file mode 100644 index 61f90af3..00000000 --- a/10_Wiki/Topics/Programming & Language/Scavenger(마이너 GC).md +++ /dev/null @@ -1,37 +0,0 @@ ---- -id: P-REINFORCE-AUTO-735166 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Scavenger(마이너 GC)" ---- - -# [[Scavenger(마이너 GC)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **동작 원리와 체니의 알고리즘 (Cheney's Algorithm)** - 대부분의 Scavenge 구현은 체니의 알고리즘(Cheney's algorithm)을 기반으로 한 반공간(semi-space) 설계를 따릅니다 [2, 4]. 새로운 공간은 크기가 같은 두 개의 공간인 To-Space와 From-Space로 나뉩니다 [4, 6, 7]. 평소에는 객체가 From-Space에 할당되다가 이 공간이 가득 차면, 가비지 컬렉터는 From-Space의 살아있는 객체들을 To-Space의 연속된 메모리 블록으로 대피(evacuate)시킵니다 [4, 5, 7]. 이후 죽은 객체들이 있는 From-Space는 완전히 비워지며 두 공간의 역할이 바뀝니다 [5, 8, 9]. -* **객체 이동, 포인터 업데이트 및 승격 (Promotion)** - 활성 객체가 새 위치로 이동될 때, 원래 위치에는 새로운 주소를 가리키는 포워딩 주소(forwarding address)가 남겨져 이를 참조하던 다른 포인터들이 업데이트될 수 있도록 합니다 [9-11]. 두 번의 마이너 가비지 컬렉션 주기(스캐빈지)를 생존한 객체들은 장기 보관을 위해 '오래된 공간(Old Space 또는 Tenure 영역)'으로 승격(Promoted)됩니다 [1, 3, 5]. 객체들을 To-Space의 한쪽으로 모으면서 단편화가 해결되므로 캐시 지역성이 향상되고 할당 속도가 유지됩니다 [4]. -* **루트 스캔 및 병렬 처리 (Parallel Scavenging)** - 마이너 GC는 매우 짧은 시간 내에 수행되어야 합니다 [4]. 이를 위해 V8 엔진은 다수의 도우미 스레드(helper threads)를 활용한 병렬 스캐빈징(Parallel scavenging) 기법을 사용하여, 루트 스캔, 젊은 세대 내의 객체 복사, 오래된 세대로의 승격, 포인터 업데이트 작업을 병렬적으로 처리합니다 [12-14]. 메인 스레드와 도우미 스레드들은 원자적(atomic)인 읽기/쓰기/비교 교환(compare-and-swap) 연산을 통해 동기화하여 동일한 객체가 중복 이동되는 것을 방지합니다 [12]. -* **IBM SDK 환경에서의 스캐빈지** - IBM의 gencon GC 정책 등에서도 스캐빈지 작업이 존재하며, 이는 Nursery 영역에서 할당 실패가 발생할 때 트리거됩니다 [3]. 루트 스캔을 통해 도달 가능한 객체를 찾고 스택에 담은 뒤 계층적 스캔 순서(hierarchical scan ordering)를 사용해 추적하며, 살아있는 객체를 할당 공간에서 Survivor 공간이나 Tenure 영역으로 복사하는 방식으로 처리됩니다 [3]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[New Space(Young Generation)]], [[Cheney's Algorithm]], [[Promotion(승격)]], [[Major GC(Mark-Sweep/Mark-Compact)]] -- **Projects/Contexts:** [[V8 JavaScript Engine]], [[IBM SDK (gencon GC policy)]] -- **Contradictions/Notes:** 소스 간의 내용 모순은 발견되지 않았습니다. V8 엔진의 마이너 GC 메커니즘과 IBM SDK(gencon 정책)의 스캐빈지 작업은 구현 환경은 다르지만, 모두 '주로 새롭게 할당되는 작은 공간을 대상으로 하여 빠른 주기로 살아있는 객체를 복사 및 승격한다'는 공통된 역할을 성공적으로 수행하고 있습니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Scavenger(마이너 GC).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Schema-Driven-Development.md b/10_Wiki/Topics/Programming & Language/Schema-Driven-Development.md deleted file mode 100644 index 69bf58c8..00000000 --- a/10_Wiki/Topics/Programming & Language/Schema-Driven-Development.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DE27F0 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Schema-Driven-Development" ---- - -# [[Schema-Driven-Development]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Schema-Driven-Development.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Schemaorg.md b/10_Wiki/Topics/Programming & Language/Schemaorg.md deleted file mode 100644 index b0d8b6d1..00000000 --- a/10_Wiki/Topics/Programming & Language/Schemaorg.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A3B261 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Schemaorg" ---- - -# [[Schemaorg]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Schema.org.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Sensorimotor-Integration.md b/10_Wiki/Topics/Programming & Language/Sensorimotor-Integration.md deleted file mode 100644 index b8235935..00000000 --- a/10_Wiki/Topics/Programming & Language/Sensorimotor-Integration.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F9E556 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sensorimotor-Integration" ---- - -# [[Sensorimotor-Integration]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sensorimotor-Integration.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Side-channel attacks.md b/10_Wiki/Topics/Programming & Language/Side-channel attacks.md deleted file mode 100644 index 3205f917..00000000 --- a/10_Wiki/Topics/Programming & Language/Side-channel attacks.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9A3E86 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Side-channel attacks" ---- - -# [[Side-channel attacks]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **공격 원리 및 주요 취약점 (Spectre & Meltdown)** - 사이드 채널 공격의 대표적인 사례인 Spectre는 최신 CPU의 성능 향상 기법인 '투기적 실행(speculative execution)'을 악용합니다. CPU는 분기가 일어날 방향을 예측하여 메모리의 데이터를 L1 캐시로 미리 로드하며, 예측이 틀린 경우 실행 상태를 롤백하지만 L1 캐시에 가져온 데이터는 삭제하지 않고 남겨둡니다 [3, 7]. 공격자는 이 특성과 고해상도 타이밍(high fidelity timing)을 이용해 L1 캐시와 메인 메모리 간의 접근 지연 시간(latency) 차이를 측정하고, 스페큘레이티브하게 로드된 값을 알아내어 정보를 유출합니다 [3, 8]. 또한 Meltdown은 사용자 영역의 코드(예: JavaScript)가 커널 메모리를 읽을 수 있게 하는 취약점으로, WebKit 같은 환경에서는 Spectre를 활용하여 분기 기반의 보안 검사를 먼저 우회해야만 Meltdown 공격을 시작할 수 있습니다 [9, 10]. - -- **웹 그래픽 API와 고정밀 타이머를 통한 공격 (WebGL & WebGPU)** - `EXT_disjoint_timer_query`나 WebGPU의 타임스탬프 쿼리처럼 GPU 명령어의 실행 시간을 나노초 단위로 측정할 수 있는 고해상도 타이머 역시 사이드 채널 공격의 주요 표적이 됩니다 [11, 12]. 보안 연구자들은 이러한 정밀한 타이머가 캐시 미스율과 물리적 메모리 레이아웃을 파악하는 데 사용될 수 있으며, WebGL 환경에서 GPU에 대한 Rowhammer 공격과 결합하여 보안을 뚫는 심각한 공격 사례도 존재했다고 보고했습니다 [1, 13]. - -- **타이밍 공격 완화 및 보안 전략 (Mitigations)** - - **타이머 정밀도 축소 (Quantization & Coarsening):** 브라우저 엔진은 캐시 사이드 채널 공격에 필요한 서브 마이크로초 단위의 타이밍 차이를 관찰하지 못하도록 `performance.now()`나 GPU 타임스탬프 쿼리의 해상도를 1ms 또는 100 마이크로초 수준으로 낮춥니다 [4, 5, 12, 14]. 또한 통계적인 시간 측정을 방해하기 위해 무작위 지터(jitter)를 추가하기도 하며, 고해상도 타이머를 만들 수 있는 `SharedArrayBuffer` 기능을 비활성화했습니다 [4, 6]. - - **분기 없는 보안 검사 (Branchless Security Checks):** WebKit은 공격자가 분기를 통제하여 투기적 실행을 발생시키는 것을 막기 위해, 비트 연산을 활용하여 항상 유효한 배열 범위 내를 가리키도록 하는 '인덱스 마스킹(Index Masking)'과 잘못된 타입 접근 시 메모리가 매핑되지 않은 영역을 가리키도록 유도하는 '포인터 포이즈닝(Pointer Poisoning)'을 도입했습니다 [15-17]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** `[[Spectre]]`, `[[Meltdown]]`, `[[Speculative execution]]`, `[[Timestamp quantization]]`, `[[Branchless security checks]]` -- **Projects/Contexts:** `[[WebKit]]`, `[[JavaScriptCore]]`, `[[WebGPU]]` -- **Contradictions/Notes:** WebGPU 스펙은 타이밍 공격의 위험성 때문에 타임스탬프 쿼리를 선택적(optional) 기능으로 명시하고 아예 노출을 제한할 수 있다고 규정합니다. 그러나 Chrome(Blink) 등의 구현체는 기능을 완전히 차단하는 대신, 사이트 격리(site isolation) 여부에 따라 타이머 해상도를 100 마이크로초로 양자화(quantization)하여 보안과 개발자 성능 측정 요구 사이의 타협점을 제공하고 있습니다 [12, 18, 19]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Side-channel attacks.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Signal Processing.md b/10_Wiki/Topics/Programming & Language/Signal Processing.md deleted file mode 100644 index dc24dfaf..00000000 --- a/10_Wiki/Topics/Programming & Language/Signal Processing.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E8C536 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Signal Processing" ---- - -# [[Signal Processing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Signal Processing.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Simulation Theory.md b/10_Wiki/Topics/Programming & Language/Simulation Theory.md deleted file mode 100644 index af9fb541..00000000 --- a/10_Wiki/Topics/Programming & Language/Simulation Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5A1ACA -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Simulation Theory" ---- - -# [[Simulation Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Simulation Theory.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Skybound Protocol 개발자 확장 가이드 및 아키텍처 리뷰.md b/10_Wiki/Topics/Programming & Language/Skybound Protocol 개발자 확장 가이드 및 아키텍처 리뷰.md deleted file mode 100644 index 2ffe7475..00000000 --- a/10_Wiki/Topics/Programming & Language/Skybound Protocol 개발자 확장 가이드 및 아키텍처 리뷰.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-271BCA -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Skybound Protocol 개발자 확장 가이드 및 아키텍처 리뷰" ---- - -# [[Skybound Protocol 개발자 확장 가이드 및 아키텍처 리뷰]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Skybound Protocol 개발자 확장 가이드 및 아키텍처 리뷰.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Skybound Protocol 시스템 아키텍처 및 데이터 흐름 분석.md b/10_Wiki/Topics/Programming & Language/Skybound Protocol 시스템 아키텍처 및 데이터 흐름 분석.md deleted file mode 100644 index 547b5dff..00000000 --- a/10_Wiki/Topics/Programming & Language/Skybound Protocol 시스템 아키텍처 및 데이터 흐름 분석.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-ADF455 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Skybound Protocol 시스템 아키텍처 및 데이터 흐름 분석" ---- - -# [[Skybound Protocol 시스템 아키텍처 및 데이터 흐름 분석]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Skybound Protocol 시스템 아키텍처 및 데이터 흐름 분석.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Spatial-Syntax.md b/10_Wiki/Topics/Programming & Language/Spatial-Syntax.md deleted file mode 100644 index 8d5ed614..00000000 --- a/10_Wiki/Topics/Programming & Language/Spatial-Syntax.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9BAC11 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Spatial-Syntax" ---- - -# [[Spatial-Syntax]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Spatial-Syntax.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Static-Type-Inference.md b/10_Wiki/Topics/Programming & Language/Static-Type-Inference.md deleted file mode 100644 index 86507eca..00000000 --- a/10_Wiki/Topics/Programming & Language/Static-Type-Inference.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-262D9E -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Static-Type-Inference" ---- - -# [[Static-Type-Inference]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Static-Type-Inference.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Statistical Mechanics.md b/10_Wiki/Topics/Programming & Language/Statistical Mechanics.md deleted file mode 100644 index 270071cc..00000000 --- a/10_Wiki/Topics/Programming & Language/Statistical Mechanics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9E33B1 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Statistical Mechanics" ---- - -# [[Statistical Mechanics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Statistical Mechanics.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/System Dynamics.md b/10_Wiki/Topics/Programming & Language/System Dynamics.md deleted file mode 100644 index a2fe9262..00000000 --- a/10_Wiki/Topics/Programming & Language/System Dynamics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-282998 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - System Dynamics" ---- - -# [[System Dynamics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/System Dynamics.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Systems Dynamics.md b/10_Wiki/Topics/Programming & Language/Systems Dynamics.md deleted file mode 100644 index 95466b5a..00000000 --- a/10_Wiki/Topics/Programming & Language/Systems Dynamics.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A319BE -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Systems Dynamics" ---- - -# [[Systems Dynamics]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Systems Dynamics.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Timing Attacks (Spectre_Meltdown).md b/10_Wiki/Topics/Programming & Language/Timing Attacks (Spectre_Meltdown).md deleted file mode 100644 index 1edcf860..00000000 --- a/10_Wiki/Topics/Programming & Language/Timing Attacks (Spectre_Meltdown).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-09FCC7 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Timing Attacks (Spectre_Meltdown)" ---- - -# [[Timing Attacks (Spectre_Meltdown)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> Spectre와 Meltdown은 최신 프로세서의 투기적 실행(speculative execution) 기능과 캐시 지연 시간의 차이를 악용하여 보호된 메모리 영역을 무단으로 읽어내는 보안 취약점입니다 [1, 2]. 이러한 타이밍 공격(Timing Attacks)은 고해상도 타이머를 사용해 L1 캐시와 메인 메모리 간의 지연 시간 차이를 관찰함으로써 달성되며, 브라우저 환경에서 신뢰할 수 없는 JavaScript나 WebAssembly 코드가 실행될 때 악용될 수 있습니다 [1, 3]. 이를 방지하기 위해 웹 생태계에서는 타이머의 정밀도를 의도적으로 낮추고, 분기 명령어(branch)에 의존하지 않는 보안 검사를 도입하는 등의 방어 체계를 구축했습니다 [4, 5]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Speculative Execution]], [[EXT_disjoint_timer_query]], [[WebGPU Timestamp Queries]], [[Branchless Security Checks]] -- **Projects/Contexts:** [[WebKit]], [[Blink]] -- **Contradictions/Notes:** WebGPU 명세에서 타임스탬프 쿼리 기능은 타이밍 공격의 우려로 인해 선택적(optional)인 기능으로 정의되어 있으나, 성능 최적화를 위한 개발자들의 요구가 커서 해상도를 100 마이크로초로 낮추는 양자화(quantization)를 적용하는 절충안을 통해 기능을 제공하고 있습니다 [7, 13, 16]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/Timing Attacks (Spectre_Meltdown).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Toss SDK의 퍼사드(Facade) 패턴 설계와 인터페이스 전략.md b/10_Wiki/Topics/Programming & Language/Toss SDK의 퍼사드(Facade) 패턴 설계와 인터페이스 전략.md deleted file mode 100644 index 3ff96ab3..00000000 --- a/10_Wiki/Topics/Programming & Language/Toss SDK의 퍼사드(Facade) 패턴 설계와 인터페이스 전략.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E3649D -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Toss SDK의 퍼사드(Facade) 패턴 설계와 인터페이스 전략" ---- - -# [[Toss SDK의 퍼사드(Facade) 패턴 설계와 인터페이스 전략]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> Toss Front SDK는 외부 연동사가 직관적으로 연동 앱을 개발할 수 있도록 퍼사드(Facade) 패턴을 적용하여 인터페이스를 설계했습니다. 이 설계의 핵심은 단순히 내부 기능을 숨기는 것이 아니라, 복잡한 로직을 사용자의 '의도(Intent)'를 기준으로 재구성하여 제공하는 것입니다. 흔하게 쓰이는 80%의 작업은 고수준 인터페이스로 제공해 편의성을 높이고, 20%의 특수한 상황을 위해 저수준 인터페이스를 탈출구(Escape Hatch)로 남겨두어 편의성과 유연성의 균형을 맞추고 개발자의 인지 부하를 크게 줄입니다. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Facade Pattern (퍼사드 패턴)]], [[단일 책임 원칙(SRP)]], [[Escape Hatch (탈출구)]] -- **Projects/Contexts:** [[Toss Front SDK 기반 외부 연동사 플러그인 개발 생태계 구축]] -- **Contradictions/Notes:** 내용 간의 상충되는 주장은 존재하지 않습니다. 다만 고수준으로 추상화된 퍼사드 패턴이 사용자 경험(DX)을 극대화하는 반면, SDK 내부적으로는 오케스트레이션 로직의 유지 비용과 복잡성을 심화시킨다는 명확한 트레이드오프가 존재함을 지적하고 있습니다 [6]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/Toss SDK의 퍼사드(Facade) 패턴 설계와 인터페이스 전략.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Type Inference.md b/10_Wiki/Topics/Programming & Language/Type Inference.md deleted file mode 100644 index 341b178e..00000000 --- a/10_Wiki/Topics/Programming & Language/Type Inference.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-75C521 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type Inference" ---- - -# [[Type Inference]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type Inference.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Type Narrowing.md b/10_Wiki/Topics/Programming & Language/Type Narrowing.md deleted file mode 100644 index 08b5946d..00000000 --- a/10_Wiki/Topics/Programming & Language/Type Narrowing.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -id: P-REINFORCE-AUTO-325DC7 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type Narrowing" ---- - -# [[Type Narrowing]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **동작 원리와 필요성** - 타입스크립트의 타입 좁히기는 유니온 타입이나 `unknown` 타입처럼 변수가 여러 타입을 가질 수 있을 때 필수적인 과정입니다 [3, 5]. 유니온 타입의 값에서 타입별 특화된 속성에 접근하기 위해서는 반드시 먼저 타입을 좁혀야 하며, 그렇지 않으면 타입 에러가 발생할 수 있습니다 [1]. 타입스크립트의 제어 흐름 분석기(control flow analysis)는 조건문(`if`, `switch` 등) 내부의 검증 로직을 이해하고, 해당 블록 내에서 변수를 구체화된 타입으로 자동 인식합니다 [3]. - -- **타입 가드(Type Guards)를 통한 좁히기 기법** - 타입스크립트는 런타임 동작을 기반으로 타입을 좁히기 위해 다양한 기법을 지원합니다 [6, 7]: - - **`typeof` 검사:** `typeof v === "typename"` 형식으로 사용하며, "number", "string", "boolean", "symbol" 등의 원시 타입을 좁힙니다 [7, 8]. - - **`instanceof` 검사:** 생성자 함수의 프로토타입을 확인하여 해당 생성자의 인스턴스로 타입을 좁힙니다 [7, 8]. - - **동등성 검사 및 `in` 연산자:** 변수의 특정 값 일치 여부나, 객체 내 특정 속성의 존재(`in` 연산자)를 확인하여 객체의 타입을 좁힐 수 있습니다 [3, 7]. - -- **사용자 정의 타입 가드 (Type Predicates)** - 내장된 타입 가드 외에도 반환 타입에 `is` 키워드를 활용해 커스텀 타입 가드 함수를 만들 수 있습니다 [8]. 이 함수는 특정 매개변수가 특정 타입인지 여부를 불리언 값으로 반환하며, 이 결과에 따라 타입 시스템이 타입 좁히기를 적용하게 됩니다 [9]. - -- **식별 가능한 유니온 (Discriminated Unions)** - 공유되는 리터럴 속성(판별자, discriminant)을 사용하여 여러 객체의 집합을 특정한 하나의 객체로 좁히는 강력한 패턴입니다 [2, 10]. `switch`나 `if` 문을 사용해 판별자 속성 값을 비교하면, 타입스크립트는 추가적인 수동 검사 없이 조건에 맞추어 타입을 좁혀줍니다 [10, 11]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Type Guards]], [[Discriminated Unions]], [[Union Types]], [[Type Predicates]] -- **Projects/Contexts:** 알 수 없는 외부 데이터를 수신하는 상황(`unknown` 타입 처리), API 응답 상태(loading/success/error), Redux 리듀서 액션, 또는 다단계 폼 및 라우터 상태 등 다형성 데이터를 구별하여 안전하게 처리해야 하는 구조적 맥락에서 빈번하게 사용됩니다 [3, 12, 13]. -- **Contradictions/Notes:** 컴파일러에게 개발자가 직접 타입을 가정하도록 강제하는 타입 단언(Type Assertions, `as` 키워드 사용)과 달리, 타입 좁히기(Type Narrowing)는 코드의 제어 흐름과 타입 가드를 기반으로 타입스크립트가 스스로 안전하게 타입을 추론하고 좁힌다는 점에서 안전성 면에서 큰 차이가 있습니다 [3, 9, 14, 15]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/Type Narrowing.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Type Predicates.md b/10_Wiki/Topics/Programming & Language/Type Predicates.md deleted file mode 100644 index 86ef9e96..00000000 --- a/10_Wiki/Topics/Programming & Language/Type Predicates.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1D7E99 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type Predicates" ---- - -# [[Type Predicates]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type Predicates.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Type-Assertion.md b/10_Wiki/Topics/Programming & Language/Type-Assertion.md deleted file mode 100644 index 1b87f742..00000000 --- a/10_Wiki/Topics/Programming & Language/Type-Assertion.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1404CE -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Assertion" ---- - -# [[Type-Assertion]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Assertion.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Type-Erasure.md b/10_Wiki/Topics/Programming & Language/Type-Erasure.md deleted file mode 100644 index 0497a966..00000000 --- a/10_Wiki/Topics/Programming & Language/Type-Erasure.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-565E28 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Erasure" ---- - -# [[Type-Erasure]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Erasure.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Type-Inference-Algorithms.md b/10_Wiki/Topics/Programming & Language/Type-Inference-Algorithms.md deleted file mode 100644 index e58d9840..00000000 --- a/10_Wiki/Topics/Programming & Language/Type-Inference-Algorithms.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0EC835 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Inference-Algorithms" ---- - -# [[Type-Inference-Algorithms]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Inference-Algorithms.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Type-Narrowing-Mechanisms.md b/10_Wiki/Topics/Programming & Language/Type-Narrowing-Mechanisms.md deleted file mode 100644 index 2a096030..00000000 --- a/10_Wiki/Topics/Programming & Language/Type-Narrowing-Mechanisms.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8D1630 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Narrowing-Mechanisms" ---- - -# [[Type-Narrowing-Mechanisms]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Narrowing-Mechanisms.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Type-Narrowing-and-Control-Flow-Analysis.md b/10_Wiki/Topics/Programming & Language/Type-Narrowing-and-Control-Flow-Analysis.md deleted file mode 100644 index d786c7fb..00000000 --- a/10_Wiki/Topics/Programming & Language/Type-Narrowing-and-Control-Flow-Analysis.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DD413B -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Narrowing-and-Control-Flow-Analysis" ---- - -# [[Type-Narrowing-and-Control-Flow-Analysis]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Narrowing-and-Control-Flow-Analysis.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Type-Narrowing-and-Guards.md b/10_Wiki/Topics/Programming & Language/Type-Narrowing-and-Guards.md deleted file mode 100644 index ee3d32a3..00000000 --- a/10_Wiki/Topics/Programming & Language/Type-Narrowing-and-Guards.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D8EC83 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Narrowing-and-Guards" ---- - -# [[Type-Narrowing-and-Guards]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Narrowing-and-Guards.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Type-Predicates.md b/10_Wiki/Topics/Programming & Language/Type-Predicates.md deleted file mode 100644 index 6d1f306a..00000000 --- a/10_Wiki/Topics/Programming & Language/Type-Predicates.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-62E7D2 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Type-Predicates" ---- - -# [[Type-Predicates]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Type-Predicates.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/TypeScript 타입 시스템 (인터페이스 설계).md b/10_Wiki/Topics/Programming & Language/TypeScript 타입 시스템 (인터페이스 설계).md deleted file mode 100644 index 453a19b5..00000000 --- a/10_Wiki/Topics/Programming & Language/TypeScript 타입 시스템 (인터페이스 설계).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-411D87 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript 타입 시스템 (인터페이스 설계)" ---- - -# [[TypeScript 타입 시스템 (인터페이스 설계)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript 타입 시스템 (인터페이스 설계).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/TypeScript 타입 시스템 아키텍처 및 도메인 기반 설계(DDD).md b/10_Wiki/Topics/Programming & Language/TypeScript 타입 시스템 아키텍처 및 도메인 기반 설계(DDD).md deleted file mode 100644 index 3a9a649d..00000000 --- a/10_Wiki/Topics/Programming & Language/TypeScript 타입 시스템 아키텍처 및 도메인 기반 설계(DDD).md +++ /dev/null @@ -1,46 +0,0 @@ ---- -id: P-REINFORCE-AUTO-176A7F -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript 타입 시스템 아키텍처 및 도메인 기반 설계(DDD)" ---- - -# [[TypeScript 타입 시스템 아키텍처 및 도메인 기반 설계(DDD)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **구조적 타이핑의 한계와 명목적 타이핑의 수복** - TypeScript는 객체의 구조(형태)가 같으면 동일한 타입으로 취급하는 구조적 타이핑을 사용합니다 [1, 2, 8]. 하지만 도메인 모델링에서는 이메일 주소와 사용자의 이름이 모두 문자열(`string`)이라고 해서 섞여 쓰이면 안 되는 '기본 타입에의 집착(Primitive Obsession)' 문제가 발생합니다 [3, 9]. - -- **브랜디드 타입(Branded Types)을 통한 데이터 격리** - 위 문제를 해결하기 위해 도메인 기반 설계에서는 브랜디드 타입(또는 Opaque Types)을 적극 활용합니다 [10, 11]. 런타임에는 존재하지 않지만 컴파일 시점에만 존재하는 고유한 속성(예: `unique symbol`)을 타입에 부여하여 `UserId`와 `OrderId`를 엄격히 분리합니다 [3, 9, 12]. 이를 통해 오직 검증된 데이터만이 시스템의 내부 로직으로 진입하도록 강제할 수 있습니다 [11, 12]. - -- **"검증하지 말고 파싱하라 (Parse, Don't Validate)"** - 외부에서 유입되는 언타입드(untyped) 데이터를 단순히 유효성 검사하는 것에 그치지 않고, 시스템 경계(Boundary)에서 한 번에 완벽히 타이핑된 구조로 변환(파싱)해야 한다는 설계 철학입니다 [4, 6, 13]. Zod와 같은 런타임 검증 라이브러리와 브랜디드 타입을 결합하면, 파싱을 통과한 데이터가 도메인 객체로서 안전하다는 것을 타입 시스템 레벨에서 영구적으로 보장할 수 있습니다 [6, 12, 14]. - -- **식별 가능한 유니온(Discriminated Unions)과 완전성 검사(Exhaustiveness Checking)** - 공통된 리터럴 속성(태그)을 사용하여 도메인의 복잡한 상태 머신을 모델링하는 기법으로, "불가능한 상태를 표현 불가능하게 만드는" 핵심 수비 기술입니다 [5, 15-18]. `switch`문과 `never` 타입을 결합한 완전성 검사(Exhaustiveness Checking) 기법을 사용하면, 도메인에 새로운 상태가 추가되었을 때 이를 처리하지 않은 모든 코드를 컴파일 에러로 즉각 찾아낼 수 있습니다 [18-22]. - -- **불변성(Immutability) 확립** - 상태의 무분별한 변경을 막기 위해 `readonly` 수식어를 적극적으로 사용하여 객체와 배열의 수정을 컴파일 수준에서 금지합니다 [23-25]. 단순한 얕은 보호를 넘어 매핑 타입과 조건부 타입을 결합한 재귀적 불변성(`DeepReadonly`)을 구축하면, 복잡한 도메인 엔티티의 무결성을 완벽하게 방어할 수 있습니다 [5, 25, 26]. - -- **경계면의 방어: EPC와 `satisfies` 연산자** - 객체 리터럴이 직접 할당될 때 작동하는 과잉 속성 체크(Excess Property Checking, EPC)를 통해 정의되지 않은 도메인 속성이 포함되는 것을 차단합니다 [8, 27, 28]. 간접 할당으로 인해 EPC가 우회되는 것을 막기 위해 `satisfies` 연산자를 활용하면, 객체의 구체적인 리터럴 타입 정보를 유지하면서도 안전하게 도메인 인터페이스 규격을 충족하는지 검증할 수 있습니다 [11, 29, 30]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[브랜디드 타입(Branded Types)]], [[식별 가능한 유니온(Discriminated Unions)]], [[구조적 타이핑(Structural Typing)]], [[Parse, Don't Validate]], [[완전성 검사(Exhaustiveness Checking)]] -- **Projects/Contexts:** [[Zod 유효성 검사 라이브러리 연동]], [[프론트엔드 상태 머신(State Machine) 구현]] -- **Contradictions/Notes:** TypeScript는 본래 Java나 C#과 달리 명목적 타이핑(Nominal Typing)을 네이티브로 지원하지 않고 구조적 타이핑으로 동작합니다. 따라서 엄격한 도메인 설계를 구축하려면, 컴파일러를 속이는 방식(가짜 속성 추가 등)인 브랜디드 타입과 같은 우회 전략을 인위적으로 도입해야만 명목적 타이핑의 효과를 얻을 수 있습니다. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/TypeScript 타입 시스템 아키텍처 및 도메인 기반 설계(DDD).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/TypeScript-Language-Service.md b/10_Wiki/Topics/Programming & Language/TypeScript-Language-Service.md deleted file mode 100644 index e2a9398c..00000000 --- a/10_Wiki/Topics/Programming & Language/TypeScript-Language-Service.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-90F4A8 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - TypeScript-Language-Service" ---- - -# [[TypeScript-Language-Service]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/TypeScript-Language-Service.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/UNESCO-Memory-of-the-World.md b/10_Wiki/Topics/Programming & Language/UNESCO-Memory-of-the-World.md deleted file mode 100644 index c0129d5e..00000000 --- a/10_Wiki/Topics/Programming & Language/UNESCO-Memory-of-the-World.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8CC54C -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - UNESCO-Memory-of-the-World" ---- - -# [[UNESCO-Memory-of-the-World]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/UNESCO-Memory-of-the-World.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Urban Planning Simulation.md b/10_Wiki/Topics/Programming & Language/Urban Planning Simulation.md deleted file mode 100644 index 3f9a678f..00000000 --- a/10_Wiki/Topics/Programming & Language/Urban Planning Simulation.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E9E18A -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Urban Planning Simulation" ---- - -# [[Urban Planning Simulation]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Urban Planning Simulation.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/V8 JavaScript Engine 메모리 관리 및 가비지 컬렉션.md b/10_Wiki/Topics/Programming & Language/V8 JavaScript Engine 메모리 관리 및 가비지 컬렉션.md deleted file mode 100644 index ede2f90b..00000000 --- a/10_Wiki/Topics/Programming & Language/V8 JavaScript Engine 메모리 관리 및 가비지 컬렉션.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-44DD69 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - V8 JavaScript Engine 메모리 관리 및 가비지 컬렉션" ---- - -# [[V8 JavaScript Engine 메모리 관리 및 가비지 컬렉션]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> V8 엔진은 동적인 데이터를 관리하기 위해 메모리를 힙(Heap)과 스택(Stack)으로 구분하며, 가비지 컬렉션(GC)을 통해 더 이상 참조되지 않는 메모리를 자동으로 회수한다 [1-3]. V8은 대다수 객체의 수명이 짧다는 '세대적 가설(Generational Hypothesis)'을 기반으로 힙 영역을 여러 세대 공간으로 나누어 관리하고, 각기 다른 GC 알고리즘(Scavenge, Mark-Sweep-Compact 등)을 적용해 성능을 최적화한다 [4-7]. 근래에는 'Orinoco' 프로젝트를 통해 메인 스레드의 실행을 멈추는 'Stop-the-world' 현상을 최소화하기 위해 병렬(Parallel), 점진적(Incremental), 동시(Concurrent) 방식의 GC 기법을 도입하여 애플리케이션의 지연 시간(Latency)을 크게 개선했다 [6, 8, 9]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** `[[Garbage Collection]]`, `[[Cheney's Algorithm]]`, `[[Mark-Sweep-Compact]]`, `[[Orinoco GC]]`, `[[Pointer Compression]]`, `[[Generational Hypothesis]]` -- **Projects/Contexts:** `[[Node.js Memory Management]]`, `[[Chrome V8 Heap Analysis]]`, `[[Electron V8 Memory Cage]]` -- **Contradictions/Notes:** Minor GC(Scavenger)에서 살아남은 객체를 지속적으로 다른 메모리 공간으로 복사(Evacuate/Copy)하는 방식은 얼핏 보기에 비용이 매우 큰 작업처럼 보인다. 그러나 '대다수의 객체가 곧바로 죽는다'는 세대적 가설(Generational Hypothesis) 덕분에 실제로 복사되는 객체는 아주 소수에 불과하며, 오히려 살아남은 것들만 모아주어 나머지 공간 전체를 즉시 재사용할 수 있게 하므로 전체적인 할당 속도와 단편화 관리에 훨씬 유리하다 [5, 14, 50]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/V8 JavaScript Engine 메모리 관리 및 가비지 컬렉션.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/V8 JavaScript 엔진.md b/10_Wiki/Topics/Programming & Language/V8 JavaScript 엔진.md deleted file mode 100644 index ffe91caf..00000000 --- a/10_Wiki/Topics/Programming & Language/V8 JavaScript 엔진.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -id: P-REINFORCE-AUTO-383B09 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - V8 JavaScript 엔진" ---- - -# [[V8 JavaScript 엔진]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -**1. 메모리 구조와 힙(Heap) 공간 분할** -V8 프로세스는 운영체제로부터 할당받은 'Resident Set' 메모리를 스택과 힙으로 나누어 사용합니다 [4, 10]. 스택은 정적 데이터(메서드 프레임, 원시 값, 포인터)를 저장하고, 힙은 동적으로 생성되는 객체 데이터를 저장합니다 [11, 12]. 대부분의 객체는 생성 후 금방 버려진다는 '세대 가설(Generational Hypothesis)'에 따라 힙은 여러 공간(Space)으로 나뉩니다 [5, 13]. -* **New Space (Young Generation):** 새로운 객체가 할당되는 작고 빠른 공간입니다. From-Space와 To-Space로 나뉘며, 'Scavenger(Minor GC)'에 의해 관리됩니다 [14-16]. -* **Old Space (Old Generation):** New Space에서 두 번의 GC를 버틴 살아남은 객체들이 이동하는 큰 공간입니다. 포인터가 있는 객체와 데이터만 있는 객체 공간으로 나뉘며, Major GC가 관리합니다 [2, 12, 15]. -* **Large Object Space:** 다른 공간의 크기 제한을 초과하는 큰 객체가 저장되며, 이 객체들은 GC에 의해 이동되지 않습니다 [2, 15]. -* **Code Space:** JIT 컴파일러에 의해 생성된 실행 가능한 머신 코드가 저장되는 유일한 공간입니다 [2, 12, 15]. - -**2. Orinoco 가비지 컬렉터 (Garbage Collection)** -V8은 애플리케이션의 멈춤 현상(Stop-the-world)을 최소화하기 위해 병렬(Parallel), 점진적(Incremental), 동시적(Concurrent) 방식을 결합한 Orinoco 가비지 컬렉터를 사용합니다 [8, 17, 18]. -* **Minor GC (Scavenger):** New Space의 여유 공간이 부족할 때 발생합니다. 살아있는 객체만 새로운 공간으로 복사(Evacuate)하고 나머지는 버리는 방식을 사용하여 메모리 단편화를 제거합니다 [14, 19, 20]. -* **Major GC (Mark-Sweep-Compact):** Old Space를 관리하며 마킹(Marking), 스위핑(Sweeping), 압축(Compacting)의 3단계를 거칩니다 [21]. 메인 스레드의 JavaScript 실행과 동시에 백그라운드에서 마킹과 스위핑을 진행하여 지연 시간을 대폭 줄입니다 [22-24]. - -**3. V8 메모리 케이지와 포인터 압축 (Security & Pointer Compression)** -64비트 플랫폼에서 V8은 메모리 사용량을 줄이기 위해 '포인터 압축(Pointer Compression)'을 사용합니다. 포인터를 64비트 전체 주소가 아닌 32비트 오프셋으로 저장하여 객체 참조에 필요한 메모리를 절반으로 줄입니다 [25, 26]. 이로 인해 V8의 관리되는 힙 메모리는 최대 4GB의 연속된 '메모리 케이지(Memory Cage)' 영역 안에 갇히게 됩니다 [25, 27, 28]. 메모리 케이지는 V8 엔진의 JIT 버그를 악용한 임의 메모리 읽기/쓰기 공격을 방어하는 보안 기술이기도 합니다 [29, 30]. - -**4. 데이터 최적화 구조** -V8은 객체와 포인터를 빠르게 식별하기 위해 단어의 마지막 비트를 태그로 사용하는 '태그된 포인터(Tagged Pointers)' 기법을 사용합니다 [31, 32]. 또한 문자열 최적화를 위해 문자열을 단순히 복사하지 않고 기존 문자열을 참조하는 'ConsString(Ropes)'이나 'SlicedString' 구조를 활용하여 메모리 할당 시간과 공간을 절약합니다 [33-36]. 메모리 단편화를 줄이기 위해 최근에는 페이지(Page) 크기를 1MB에서 512KB로 줄여 저사양 기기에서의 메모리 효율을 향상시켰습니다 [37, 38]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Garbage Collection]], [[Orinoco]], [[Pointer Compression]], [[V8 Memory Cage]], [[Scavenger]], [[Generational Hypothesis]] -- **Projects/Contexts:** [[Node.js]], [[Chrome]], [[Electron]] -- **Contradictions/Notes:** 모바일 같은 저메모리 디바이스에서는 V8이 가비지 컬렉션의 지연 시간이나 처리량보다는 메모리 소비를 줄이기 위해 GC를 더 자주 실행하도록 휴리스틱을 엄격하게 조정합니다. 이로 인해 메모리는 절약되지만 GC 비용(빈도)이 증가하는 트레이드오프가 존재합니다 [39, 40]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/V8 JavaScript 엔진.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/V8 Memory Cage.md b/10_Wiki/Topics/Programming & Language/V8 Memory Cage.md deleted file mode 100644 index ddf70d8d..00000000 --- a/10_Wiki/Topics/Programming & Language/V8 Memory Cage.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BEAD76 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - V8 Memory Cage" ---- - -# [[V8 Memory Cage]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> V8 Memory Cage(또는 V8 Sandbox)는 V8 JavaScript 엔진의 힙 객체들을 제한된 연속 메모리 영역(일반적으로 4GB) 내에 격리하는 보안 및 최적화 아키텍처입니다 [1, 2]. 이 구조는 메모리 내에 실제 포인터 대신 기준 주소로부터의 오프셋(offset)을 저장하여, 공격자가 취약점을 이용해 프로세스의 임의 메모리를 읽고 쓰는 것을 방지합니다 [3]. 포인터 압축을 통해 메모리 사용량을 줄이고 성능을 향상시키지만, 힙 외부(off-heap) 메모리를 직접 참조하는 ArrayBuffer 생성이 제한된다는 단점이 있습니다 [4, 5]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Pointer Compression]], [[ArrayBuffer]], [[Type Confusion]], [[V8 Heap]] -- **Projects/Contexts:** [[Electron 21+]], [[Chromium 103+]], [[Node.js Native Modules]] -- **Contradictions/Notes:** V8 메모리 케이지는 보안과 전반적인 성능 측면에서 이점이 크지만, V8 힙 용량이 4GB로 제한된다는 분명한 단점이 있습니다 [4, 5]. 대용량 메모리가 필수적인 앱의 경우 자식 프로세스로 워크로드를 분리하거나 포인터 압축이 비활성화된 사용자 지정 빌드를 사용해야 하는 워크어라운드가 필요합니다 [11]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/V8 Memory Cage.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/V8 엔진 (V8 Engine).md b/10_Wiki/Topics/Programming & Language/V8 엔진 (V8 Engine).md deleted file mode 100644 index ba37598d..00000000 --- a/10_Wiki/Topics/Programming & Language/V8 엔진 (V8 Engine).md +++ /dev/null @@ -1,45 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D6DB20 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - V8 엔진 (V8 Engine)" ---- - -# [[V8 엔진 (V8 Engine)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -**메모리 아키텍처 및 레지던트 세트 (Memory Architecture and Resident Set)** -V8은 운영체제로부터 프로세스 레벨의 물리적 메모리인 '레지던트 세트(Resident Set)'를 할당받아 실행하며, 이를 크게 스택(Stack)과 힙(Heap) 두 영역으로 나눕니다 [5, 6]. 스택은 메서드 프레임, 원시 값(Primitive values), 그리고 힙의 객체를 참조하는 포인터 등 정적 데이터를 저장하는 데 사용됩니다 [5, 7]. 힙은 동적 데이터와 객체가 저장되는 공간으로 가장 크며, 관리 방식에 따라 다시 여러 세그먼트로 나뉩니다 [8, 9]. 주요 세그먼트로는 대부분의 새 객체가 할당되는 'New Space', 오래 생존한 객체가 이동하는 'Old Space', 크기가 매우 큰 객체를 저장하는 'Large Object Space', JIT 컴파일된 머신 코드가 저장되는 'Code Space' 등이 있습니다 [9-11]. - -**가비지 컬렉션 (Garbage Collection)** -V8의 메모리 관리는 "대부분의 객체는 생성된 직후 금방 죽는다"는 세대적 가설(Generational Hypothesis)에 크게 의존합니다 [12-14]. 이 가설에 따라 V8은 두 개의 주요 가비지 컬렉터를 운영합니다. -* **Minor GC (Scavenger)**: New Space(Young Generation)의 메모리를 관리합니다 [12, 15]. 이곳의 메모리는 매우 작고 할당이 빠르며, 메모리 포인터가 한계에 도달하면 Scavenger가 작동합니다 [12, 16]. V8은 Cheney의 알고리즘에 기반한 세미 스페이스(Semi-space) 설계를 통해 New Space를 'From-Space'와 'To-Space'로 나누고, 살아있는 객체만을 복사하여 이동시킨 뒤 두 공간을 교환(Swap)하여 단편화를 방지합니다 [15, 17, 18]. Minor GC를 2회 이상 생존한 객체는 Old Space로 승격(Promotion)됩니다 [12, 19, 20]. -* **Major GC (Mark-Sweep-Compact)**: 수백 메가바이트의 데이터를 포함할 수 있는 Old Space의 관리를 담당합니다 [21-23]. 이 알고리즘은 GC 루트(전역 객체, 스택 등)로부터 접근 가능한 객체를 식별하여 '살아있음(Black)'으로 표시(Marking)하고, 닿지 않는 객체의 메모리를 해제(Sweeping)합니다 [24-26]. 그런 다음, 메모리의 단편화를 줄이기 위해 살아남은 객체들을 모으는 압축(Compacting) 과정을 수행합니다 [26, 27]. - -**Orinoco 가비지 컬렉터와 최적화 기법** -가비지 컬렉션이 일어나는 동안 자바스크립트 실행이 멈추는 'Stop-the-world' 현상을 완화하기 위해, V8은 Orinoco라는 프로젝트를 통해 GC 기술을 대폭 발전시켰습니다 [4, 16, 28]. -* **Parallel(병렬)**: 메인 스레드와 헬퍼 스레드가 동시에 가비지 컬렉션 작업을 나누어 처리합니다 [28]. -* **Concurrent(동시성)**: 메인 스레드가 자바스크립트를 계속 실행하는 동안, 헬퍼 스레드들이 백그라운드에서 마킹(Marking)이나 스위핑(Sweeping) 등의 GC 작업을 전적으로 수행합니다 [29]. V8은 쓰기 장벽(Write Barriers)을 통해 자바스크립트 실행 도중 변하는 객체 간의 참조 상태를 추적합니다 [30-32]. -* **Incremental(점진적)**: 한 번의 긴 GC 멈춤 대신, 마킹 작업을 작은 단위로 쪼개어 자바스크립트 실행 사이사이에 짧게 여러 번 수행하도록 합니다 [33, 34]. - -**메모리 샌드박스와 포인터 압축 (Memory Cage & Pointer Compression)** -64비트 시스템에서 V8은 메모리 오버헤드를 줄이기 위해 포인터를 32비트 오프셋으로 저장하는 '포인터 압축(Pointer Compression)' 기법을 사용합니다 [35-37]. 이로 인해 V8의 관리되는 힙 공간은 최대 4GB의 크기를 갖는 인접한 메모리 영역(V8 Memory Cage 또는 Sandbox)으로 제한됩니다 [36, 38, 39]. 메모리 케이지는 JIT 엔진 버그 등으로부터 V8 내부의 임의의 메모리 읽기/쓰기가 발생하더라도 공격자가 샌드박스 외부 시스템을 통제할 수 없게 막는 보안 효과를 가집니다 [40, 41]. 한편, V8은 `ElementsKind`를 통해 배열 내부 데이터(Raw double vs Tagged pointer)를 최적화하여 저장하는데, 공격자가 Out-of-bounds 등의 취약점을 이용해 배열의 길이나 Map 구조를 손상시킬 경우(`addrof`, `fakeobj` 프리미티브 등) 타입 혼돈(Type Confusion)을 유발하여 힙 아키텍처를 공격할 수도 있습니다 [42-44]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** `[[Orinoco GC]]`, `[[Generational Hypothesis]]`, `[[Mark-Sweep-Compact]]`, `[[V8 Memory Cage]]` -- **Projects/Contexts:** `[[Node.js]]`, `[[Google Chrome]]`, `[[Electron]]`, `[[WebAssembly]]` -- **Contradictions/Notes:** V8에 도입된 포인터 압축 기술(Pointer Compression)은 V8 힙 메모리 크기를 최대 40% 감소시키고 CPU 및 GC 성능을 5~10% 향상시키는 장점이 있지만, 그로 인해 V8 힙 크기가 최대 4GB로 제한된다는 단점 또한 명확히 존재합니다 [38, 45]. 추가로, V8 환경에서 프로그래머가 직접 가비지 컬렉션(GC)을 통제하거나 개입하는 것은 불가능하게 설계되어 있으나(`ECMAScript` 사양에 GC 제어 인터페이스가 없음), `--expose-gc`와 같은 특수 커맨드라인 플래그나 크롬 브라우저의 'Idle-time GC' 메커니즘을 이용하면 외부(Embedder)에서 유휴 시간을 이용해 수동으로 GC를 유도하는 것은 가능합니다 [46-48]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/V8 엔진 (V8 Engine).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/V8 엔진 메모리 구조.md b/10_Wiki/Topics/Programming & Language/V8 엔진 메모리 구조.md deleted file mode 100644 index bd6193cc..00000000 --- a/10_Wiki/Topics/Programming & Language/V8 엔진 메모리 구조.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3C3331 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - V8 엔진 메모리 구조" ---- - -# [[V8 엔진 메모리 구조]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> V8 엔진의 메모리 구조는 실행 중인 프로그램에 할당되는 상주 집합(Resident Set)을 기반으로 하며, 크게 정적 데이터를 다루는 스택(Stack) 영역과 동적 데이터를 관리하는 힙(Heap) 영역으로 나뉜다 [1, 2]. 힙 메모리는 가비지 컬렉터(GC)가 객체의 생명주기와 특성에 맞춰 효율적으로 메모리를 회수할 수 있도록 세대별 가설(Generational hypothesis)에 기반하여 여러 공간(Space)으로 세분화된다 [3-5]. 최신 아키텍처에서는 메모리 단편화 방지와 보안 강화를 위해 오프힙 존(Zone) 메모리 활용, 512KB로 축소된 페이지(Page) 단위 관리, 그리고 4GB 제한을 가지는 포인터 압축(Pointer Compression) 및 메모리 케이지(Memory Cage) 기술이 적용되어 있다 [4, 6-8]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[가비지 컬렉터(Garbage Collection)]], [[포인터 압축(Pointer Compression)]], [[세대별 가설(Generational Hypothesis)]] -- **Projects/Contexts:** [[Node.js 및 웹 브라우저 런타임 최적화]], [[V8 보안 및 샌드박싱 모델(Memory Cage)]] -- **Contradictions/Notes:** 소스에 관련 정보가 부족합니다. (특별한 모순점은 없으나, V8의 힙 페이지 크기가 기기와 버전에 따라 1MB에서 512KB로 유동적으로 최적화되었다는 변화 기록만 존재합니다 [4, 24, 25].) - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/V8 엔진 메모리 구조.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/V8 엔진 힙 아키텍처(V8 Engine Heap Architecture).md b/10_Wiki/Topics/Programming & Language/V8 엔진 힙 아키텍처(V8 Engine Heap Architecture).md deleted file mode 100644 index 85712998..00000000 --- a/10_Wiki/Topics/Programming & Language/V8 엔진 힙 아키텍처(V8 Engine Heap Architecture).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-FEC38C -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - V8 엔진 힙 아키텍처(V8 Engine Heap Architecture)" ---- - -# [[V8 엔진 힙 아키텍처(V8 Engine Heap Architecture)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> V8 엔진의 힙 아키텍처는 동적 데이터와 런타임에 크기 및 수명이 결정되는 객체들을 저장하고 관리하는 메모리 영역입니다 [1, 2]. V8은 대부분의 객체가 일찍 죽는다는 '세대적 가설(Generational Hypothesis)'을 바탕으로 힙을 여러 세대와 특수한 목적의 공간(Space)으로 분할하여 관리합니다 [3-5]. 이를 통해 할당 속도를 극대화하고 가비지 컬렉션(GC)의 오버헤드 및 지연 시간을 줄여 효율적인 메모리 회수와 프로그램 실행 성능을 보장합니다 [4, 6]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Generational Hypothesis]], [[Garbage Collection (Minor GC / Major GC)]], [[V8 Memory Cage]], [[Pointer Compression]] -- **Projects/Contexts:** [[Node.js]], [[Chrome Browser]], [[Electron]], [[Deno]] -- **Contradictions/Notes:** V8 힙의 페이지 크기는 전통적으로 1MB로 설명되지만, 소스에 따르면 저메모리 기기의 메모리 최적화와 메모리 파편화를 줄이기 위해 512KB로 크기가 축소되는 최적화가 적용되었습니다 [4, 17, 19, 20]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/V8 엔진 힙 아키텍처(V8 Engine Heap Architecture).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/V8 엔진(V8 Engine).md b/10_Wiki/Topics/Programming & Language/V8 엔진(V8 Engine).md deleted file mode 100644 index 9143aca6..00000000 --- a/10_Wiki/Topics/Programming & Language/V8 엔진(V8 Engine).md +++ /dev/null @@ -1,35 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F107AC -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - V8 엔진(V8 Engine)" ---- - -# [[V8 엔진(V8 Engine)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **메모리 구조 (Memory Structure)**: V8의 프로세스 메모리(Resident Set)는 주로 정적 데이터(메서드 프레임, 원시 값, 객체 포인터)를 저장하는 스택(Stack)과 동적 데이터를 저장하는 힙(Heap)으로 나뉩니다 [2, 5, 6]. 힙 메모리는 객체의 생존 기간과 데이터 특성에 따라 '새로운 공간(New Space)', '오래된 공간(Old Pointer/Data Space)', '대형 객체 공간(Large Object Space)', '코드 공간(Code Space)' 등 다양한 세부 영역(Space)으로 나뉘어 독립적으로 관리됩니다 [7-9]. -- **오리노코(Orinoco) 가비지 컬렉션**: V8은 '오리노코(Orinoco)'라는 프로젝트를 통해 병렬(Parallel), 증분(Incremental), 동시성(Concurrent) 기법을 GC에 도입하여 애플리케이션의 메인 스레드 중단 시간(Stop-the-world)을 대폭 줄였습니다 [10-13]. - - *Minor GC (Scavenger)*: '새로운 공간'에서 단명하는 객체들을 빠르게 수집합니다 [14, 15]. 두 개의 반공간(To-Space, From-Space)을 분리하여 사용하는 방식을 통해, 살아남은 객체만을 새 공간으로 복사 및 압축하고 2번의 사이클을 버틴 객체는 '오래된 공간'으로 승격(Promote)시킵니다 [15-17]. - - *Major GC (Mark-Sweep-Compact)*: '오래된 공간'을 관리하며, 루트에서 도달 가능한 객체를 탐색하여 색칠하는 마킹(Marking), 죽은 객체의 메모리를 해제하여 빈 공간(Free-list)에 추가하는 스위핑(Sweeping), 파편화를 줄이기 위해 살아있는 객체를 모으는 압축(Compacting) 단계를 수행합니다 [18-23]. -- **포인터 식별 및 압축 (Tagged Pointers & Pointer Compression)**: V8은 하위 비트를 이용해 메모리 내에서 데이터(예: Smi라 불리는 작은 정수)와 포인터를 빠르게 구분하는 '태그된 포인터' 방식을 사용합니다 [24-26]. 또한, 64비트 플랫폼에서 메모리를 절약하기 위해 포인터를 32비트 오프셋으로 압축 저장하며, 이 정책으로 인해 V8 힙은 최대 4GB의 제한된 "메모리 케이지(Memory Cage)" 영역 내에 위치하게 됩니다 [27-30]. -- **성능 프로파일링 및 누수 탐지**: 개발자는 `--trace-gc` 플래그, 힙 스냅샷(Heap Snapshots), 크롬 개발자 도구의 할당 타임라인(Allocation Timeline) 등을 활용해 엔진 내부의 메모리 증감 추이를 확인하고, 메모리 누수 및 퍼포먼스 저하의 근본 원인을 추적할 수 있습니다 [31-34]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Garbage Collection (GC)]], [[Orinoco]], [[Generational Hypothesis]], [[Pointer Compression]], [[Heap Space]] -- **Projects/Contexts:** [[Google Chrome]], [[Node.js]], [[Electron]], [[Deno]] -- **Contradictions/Notes:** 과거의 V8 스캐빈저(Scavenger)는 단일 스레드 기반의 Cheney 알고리즘을 사용했으나, 최신 버전에서는 멀티코어 환경에 맞춰 Halstead 방식과 유사한 동적 작업 훔치기(Work stealing) 기반의 병렬 스캐빈저를 도입하여 성능을 개선한 변화가 존재합니다 [35, 36]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/V8 엔진(V8 Engine).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/V8 자바스크립트 엔진.md b/10_Wiki/Topics/Programming & Language/V8 자바스크립트 엔진.md deleted file mode 100644 index 68af32cf..00000000 --- a/10_Wiki/Topics/Programming & Language/V8 자바스크립트 엔진.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4AC7A0 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - V8 자바스크립트 엔진" ---- - -# [[V8 자바스크립트 엔진]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -**메모리 구조 (Heap & Stack)** -* **스택(Stack):** 함수 호출 정보, 로컬 변수, 힙에 있는 객체를 가리키는 포인터, 원시 값(Primitive values) 등 정적 데이터를 저장하는 영역입니다 [3, 10, 11]. -* **힙(Heap):** 크기나 수명을 런타임 이전에는 알 수 없는 동적 객체 데이터가 저장되는 가장 큰 메모리 영역입니다 [4, 12]. 가비지 컬렉션의 효율을 높이기 위해 여러 공간(Space)으로 나뉘어 관리됩니다 [13, 14]. - * **New Space (Young Generation):** 새롭게 생성된 짧은 수명의 객체가 할당되는 작은 공간입니다 [13, 14]. - * **Old Space (Old Generation):** New Space에서 특정 횟수 이상 살아남은 객체가 승격(Promoted)되어 저장되는 큰 공간입니다 [14, 15]. 내부적으로 다른 객체를 가리키는 포인터를 가진 'Old Pointer Space'와 데이터만 가진 'Old Data Space'로 나뉩니다 [13, 14]. - * **Large Object Space:** 다른 공간의 크기 제한(일반적으로 1MB 혹은 512KB 페이지 사이즈)을 초과하는 큰 객체가 저장되며, 가비지 컬렉터에 의해 위치가 이동되지 않습니다 [5, 13, 14]. - * **Code Space:** JIT 컴파일러가 생성한 실행 가능한 기계어 명령어 코드가 할당되는 공간입니다 [13, 14]. - -**가비지 컬렉션 (Garbage Collection)** -V8은 객체 대부분이 일찍 죽는다는 '세대별 가설(Generational hypothesis)'을 바탕으로 두 가지 가비지 컬렉션 알고리즘을 사용합니다 [5, 15, 16]. -* **Scavenge (Minor GC):** New Space를 관리합니다 [14]. 공간을 To-Space와 From-Space로 나누어, 살아있는 객체만 새로운 공간으로 대피(Evacuation)시켜 단편화를 제거하고 나머지는 비우는 빠르고 빈번한 방식으로 동작합니다 [17-19]. -* **Mark-Sweep-Compact (Major GC):** Old Space를 관리합니다 [20, 21]. 애플리케이션의 루트(전역 객체, 로컬 변수 등)에서부터 도달할 수 있는 객체를 식별(Mark)하고, 접근할 수 없는 객체의 메모리를 회수(Sweep)하며, 필요할 경우 메모리 단편화를 줄이기 위해 살아있는 객체들을 한곳으로 모으는 압축(Compact)을 수행합니다 [21-27]. -* **Orinoco 프로젝트:** V8의 최신 가비지 컬렉터 구조로, 메인 스레드 실행이 멈추는 'Stop-the-world' 시간을 줄이기 위해 병렬(Parallel), 점진적(Incremental), 동시적(Concurrent) 처리 기법을 도입했습니다 [7, 9]. 이를 통해 자바스크립트 실행과 백그라운드 스레드에서의 메모리 회수 작업이 교차적으로 수행될 수 있습니다 [28-30]. - -**메모리 최적화 및 보안 구조 (V8 Memory Cage)** -* **포인터 압축 (Pointer Compression):** 64비트 시스템에서 포인터를 64비트 전체 주소가 아닌, 예약된 공간(Cage) 시작점을 기준으로 한 32비트 오프셋으로 저장하여 메모리 사용량을 줄입니다 [6, 8, 31]. 이로 인해 V8 힙의 최대 크기는 4GB로 제한됩니다 [32, 33]. -* **메모리 케이지 (Memory Cage / V8 Sandbox):** 모든 힙 내부의 포인터는 V8 힙 영역을 벗어날 수 없도록 설계되었습니다 [6, 33]. 이 아키텍처는 타입 혼란(Type confusion) 같은 엔진 내 JIT 버그를 악용해 힙 내의 포인터를 덮어씌워도, 공격자가 프로세스 내의 임의의 메모리를 읽거나 쓰는 것을 방지하는 강력한 보안 계층을 제공합니다 [6, 34, 35]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[가비지 컬렉션(Garbage Collection)]], [[Orinoco 가비지 컬렉터]], [[세대별 가설(Generational Hypothesis)]], [[포인터 압축(Pointer Compression)]], [[V8 메모리 케이지(Memory Cage)]] -- **Projects/Contexts:** Node.js, Deno, Electron, Chrome 브라우저 등에서 핵심 자바스크립트 및 WebAssembly 실행 환경으로 채택되어 사용됩니다 [31, 36-39]. 애플리케이션의 메모리 누수 분석 및 성능 모니터링 시 V8의 `--trace-gc`, `--heap-prof` 등 다양한 런타임 플래그와 크롬 개발자 도구의 힙 스냅샷 기능을 주로 활용합니다 [40-43]. -- **Contradictions/Notes:** 자바스크립트는 언어 스펙상 가비지 컬렉터에 대해 프로그래머가 직접 제어할 수 있는 인터페이스를 제공하지 않는 것이 원칙이나 [44], Node.js 환경에서 구동되는 V8은 예외적으로 `--max-old-space-size` 및 `--expose-gc` (코드 내에서 `global.gc()` 호출 지원) 등의 커맨드라인 플래그를 통해 개발자가 직접 힙 크기를 튜닝하고 수동으로 컬렉션을 유도할 수 있도록 허용합니다 [45-47]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/V8 자바스크립트 엔진.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Variable Ratio Reinforcement.md b/10_Wiki/Topics/Programming & Language/Variable Ratio Reinforcement.md deleted file mode 100644 index bfbc6e82..00000000 --- a/10_Wiki/Topics/Programming & Language/Variable Ratio Reinforcement.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1B19EF -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Variable Ratio Reinforcement" ---- - -# [[Variable Ratio Reinforcement]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Variable Ratio Reinforcement.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Variance-Covariance-and-Contravariance.md b/10_Wiki/Topics/Programming & Language/Variance-Covariance-and-Contravariance.md deleted file mode 100644 index ceda6bf8..00000000 --- a/10_Wiki/Topics/Programming & Language/Variance-Covariance-and-Contravariance.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B7957E -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Variance-Covariance-and-Contravariance" ---- - -# [[Variance-Covariance-and-Contravariance]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Variance-Covariance-and-Contravariance.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Variance-in-TypeScript.md b/10_Wiki/Topics/Programming & Language/Variance-in-TypeScript.md deleted file mode 100644 index e788c008..00000000 --- a/10_Wiki/Topics/Programming & Language/Variance-in-TypeScript.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E0D3BE -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Variance-in-TypeScript" ---- - -# [[Variance-in-TypeScript]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Variance-in-TypeScript.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Web3 Infrastructure.md b/10_Wiki/Topics/Programming & Language/Web3 Infrastructure.md deleted file mode 100644 index 80a99d1c..00000000 --- a/10_Wiki/Topics/Programming & Language/Web3 Infrastructure.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7551CC -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Web3 Infrastructure" ---- - -# [[Web3 Infrastructure]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Web3 Infrastructure.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/Zod를 활용한 런타임 데이터 파싱.md b/10_Wiki/Topics/Programming & Language/Zod를 활용한 런타임 데이터 파싱.md deleted file mode 100644 index bae479da..00000000 --- a/10_Wiki/Topics/Programming & Language/Zod를 활용한 런타임 데이터 파싱.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4215D8 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Zod를 활용한 런타임 데이터 파싱" ---- - -# [[Zod를 활용한 런타임 데이터 파싱]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **"Parse, Don't Validate" 철학의 실현** - Zod는 시스템 경계(진입점 및 반환점)에서 타입이 없거나 느슨한 데이터를 정형화된 타입으로 변환하는 파싱 역할을 수행합니다 [1, 4]. 파서를 통해 미지의 데이터(unknown data)를 알려진 데이터(known data)로 변환하면, 애플리케이션의 나머지 코드는 TypeScript의 정적 타입 체커에 온전히 의존할 수 있어 코드의 신뢰성이 크게 향상됩니다 [4, 7]. - -- **외부 데이터의 런타임 검증** - 컴파일 시점의 TypeScript는 외부 API 응답이나 설정 파일에서 유입되는 데이터의 형태를 강제할 수 없습니다 [3]. 이러한 상황에서 Zod를 활용하여 런타임 검증을 추가하면 예기치 않은 데이터 구조로 인한 런타임 에러를 방지할 수 있습니다 [3]. 특히 식별 가능한 유니온(Discriminated Unions)과 결합하면 런타임 비동기 UI 상태 등을 더욱 안전하게 검증할 수 있습니다 [3]. - -- **안전한 에러 처리 (Safe Parsing)** - Zod는 파싱 중 에러가 발생할 때 예외를 직접 던지지(throwing) 않고 결과 객체(result object)를 반환하는 `.safeParse()` 메서드를 제공합니다 [6]. 이를 통해 개발자는 예상치 못한 런타임 예외로 인한 프로그램 종료를 막고, 에러 상태를 안전하고 예측 가능하게 제어할 수 있습니다 [6]. - -- **브랜디드 타입(Branded Types)과의 완벽한 통합** - Zod는 `.brand()` 메서드를 통해 브랜디드 타입과 자연스럽게 통합됩니다 [6]. 단순한 구조적 타입 검사를 넘어, 데이터가 구체적인 비즈니스 규칙까지 충족하도록 보장하는 검증된 브랜디드 타입을 런타임에 생성할 수 있습니다 [5, 6]. 이 과정은 검증되지 않은 데이터의 시스템 내부 진입을 철저히 차단하는 수비적 프로그래밍의 구체적인 방법론으로 작용합니다 [7]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Parse, don't validate]], [[브랜디드 타입(Branded Types)]], [[식별 가능한 유니온(Discriminated Unions)]] -- **Projects/Contexts:** [[외부 API 데이터 및 설정 파일 처리]], [[런타임 상태 검증(Runtime Validation)]] -- **Contradictions/Notes:** 소스에 관련 정보가 부족합니다. (제공된 소스 내에서 Zod 활용에 대한 상충되는 의견이나 모순점은 발견되지 않았습니다.) - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/Zod를 활용한 런타임 데이터 파싱.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/readonly 수식어.md b/10_Wiki/Topics/Programming & Language/readonly 수식어.md deleted file mode 100644 index 8f0c010f..00000000 --- a/10_Wiki/Topics/Programming & Language/readonly 수식어.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E98170 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - readonly 수식어" ---- - -# [[readonly 수식어]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **컴파일 타임의 불변성 강제** - `readonly` 수식어는 속성이 초기화된 후 재할당되거나 수정되는 것을 방지한다 [3]. 구조적 타입 검사 시 해당 속성의 변이(Mutation) 연산을 시그니처에서 배제함으로써, 컴파일러가 값의 수정을 미리 포착해 에러를 발생시킨다 [8]. - -* **`const` 및 `Object.freeze()`와의 차별점** - * **대상과 범위:** `const`는 변수 자체의 재할당을 막을 뿐 객체 내부 속성의 변이는 막지 못하지만, `readonly`는 변수가 아닌 객체의 속성(Property)에 직접 적용되어 내용물의 할당을 막는다 [9-11]. - * **동작 시점과 성능:** `Object.freeze()`는 런타임에 작동하며 성능 비용을 수반하는 반면, `readonly`는 컴파일 타임에만 작동하여 런타임 성능 오버헤드가 전혀 발생하지 않는다 [5, 11, 12]. - -* **배열과 튜플의 보호** - 배열이나 튜플의 경우 `readonly T[]` 또는 `ReadonlyArray` 구문을 사용하여 불변으로 만들 수 있다 [13-15]. 이렇게 선언된 배열은 `push()`, `pop()` 등 배열의 내용을 변이시키는 메서드들이 타입 정의에서 완전히 제거되어 안전한 데이터 전달을 보장한다 [15, 16]. - -* **얕은 불변성과 깊은 불변성(Deep Readonly)** - `readonly` 키워드나 내장된 `Readonly` 유틸리티 타입은 객체의 최상위 속성만 보호하는 얕은(Shallow) 불변성만 제공하며 중첩된 객체의 변경은 막지 못한다 [17-19]. 완전히 중첩된 구조까지 불변하게 만들려면, 매핑된 타입과 조건부 타입을 결합한 재귀적 유틸리티 타입인 `DeepReadonly`를 별도로 정의하여 사용해야 한다 [18-20]. - -* **별칭(Aliasing)으로 인한 한계 및 주의점** - `readonly` 데이터는 자신을 가리키는 직접적인 참조에 대해서만 불변을 보장한다. 만약 `readonly`가 적용된 데이터를 가변 파라미터를 받는 함수에 전달할 경우 타입 호환성 규칙에 의해 허용될 수 있으며, 이로 인해 별칭(Alias)을 통한 우회적인 객체 변이가 발생할 수 있다 [21, 22]. 이러한 문제를 방지하려면 함수 시그니처 설계 시 파라미터에도 `readonly`를 일관되게 명시해야 한다 [23]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** `[[불변성(Immutability)]]`, `[[ReadonlyArray]]`, `[[Utility Types]]`, `[[구조적 타이핑(Structural Typing)]]` -- **Projects/Contexts:** `[[상태 관리(State Management) 및 리듀서(Reducers)]]`, `[[API 응답 및 환경 설정 모델링]]` -- **Contradictions/Notes:** `readonly`는 타입 레벨에서 완벽한 불변성을 보장하는 것처럼 보이지만, TypeScript의 타입 호환성(별칭 문제)으로 인해 파라미터로 넘겨진 곳에서 의도치 않게 값이 변경되는 구멍이 발생할 수 있다 [21]. 또한 중첩된 객체를 기본적으로 보호하지 않으므로 구조가 복잡할 때는 사용자 정의 `DeepReadonly`가 필수적으로 요구된다 [18]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/readonly 수식어.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/ts-pattern.md b/10_Wiki/Topics/Programming & Language/ts-pattern.md deleted file mode 100644 index acedd5a1..00000000 --- a/10_Wiki/Topics/Programming & Language/ts-pattern.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -id: P-REINFORCE-AUTO-ED6DC8 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - ts-pattern" ---- - -# [[ts-pattern]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **도입 배경 및 주요 이점:** TypeScript 환경에서 조건이 겹치거나 새로운 타입이 추가될 때, 기존 분기문에서 이를 고려하지 않으면 버그가 발생하기 쉽습니다 [1]. `ts-pattern`은 이를 해결하기 위해 하나의 간결한 표현식으로 복잡한 분기를 처리하게 해줍니다 [1]. 특히 `.exhaustive()`와 같은 메서드를 사용하면 조건에서 처리되지 않은 예외 케이스를 컴파일러가 사전에 감지하고 타입 에러를 띄워주기 때문에, 코드를 매우 안전하게 유지할 수 있습니다 [3]. -- **성능적 한계와 원인:** 벤치마크 지표에 따르면 `ts-pattern`의 주요 메서드들(`.exhaustive()`, `.otherwise()`, `.run()`)은 자바스크립트의 기본 `if/else`, `switch`, 삼항 연산자에 비해 초당 연산 속도가 약 99% 더 느리다는 결과가 있습니다 [2]. 이는 입력 타입의 가능한 모든 경우를 사전에 계산하고, 내부적으로 클래스 기반의 패턴 매칭과 `this`를 활용한 함수 체이닝으로 상태를 공유하기 때문에, 자바스크립트 엔진에 최적화된 기본 분기문보다 성능이 떨어지게 됩니다 [3]. -- **대안 및 적용 전략:** 성능 문제와 오버엔지니어링을 피하기 위해서는 `ts-pattern`을 무조건적으로 사용하기보다는 상황에 맞게 적용해야 합니다 [3]. 단순한 분기 로직에서는 `early return` 패턴을 쓰거나, `switch` 문에 `satisfies` 키워드를 결합하여 처리되지 않은 케이스를 타입 시스템으로 방어하는 것이 더 효율적입니다 [4]. JSX 영역 내에서도 라이브러리 의존 없이 즉시 실행 함수 표현(IIFE)이나 `SwitchCase` 같은 추상화 컴포넌트를 활용해 선언적이고 안전한 분기 처리를 구현할 수 있습니다 [5]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Pattern Matching]], [[Type Inference]], [[TC39]], [[Discriminated Unions]] -- **Projects/Contexts:** [[TypeScript 조건부 분기 처리 및 상태 관리]] -- **Contradictions/Notes:** 일부 벤치마크는 `ts-pattern`이 `if/else`보다 약 99% 느리다고 주장하지만 [2], 개발자 커뮤니티(댓글)에서는 이 벤치마크가 순수한 `ts-pattern` 성능이 아닌 외부의 객체 생성 시간(Object Creation Time)을 포함했거나, 벤치마크 툴 자체의 메모리 간섭 문제로 인해 차이가 크게 과장되었다는 반론을 제기합니다. 실제로는 1~2배 수준의 차이에 불과하여, 납득할 수 있는 성능 차이이므로 가독성과 타입 안정성을 위해 충분히 사용할 만하다는 상반된 의견이 존재합니다 [6, 7]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/ts-pattern.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/가비지 컬렉션(Garbage Collection).md b/10_Wiki/Topics/Programming & Language/가비지 컬렉션(Garbage Collection).md deleted file mode 100644 index dcbf7b56..00000000 --- a/10_Wiki/Topics/Programming & Language/가비지 컬렉션(Garbage Collection).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F0509C -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 가비지 컬렉션(Garbage Collection)" ---- - -# [[가비지 컬렉션(Garbage Collection)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 가비지 컬렉션(GC)은 프로그램에서 더 이상 참조되거나 도달할 수 없는 객체가 차지하는 메모리 영역을 식별하고 이를 자동으로 회수하는 메모리 관리 프로세스입니다 [1-3]. V8과 같은 모던 자바스크립트 엔진에서 GC는 스택 변수나 글로벌 객체와 같은 루트 노드로부터 도달 가능성(reachability)을 기준으로 살아있는 객체를 판별합니다 [1, 4]. 프로그래머의 명시적인 메모리 관리 부담을 덜어주지만, 메모리 할당 실패 시점과 힙의 상태 변화가 GC 로그를 통해 기록되므로 이를 분석하는 것은 애플리케이션의 메모리 누수 방지 및 성능 최적화에 필수적입니다 [5-7]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[새로운 공간(New Space)]], [[오래된 공간(Old Space)]], [[스캐빈저(Scavenger)]], [[마크-스위프(Mark-Sweep)]], [[메모리 누수(Memory Leak)]], [[할당 타임라인(Allocation Timeline)]], [[오리노코(Orinoco GC)]] -- **Projects/Contexts:** [[V8 엔진의 메모리 관리 아키텍처 및 Orinoco 프로젝트]], [[Chrome DevTools 메모리 프로파일링 및 힙 스냅샷 분석]] -- **Contradictions/Notes:** 과거 전통적인 가비지 컬렉터는 'Stop-the-world' 방식의 순차적 처리를 사용하여 메인 스레드를 멈추고 지연을 발생시켰으나, 최신 V8의 Orinoco 가비지 컬렉터는 동시적(Concurrent), 병렬적(Parallel) 작업을 도입하여 애플리케이션(자바스크립트) 실행을 차단하지 않고 백그라운드에서 마킹과 스위핑을 수행하도록 개선되었습니다 [18, 33-35]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/가비지 컬렉션(Garbage Collection).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/가상현실 멀미(VR Sickness).md b/10_Wiki/Topics/Programming & Language/가상현실 멀미(VR Sickness).md deleted file mode 100644 index 7f60062f..00000000 --- a/10_Wiki/Topics/Programming & Language/가상현실 멀미(VR Sickness).md +++ /dev/null @@ -1,40 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DE69FA -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 가상현실 멀미(VR Sickness)" ---- - -# [[가상현실 멀미(VR Sickness)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -**원인 및 증상의 발현** -가상현실 멀미는 기본적으로 현실 세계와 가상 세계의 불일치로 인한 시각 및 전정 기관의 통합 장애 현상으로 인해 발생합니다 [3]. 주요 증상인 메스꺼움이나 방향 감각 상실은 사용자의 몰입도와 즐거움을 떨어뜨리고, 가상현실 내에서의 작업 수행 능력(task performance)을 저하시키는 핵심적인 원인으로 작용합니다 [2]. 또한, 노출 시간이 길어질수록, 특히 단시간 노출 후 심한 증상을 경험했던 사용자의 경우 장시간 노출 시 더 높거나 심각한 수준의 멀미 증상을 겪을 가능성이 큽니다 [4, 5]. - -**시각적 후유증 (Visual Aftereffects)** -HMD 기기의 특성상 발생하는 폭주-조절 불일치(vergence-accommodation conflict)는 안구 운동(oculomotor) 증상 및 시각적 피로의 주된 원인이 됩니다 [3]. VR 사용 직후 사용자의 시야 조절(accommodation)과 폭주(convergence) 기능에 상당한 변화가 발생하며, 이로 인해 두통, 눈의 뻐근함, 복시(double vision)와 같은 시각적 불확실성이 유발될 수 있습니다 [6]. 이러한 시각적, 안구운동 변화의 대부분은 VR 환경에서 빠져나온 후 40분이 지나면 기준치 수준으로 회복되는 단기적 성향을 보이지만, 일부 사용자에게 나타나는 큰 폭의 변화는 현실 세계에서의 깊이 지각에 일시적인 지장을 초래할 위험이 있습니다 [4, 6]. - -**인지적 후유증 (Cognitive Aftereffects)** -가상현실 멀미를 경험한 사용자는 상황 자극에 대처하는 의사결정 속도(decision speed)와 운동 이동 속도(movement speed) 등 반응 시간(reaction time)에 영향을 받을 수 있습니다 [7]. 실험 관찰 결과, VR 노출 직후 의사결정 시간이나 움직임 개시 소요 시간에 미세한 변동이 확인되기도 하지만, 이는 일시적이며 40분 이내에 본래의 상태로 회복됩니다 [8, 9]. - -**지속 시간 및 사용자 안전 고려사항** -일반적인 그룹 통계상으로는 10분 또는 50분 등 VR 노출 시간과 관계없이 가상현실 종료 후 40분(Late test period)이 경과하면 시각적, 인지적, 주관적 멀미 증상이 대부분 기준치로 돌아옵니다 [4, 10]. 그러나 약 14%의 사용자는 50분간의 VR 사용 후 40분이 지난 시점에서도 여전히 높은 수준의 멀미를 보고하였으며, 사람에 따라 최대 24시간 이후에 나타나는 지연성 증상(latent symptoms)을 경험하기도 합니다 [4, 10, 11]. 따라서 가상현실 사용자는 안전을 위해 VR 기기 사용을 종료한 후 즉시 운전과 같이 부상 위험이 수반되는 활동을 피하고, 후유증이 완전히 사라질 때까지 대기 시간을 가져야 합니다 [12]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[시각-전정 충돌(Visual-vestibular conflict)]], [[폭주-조절 불일치(Vergence-accommodation conflict)]], [[깊이 지각(Depth perception)]], [[반응 시간(Reaction time)]] -- **Projects/Contexts:** [[Beat Saber를 활용한 VR 엑서게임 후유증 연구(VR Exergaming Aftereffects)]] -- **Contradictions/Notes:** VR 노출이 사용자의 '반응 시간(Reaction time)'에 미치는 직접적인 영향에 대해 기존 문헌들은 매우 일관되지 않은(highly inconsistent) 결과를 보이고 있습니다. 일부 연구에서는 가상현실 멀미로 인해 반응 시간이 부정적으로 지연된다고 보고하는 반면, 다른 연구에서는 긍정적으로 반응 속도가 빨라진다고 주장합니다 [13]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/가상현실 멀미(VR Sickness).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/가상현실 엑서게임(Exergaming) 후유증 연구.md b/10_Wiki/Topics/Programming & Language/가상현실 엑서게임(Exergaming) 후유증 연구.md deleted file mode 100644 index b95371ba..00000000 --- a/10_Wiki/Topics/Programming & Language/가상현실 엑서게임(Exergaming) 후유증 연구.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-9CAC35 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 가상현실 엑서게임(Exergaming) 후유증 연구" ---- - -# [[가상현실 엑서게임(Exergaming) 후유증 연구]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 가상현실(VR) 엑서게임은 몰입감을 통해 신체적 노력에 대한 부담을 잊게 하고 좌식 행동을 개선할 수 있는 유망한 도구이지만, 헤드 마운트 디스플레이(HMD) 사용은 시각적 불일치나 VR 멀미(VR Sickness) 등의 후유증을 유발할 수 있습니다 [1]. 인기 VR 엑서게임인 '비트 세이버(Beat Saber)'를 활용한 실험 결과에 따르면, 노출 직후 사용자의 안구 조절 및 폭주 기능의 변화와 주관적인 멀미 증상이 나타나며, 특히 긴 시간(50분) 노출 시 그 증상이 더욱 심해지는 것으로 나타났습니다 [2, 3]. 대다수의 사용자는 VR 종료 40분 후 기저 수준으로 회복되지만 일부는 장기적인 멀미를 겪을 수 있어, VR 엑서게임 후에는 운전 등의 위험한 활동을 피하고 충분한 휴식 시간을 갖는 것이 필수적입니다 [4, 5]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[가상현실 멀미(VR Sickness)]], [[폭주-조절 불일치(Vergence-Accommodation Conflicts)]], [[시뮬레이터 멀미 설문지(SSQ)]] -- **Projects/Contexts:** [[비트 세이버(Beat Saber) 실험]] -- **Contradictions/Notes:** 연구 결과에서 그룹 전체 평균으로는 VR 엑서게임 종료 40분 후 모든 시각적 변화와 멀미가 기저 수준으로 회복된다고 나타났지만, 개별 데이터 확인 시 50분 플레이어의 약 14%는 회복되지 않고 여전히 심각한 멀미를 앓고 있어 평균이 개인의 완전한 회복을 담보하지 않는다는 점에 주의해야 합니다 [4]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/가상현실 엑서게임(Exergaming) 후유증 연구.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/강화 계획.md b/10_Wiki/Topics/Programming & Language/강화 계획.md deleted file mode 100644 index 6840d2cf..00000000 --- a/10_Wiki/Topics/Programming & Language/강화 계획.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6EDEB4 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 강화 계획" ---- - -# [[강화 계획]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/강화 계획.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/강화 학습(Reinforcement Learning) 알고리즘.md b/10_Wiki/Topics/Programming & Language/강화 학습(Reinforcement Learning) 알고리즘.md deleted file mode 100644 index 2c4c29ba..00000000 --- a/10_Wiki/Topics/Programming & Language/강화 학습(Reinforcement Learning) 알고리즘.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B4CA68 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 강화 학습(Reinforcement Learning) 알고리즘" ---- - -# [[강화 학습(Reinforcement Learning) 알고리즘]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/강화 학습(Reinforcement Learning) 알고리즘.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/건강 심리학.md b/10_Wiki/Topics/Programming & Language/건강 심리학.md deleted file mode 100644 index 1e85917e..00000000 --- a/10_Wiki/Topics/Programming & Language/건강 심리학.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-801A0D -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 건강 심리학" ---- - -# [[건강 심리학]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/건강 심리학.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/건강 행동 변화 모델.md b/10_Wiki/Topics/Programming & Language/건강 행동 변화 모델.md deleted file mode 100644 index b97b4ac0..00000000 --- a/10_Wiki/Topics/Programming & Language/건강 행동 변화 모델.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-77EB30 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 건강 행동 변화 모델" ---- - -# [[건강 행동 변화 모델]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/건강 행동 변화 모델.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/게임 디자인 이론 및 구조론.md b/10_Wiki/Topics/Programming & Language/게임 디자인 이론 및 구조론.md deleted file mode 100644 index a6d7f0f0..00000000 --- a/10_Wiki/Topics/Programming & Language/게임 디자인 이론 및 구조론.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D69C13 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 게임 디자인 이론 및 구조론" ---- - -# [[게임 디자인 이론 및 구조론]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/게임 디자인 이론 및 구조론.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/게임 디자인의 보상 루프(Reward Loop) 설계.md b/10_Wiki/Topics/Programming & Language/게임 디자인의 보상 루프(Reward Loop) 설계.md deleted file mode 100644 index 54c178aa..00000000 --- a/10_Wiki/Topics/Programming & Language/게임 디자인의 보상 루프(Reward Loop) 설계.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A6178D -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 게임 디자인의 보상 루프(Reward Loop) 설계" ---- - -# [[게임 디자인의 보상 루프(Reward Loop) 설계]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/게임 디자인의 보상 루프(Reward Loop) 설계.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/게임 루프 설계.md b/10_Wiki/Topics/Programming & Language/게임 루프 설계.md deleted file mode 100644 index ba4b8096..00000000 --- a/10_Wiki/Topics/Programming & Language/게임 루프 설계.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-59E3A9 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 게임 루프 설계" ---- - -# [[게임 루프 설계]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/게임 루프 설계.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/게임 행동 심리학.md b/10_Wiki/Topics/Programming & Language/게임 행동 심리학.md deleted file mode 100644 index 43257746..00000000 --- a/10_Wiki/Topics/Programming & Language/게임 행동 심리학.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BB80E3 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 게임 행동 심리학" ---- - -# [[게임 행동 심리학]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/게임 행동 심리학.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/게임학(Ludology) vs 서사학(Narratology) 논쟁.md b/10_Wiki/Topics/Programming & Language/게임학(Ludology) vs 서사학(Narratology) 논쟁.md deleted file mode 100644 index 04de56e4..00000000 --- a/10_Wiki/Topics/Programming & Language/게임학(Ludology) vs 서사학(Narratology) 논쟁.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1A5F45 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 게임학(Ludology) vs 서사학(Narratology) 논쟁" ---- - -# [[게임학(Ludology) vs 서사학(Narratology) 논쟁]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/게임학(Ludology) vs 서사학(Narratology) 논쟁.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/결정 속도(Decision Speed).md b/10_Wiki/Topics/Programming & Language/결정 속도(Decision Speed).md deleted file mode 100644 index c1bdda45..00000000 --- a/10_Wiki/Topics/Programming & Language/결정 속도(Decision Speed).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-527675 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 결정 속도(Decision Speed)" ---- - -# [[결정 속도(Decision Speed)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 결정 속도(Decision Speed)는 목표 자극이 나타난 순간부터 사용자가 판단을 내리고 행동을 개시하기까지 걸린 시간을 나타내는 인지적 측정 지표입니다 [1]. 이는 주로 전체 반응 시간(Reaction Time)을 구성하는 핵심 요소 중 하나로, 물리적인 동작 속도(Movement Speed)와는 구별되는 개념입니다 [1]. 가상현실(VR) 엑서게임(Exergaming)의 인지적 사후 효과를 측정하거나, 고도의 인지적 통제력과 빠른 판단력이 요구되는 e스포츠에서 선수의 수행 능력을 평가하는 맥락에서 중요한 변수로 다뤄집니다 [1, 2]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[반응 시간(Reaction Time)]], [[동작 속도(Movement Speed)]] -- **Projects/Contexts:** [[가상현실(VR) 엑서게임 인지 사후 효과 분석(CANTAB 5-choice RTI)]], [[e스포츠 인지 상태 및 성과 위험 평가]] -- **Contradictions/Notes:** 소스 내에서 직접적인 모순은 없으나, VR 노출이 반응 및 결정 속도에 미치는 영향에 대한 기존 학계 문헌들은 긍정적 효과(반응 속도 증가)와 부정적 효과(반응 속도 감소)가 혼재되어 있어 매우 일관되지 않은(highly inconsistent) 결과를 보인다는 점이 언급되어 있습니다 [6]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/결정 속도(Decision Speed).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/고전적 조건 형성.md b/10_Wiki/Topics/Programming & Language/고전적 조건 형성.md deleted file mode 100644 index d69b1d71..00000000 --- a/10_Wiki/Topics/Programming & Language/고전적 조건 형성.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-46AEE6 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 고전적 조건 형성" ---- - -# [[고전적 조건 형성]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/고전적 조건 형성.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/공존 질환 (Comorbidity).md b/10_Wiki/Topics/Programming & Language/공존 질환 (Comorbidity).md deleted file mode 100644 index 93006dfa..00000000 --- a/10_Wiki/Topics/Programming & Language/공존 질환 (Comorbidity).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-ACDF2F -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 공존 질환 (Comorbidity)" ---- - -# [[공존 질환 (Comorbidity)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/공존 질환 (Comorbidity).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/과잉 정당화 효과 (Overjustification Effect).md b/10_Wiki/Topics/Programming & Language/과잉 정당화 효과 (Overjustification Effect).md deleted file mode 100644 index 49934c37..00000000 --- a/10_Wiki/Topics/Programming & Language/과잉 정당화 효과 (Overjustification Effect).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CB8555 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 과잉 정당화 효과 (Overjustification Effect)" ---- - -# [[과잉 정당화 효과 (Overjustification Effect)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/과잉 정당화 효과 (Overjustification Effect).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/광범위한 신경과학적 연합 기제.md b/10_Wiki/Topics/Programming & Language/광범위한 신경과학적 연합 기제.md deleted file mode 100644 index 981b894e..00000000 --- a/10_Wiki/Topics/Programming & Language/광범위한 신경과학적 연합 기제.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2AE4FF -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 광범위한 신경과학적 연합 기제" ---- - -# [[광범위한 신경과학적 연합 기제]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/광범위한 신경과학적 연합 기제.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/교육 심리학에서의 학습 동기 유도.md b/10_Wiki/Topics/Programming & Language/교육 심리학에서의 학습 동기 유도.md deleted file mode 100644 index 1baebe32..00000000 --- a/10_Wiki/Topics/Programming & Language/교육 심리학에서의 학습 동기 유도.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C63490 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 교육 심리학에서의 학습 동기 유도" ---- - -# [[교육 심리학에서의 학습 동기 유도]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/교육 심리학에서의 학습 동기 유도.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/교육 심리학에서의 학습 동기 유발.md b/10_Wiki/Topics/Programming & Language/교육 심리학에서의 학습 동기 유발.md deleted file mode 100644 index 1475fcdb..00000000 --- a/10_Wiki/Topics/Programming & Language/교육 심리학에서의 학습 동기 유발.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A6A206 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 교육 심리학에서의 학습 동기 유발" ---- - -# [[교육 심리학에서의 학습 동기 유발]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/교육 심리학에서의 학습 동기 유발.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/교집합 타입 (Intersection Types).md b/10_Wiki/Topics/Programming & Language/교집합 타입 (Intersection Types).md deleted file mode 100644 index 76041f1e..00000000 --- a/10_Wiki/Topics/Programming & Language/교집합 타입 (Intersection Types).md +++ /dev/null @@ -1,33 +0,0 @@ ---- -id: P-REINFORCE-AUTO-795BA0 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 교집합 타입 (Intersection Types)" ---- - -# [[교집합 타입 (Intersection Types)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **기본 개념 및 동작 원리:** 교집합 타입은 다수의 타입을 결합하여 하나의 타입으로 만듭니다. 예를 들어, `Person & Serializable & Loggable` 타입의 객체는 이 세 가지 타입이 가진 모든 멤버를 포함하게 됩니다 [1]. 집합론적 관점에서 `&` 연산자는 단순한 객체 형태의 결합이 아니라 '값 집합(value sets)'의 교집합을 의미하며, 결합된 모든 제약 조건을 동시에 만족하는 대상들의 집합을 나타냅니다 [4]. -- **인터페이스 확장(Interface Extends)과의 비교 및 성능:** TypeScript는 객체 타입을 결합하거나 확장할 때 교집합 타입보다 인터페이스의 `extends` 기능을 사용하는 것을 권장합니다 [6, 7]. 인터페이스는 단일한 평면 객체 타입을 생성하고 그 이름을 기반으로 관계를 캐싱하여 컴파일 성능을 최적화합니다 [6, 8-10]. 반면, 교집합 타입은 사용될 때마다 매번 구조를 재귀적으로 병합하고 평가해야 하므로 대규모 프로젝트에서는 컴파일 속도 저하의 원인이 될 수 있습니다 [6, 10]. -- **타입 충돌 처리의 차이점:** 두 타입을 결합할 때 호환되지 않는 속성이 존재하는 경우, 인터페이스 상속은 개발자에게 명시적인 에러를 발생시켜 실수를 방지합니다 [9, 11]. 반면 교집합 타입은 충돌하는 속성을 조용히 처리하여, 그 결과로 절대 존재할 수 없는 `never` 타입을 생성해버리는 특징이 있습니다 [9, 11]. -- **실용적 활용:** 교집합 타입은 여러 출처에서 기능을 모아와야 할 때 유용합니다. 예를 들어 일관된 에러 처리 타입을 기존의 특정 네트워크 응답 타입에 결합하거나, `User` 타입에 `AdminPermissions` 속성을 더해 `AdminUser`를 생성하는 식의 모델링에 사용됩니다 [3, 12]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[유니언 타입 (Union Types)]], [[인터페이스 (Interfaces)]], [[구조적 타이핑 (Structural Typing)]] -- **Projects/Contexts:** [[TypeScript 컴파일러 성능 최적화]], [[객체 타입 조합 및 확장]] -- **Contradictions/Notes:** 교집합 타입(`&`)은 유연하게 여러 객체를 결합할 수 있는 수단이지만, 성능 최적화와 명시적 충돌 에러 감지의 이점 때문에 TypeScript 공식 가이드나 성능 가이드라인에서는 가능한 경우 인터페이스 확장(`extends`)을 더 우선적으로 사용할 것을 권장합니다 [6, 7, 9]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/교집합 타입 (Intersection Types).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/구조적 타이핑 (Structural Typing).md b/10_Wiki/Topics/Programming & Language/구조적 타이핑 (Structural Typing).md deleted file mode 100644 index 73673ee0..00000000 --- a/10_Wiki/Topics/Programming & Language/구조적 타이핑 (Structural Typing).md +++ /dev/null @@ -1,41 +0,0 @@ ---- -id: P-REINFORCE-AUTO-66BE32 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 구조적 타이핑 (Structural Typing)" ---- - -# [[구조적 타이핑 (Structural Typing)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **구조적 타이핑의 작동 원리와 집합론적 접근** - TypeScript의 구조적 타이핑은 자바(Java)나 C#과 같은 언어에서 사용하는 명목적 타이핑(Nominal Typing)과 궤를 달리한다 [2]. 명목적 타이핑이 특정한 신분증(타입 이름)을 요구한다면, 구조적 타이핑은 열쇠의 모양(객체의 구조)만 맞으면 자물쇠를 열 수 있게 해준다 [5]. 할당하고자 하는 값이 타겟 타입이 가진 프로퍼티를 최소한으로 모두 포함하고 있다면, 구조적으로 호환되는 것으로 판단하여 할당을 허용한다 [3]. 이는 집합론의 관점에서, 더 구체적인 구조를 가진 타입이 더 일반적인 타입의 부분집합으로 취급되어 할당 가능한 관계로 평가되는 것과 같다 [5]. - -* **클래스와의 호환성 규칙** - 이러한 구조적 특성은 클래스에도 동일하게 적용된다. 두 개의 다른 타입이 어디서 유래했든 상관없이 모든 멤버의 타입이 호환된다면, 해당 타입들은 호환되는 것으로 취급된다 [7]. 다만 예외적으로 `private`이나 `protected` 멤버가 포함된 경우, 두 타입이 호환되려면 해당 접근 제어자 멤버들이 반드시 동일한 선언에서 기원한 것이어야 한다 [7]. - -* **구조적 타이핑의 취약점과 한계** - 1. **의도하지 않은 데이터 유입:** 구조적 타이핑은 요구되는 속성만 있으면 그 외의 초과 속성(Excess Properties)이 존재하더라도 이를 구조적으로 호환된다고 판단한다 [4, 5]. 이로 인해 개발자가 오타를 내거나 잘못된 속성 이름을 전달했을 때 런타임의 예기치 않은 동작이나 버그가 발생할 수 있다 [4]. - 2. **기본 타입에의 집착(Primitive Obsession):** 이메일 주소와 사용자의 이름은 의미론적으로 완전히 다르지만, TypeScript의 구조적 타이핑 하에서는 둘 다 동일한 `string` 구조를 가지므로 이를 구분해 내지 못한다 [6, 8]. - -* **취약점을 극복하기 위한 수비적 장치** - 구조적 타이핑이 야기할 수 있는 보안적 허점을 방어하기 위해 TypeScript는 추가적인 메커니즘을 제공한다. 객체 리터럴이 직접 할당되거나 인수로 전달될 때는 구조적 호환성을 넘어 '과잉 속성 체크(Excess Property Checking)'를 수행하여 정의되지 않은 속성을 엄격하게 차단한다 [1, 5]. 또한, 의미론적으로 다른 동일 구조의 데이터를 구별하기 위해 고유한 표식을 부여하는 '브랜디드 타입(Branded Types)' 패턴을 도입하여 데이터 오염을 원천적으로 막을 수 있다 [6, 9]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[명목적 타이핑 (Nominal Typing)]], [[덕 타이핑 (Duck Typing)]], [[과잉 속성 체크 (Excess Property Checking)]], [[브랜디드 타입 (Branded Types)]] -- **Projects/Contexts:** [[TypeScript 인터페이스 및 시스템 보호 아키텍처 설계]] -- **Contradictions/Notes:** TypeScript는 기본적으로 구조적 타이핑을 따르지만, 객체 리터럴을 직접 할당할 때에 한해서는 잉여 속성을 허용하지 않는 엄격한 "과잉 속성 체크(Excess Property Checking)"를 수행하여 유연성과 안전성의 균형을 맞춘다 [1, 5, 10]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/구조적 타이핑 (Structural Typing).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/내재적 동기 (Intrinsic Motivation).md b/10_Wiki/Topics/Programming & Language/내재적 동기 (Intrinsic Motivation).md deleted file mode 100644 index 6c1f45c6..00000000 --- a/10_Wiki/Topics/Programming & Language/내재적 동기 (Intrinsic Motivation).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-88E0B9 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 내재적 동기 (Intrinsic Motivation)" ---- - -# [[내재적 동기 (Intrinsic Motivation)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/내재적 동기 (Intrinsic Motivation).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/내재적 동기 vs 외재적 동기.md b/10_Wiki/Topics/Programming & Language/내재적 동기 vs 외재적 동기.md deleted file mode 100644 index 2923fb9a..00000000 --- a/10_Wiki/Topics/Programming & Language/내재적 동기 vs 외재적 동기.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AA8345 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 내재적 동기 vs 외재적 동기" ---- - -# [[내재적 동기 vs 외재적 동기]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/내재적 동기 vs 외재적 동기.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/네버 타입 (never type).md b/10_Wiki/Topics/Programming & Language/네버 타입 (never type).md deleted file mode 100644 index 9868f029..00000000 --- a/10_Wiki/Topics/Programming & Language/네버 타입 (never type).md +++ /dev/null @@ -1,43 +0,0 @@ ---- -id: P-REINFORCE-AUTO-90D699 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 네버 타입 (never type)" ---- - -# [[네버 타입 (never type)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **집합론적 특성 (Set Theory Perspective):** - `never`는 집합론의 관점에서 '빈 집합(empty set, ∅)'으로 정의됩니다 [2]. 어떤 타입 `A`와 유니온(`|`) 연산을 해도 `never`는 영향을 주지 않으며(`A | never = A`), 교집합(`&`) 연산을 하면 항상 `never`가 됩니다(`A & never = never`) [2, 6]. 빈 집합은 모든 집합의 부분집합이므로 `never extends T`는 항상 참(true)이지만, `T extends never`는 `T`가 오직 `never` 타입일 때만 참이 됩니다 [3]. - -* **함수의 반환 타입 (Function Return Type):** - 무한 루프에 빠져 절대 완료되지 않거나, 항상 에러(Exception)를 던지기만 하는 함수의 반환 타입으로 사용해야 합니다 [1, 5]. 함수가 실행을 마치고 아무것도 반환하지 않는(실질적으로는 `undefined`를 반환하는) 경우에 쓰이는 `void` 타입과는 명확히 다릅니다 [5]. - -* **타입 좁히기와 완전성 검사 (Type Narrowing & Exhaustiveness Checking):** - 식별 가능한 유니온(Discriminated Unions)을 `switch` 문 등으로 분기 처리할 때 안전장치 역할을 합니다 [4, 7]. 개발자가 모든 가능한 케이스를 정상적으로 처리했다면, 분기문을 다 거치고 남은 변수의 타입은 `never`로 좁혀집니다(narrowed) [1, 7]. 만약 처리되지 않은 케이스가 하나라도 남아있다면 해당 변수는 실제 타입을 갖게 되며, 이를 `never` 타입으로 검사(예: `assertNever` 함수 사용)하려 할 때 타입 에러가 발생하여 런타임 버그를 사전에 방지할 수 있습니다 [7, 8]. - -* **타입 충돌 및 초과 속성 방어 (Type Conflicts & Excess Properties):** - 서로 호환되지 않는 속성을 가진 두 타입을 교집합(`&`)으로 묶을 때, TypeScript는 이를 계산하여 `never` 타입으로 만들 수 있습니다 [9]. 또한, 객체에서 예상치 못한 초과 속성을 감지하기 위한 고급 타입 기법에서도 활용됩니다. 입력된 객체에 허용되지 않은 초과 속성이 있을 경우 그 속성을 `never` 타입으로 매핑하면, (예를 들어 `string`은 `never`에 할당할 수 없으므로) 컴파일러가 강력한 할당 에러를 뱉게 하여 초과 속성 검사(Excess Property Checking)를 우회하는 것을 막을 수 있습니다 [10, 11]. - -* **상호 배타적 속성 구현 (Exclusive Props):** - 특정 조건이나 속성이 활성화되었을 때, 다른 속성들이 함께 사용되는 것을 막기 위해 상호 배타적인 속성들을 `never`로 처리하는 패턴에 사용됩니다. 이 방식을 통해 식별자(discriminant) 없이도 "이것 아니면 저것"의 구조를 안전하게 강제할 수 있습니다 [12]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[식별 가능한 유니온 (Discriminated Unions)]], [[집합론 (Set Theory)]], [[초과 속성 검사 (Excess Property Checking)]], [[구조적 타이핑 (Structural Typing)]] -- **Projects/Contexts:** [[Type-safe Error Handling & Exhaustiveness Checking]], [[TypeScript Advanced Type System]] -- **Contradictions/Notes:** 소스에서는 `never`와 `void`, `any`, `unknown`을 엄격하게 구분합니다. `void`는 정상적으로 완료되나 반환값이 없는 경우인 반면, `never`는 결코 도달할 수 없거나 완료되지 않는 값이라는 차이를 지적합니다 [5]. 또한 `any`는 타입 시스템을 우회하지만, `never`는 빈 집합으로서 타입 시스템 내에서 엄격한 논리적 제어를 돕는다는 상반된 특성을 지닙니다 [13, 14]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/네버 타입 (never type).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/넷플릭스 (Netflix) 마이크로서비스 도입 사례.md b/10_Wiki/Topics/Programming & Language/넷플릭스 (Netflix) 마이크로서비스 도입 사례.md deleted file mode 100644 index cc45d305..00000000 --- a/10_Wiki/Topics/Programming & Language/넷플릭스 (Netflix) 마이크로서비스 도입 사례.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E41C28 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 넷플릭스 (Netflix) 마이크로서비스 도입 사례" ---- - -# [[넷플릭스 (Netflix) 마이크로서비스 도입 사례]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 넷플릭스는 초기 데이터 센터의 모놀리식(Monolithic) 아키텍처가 가진 확장 및 혁신의 한계를 극복하기 위해 약 7년에 걸쳐 마이크로서비스 아키텍처로의 대대적인 전환을 단행했습니다. 느슨한 결합(Loose coupling)을 통해 각 개발 팀이 개발, 테스트, 배포에 대한 엔드투엔드(End-to-End) 소유권을 가지게 됨으로써 시스템 복원력과 배포 속도가 극대화되었습니다. 이후 미디어 처리 분야에서도 마이크로서비스에 비동기 워크플로와 서버리스 컴퓨팅을 결합한 'Cosmos' 플랫폼을 개발하는 등, 비즈니스 성장에 맞춰 아키텍처를 지속적으로 고도화하고 있습니다. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Microservices Architecture]], [[Separation of Concerns]], [[Serverless Computing]], [[Chaos Engineering]], [[Micro Frontends]] -- **Projects/Contexts:** [[Simian Army]], [[Apache Cassandra]], [[Cosmos Platform]], [[Reloaded]] -- **Contradictions/Notes:** 넷플릭스의 마이크로서비스 도입은 개발 속도, 혁신, 가용성 측면에서 엄청난 이점을 가져다주었지만, 소스에 따르면 분산 시스템 관리에 따른 운영의 복잡성 증가와 개별 VM/JVM 운영으로 인한 막대한 메모리 소모라는 명확한 기술적 트레이드오프(단점)도 수반했습니다. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/넷플릭스 (Netflix) 마이크로서비스 도입 사례.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/넷플릭스 코스모스 플랫폼 (Netflix Cosmos Platform).md b/10_Wiki/Topics/Programming & Language/넷플릭스 코스모스 플랫폼 (Netflix Cosmos Platform).md deleted file mode 100644 index 6a83a406..00000000 --- a/10_Wiki/Topics/Programming & Language/넷플릭스 코스모스 플랫폼 (Netflix Cosmos Platform).md +++ /dev/null @@ -1,40 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E3ABA1 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 넷플릭스 코스모스 플랫폼 (Netflix Cosmos Platform)" ---- - -# [[넷플릭스 코스모스 플랫폼 (Netflix Cosmos Platform)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -넷플릭스의 코스모스 플랫폼은 고도의 관심사 분리(SoC)를 통해 기존 모놀리식 아키텍처의 한계를 극복하고 시스템의 혁신과 신뢰성, 효율성을 달성했습니다 [6], [7]. 코스모스 플랫폼은 크게 두 가지 축을 기준으로 관심사를 분리합니다 [5], [6]. - -* **플랫폼과 애플리케이션의 분리 (뇌와 팔다리의 분리):** - 코스모스는 도메인 특화 로직(애플리케이션)과 분산 컴퓨팅의 복잡한 세부 사항(플랫폼)을 분리합니다 [5]. 플랫폼 계층은 데이터 배포나 큐 관리 같은 하위 수준의 기술적 구현(팔다리)을 추상화하여 숨깁니다 [6]. 이를 통해 개발자는 시스템 규모나 인프라 환경을 신경 쓰지 않고 오직 핵심 비즈니스 로직(뇌)의 구현에만 집중할 수 있습니다 [5], [6]. -* **논리적 계층의 분리 (3개의 하위 시스템):** - 코스모스 서비스는 확장성에 구애받지 않는 컴포넌트들을 다시 확장성을 인지하는 3개의 특화된 하위 시스템으로 분리하여 관리합니다 [5], [8], [6]. - * **옵티머스(Optimus):** 외부 요청을 내부 비즈니스 모델로 매핑하는 API 계층입니다 [8], [6]. - * **플라토(Plato):** 비즈니스 규칙을 모델링하고 다단계 워크플로우 오케스트레이션을 담당하는 규칙 엔진 계층입니다 [8], [9], [6]. - * **스트라툼(Stratum):** 상태가 없고(stateless) 계산 집약적인 알고리즘을 실행하는 서버리스 함수 계층입니다 [8], [6]. - -이러한 하위 시스템들은 **타임스톤(Timestone)**이라는 대규모, 저지연 우선순위 큐잉 시스템을 통해 비동기적으로 통신합니다 [8], [6]. 각 하위 시스템이 서로 다른 관심사를 다루고 느슨하게 결합되어 있기 때문에, 코스모스의 각 구성 요소는 독립적으로 개발, 테스트 및 배포가 가능해져 서비스 운영의 부담을 크게 덜어줍니다 [8], [6]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[관심사의 분리 (Separation of Concerns)]], [[마이크로서비스 아키텍처 (Microservices Architecture)]], [[응집도와 결합도 (Cohesion and Coupling)]] -- **Projects/Contexts:** [[넷플릭스 비디오 인코딩 파이프라인 (Netflix Video Encoding Pipeline)]] -- **Contradictions/Notes:** 넷플릭스는 코스모스 플랫폼 도입과 마이크로서비스로의 분리를 통해 혁신과 독립적 배포의 유연성을 얻었으나, 관심사를 고도로 분리하는 분산 시스템을 구축하는 과정에서 서비스 간 통신 메커니즘을 직접 구현해야 하고 독립적인 서버 공간 유지로 인해 관리 복잡성과 비용 상승이라는 대가가 뒤따랐음을 지적하고 있습니다 [10], [7]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/넷플릭스 코스모스 플랫폼 (Netflix Cosmos Platform).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/뇌 가소성 (Neuroplasticity).md b/10_Wiki/Topics/Programming & Language/뇌 가소성 (Neuroplasticity).md deleted file mode 100644 index 233a6ea2..00000000 --- a/10_Wiki/Topics/Programming & Language/뇌 가소성 (Neuroplasticity).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-63C048 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 뇌 가소성 (Neuroplasticity)" ---- - -# [[뇌 가소성 (Neuroplasticity)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/뇌 가소성 (Neuroplasticity).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/대규모 로그 뷰어 및 데이터 테이블 구현.md b/10_Wiki/Topics/Programming & Language/대규모 로그 뷰어 및 데이터 테이블 구현.md deleted file mode 100644 index 0a8b2dff..00000000 --- a/10_Wiki/Topics/Programming & Language/대규모 로그 뷰어 및 데이터 테이블 구현.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7D1621 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 대규모 로그 뷰어 및 데이터 테이블 구현" ---- - -# [[대규모 로그 뷰어 및 데이터 테이블 구현]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/대규모 로그 뷰어 및 데이터 테이블 구현.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/대규모 애플리케이션 개발.md b/10_Wiki/Topics/Programming & Language/대규모 애플리케이션 개발.md deleted file mode 100644 index 11cdd114..00000000 --- a/10_Wiki/Topics/Programming & Language/대규모 애플리케이션 개발.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0D36D4 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 대규모 애플리케이션 개발" ---- - -# [[대규모 애플리케이션 개발]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **구조적 타이핑(Structural Typing)과 방어 메커니즘** - TypeScript는 객체의 구조가 일치하면 호환성을 인정하는 '구조적 타이핑' 메커니즘을 근간으로 한다 [1, 3]. 이로 인해 발생할 수 있는 의도치 않은 데이터의 유입을 막기 위해 객체 리터럴 직접 할당 시 '과잉 속성 체크(Excess Property Checking)'가 작동한다 [3]. 할당 과정을 우회하여 발생하는 EPC의 한계는 TypeScript 4.9에 도입된 `satisfies` 연산자로 해결할 수 있으며, 이를 통해 객체의 구체적인 타입을 유지하면서 대상 인터페이스를 엄격하게 검증한다 [5, 6]. - -* **인터페이스(Interface)와 타입 별칭(Type Alias)의 전략적 이원화** - 대규모 프로젝트의 컴파일 성능을 최적화하기 위해서는 도메인 모델과 같이 여러 곳에서 참조되는 핵심 정의에 타입 관계 캐싱이 용이한 '인터페이스'를 우선 사용해야 한다 [7]. 외부와의 소통이 필요한 계약 지점에는 선언 병합(Declaration Merging)이 가능한 인터페이스를 활용하고, 핵심 비즈니스 로직에는 엄격한 관리를 위해 타입 별칭을 사용하는 전략적 이원화가 필요하다 [7, 8]. 또한, 클래스 상속보다는 얕은 단위의 인터페이스를 조립하는 합성(Composition)을 활용해 결합도를 낮추어야 한다 [8]. - -* **불변성(Immutability) 확립과 데이터 오염 방지** - 데이터 무결성을 보호하기 위해 런타임 성능 오버헤드가 없는 `readonly` 수식어를 적극적으로 활용하여 컴파일 수준에서 객체 변경을 금지한다 [4]. 얕은 수준의 보호를 넘어서기 위해 매핑 타입(Mapped Types)과 조건부 타입(Conditional Types)을 엮은 `DeepReadonly`와 같은 재귀적 불변성 패턴을 적용해 복잡한 중첩 데이터의 상태 변화를 원천 차단한다 [4, 9]. - -* **식별 가능한 유니온(Discriminated Unions)과 완전성 검사(Exhaustiveness Checking)** - 공통된 리터럴 속성을 태그로 사용하여 합집합 내의 특정 가지를 구별하고 안전하게 타입을 좁힌다(Narrowing) [10]. 특히, `never` 타입을 활용한 완전성 검사는 유니온 타입에 새로운 상태가 추가되었을 때 처리되지 않은 분기를 컴파일 에러로 포착하여, 시스템 확장에 따른 빈틈을 철저히 방어한다 [10]. - -* **브랜디드 타입(Branded Types)을 통한 명목적 타이핑 수복** - 구조적 타이핑이 의미적으로 다른 데이터(예: 이메일과 이름)를 구분하지 못하는 '기본 타입에의 집착(Primitive Obsession)' 문제를 해결하기 위해, 컴파일 시점에만 존재하는 고유 속성을 부여하는 브랜디드 타입을 활용한다 [6, 11]. 이를 통해 검증된 데이터만 시스템 내부 로직으로 진입하도록 강제한다 [6]. - -* **SOLID 원칙과 아키텍처적 인터페이스 설계** - 단일 책임 원칙(SRP)과 인터페이스 분리 원칙(ISP)을 준수해 최소 단위로 쪼갠 인터페이스를 조합하는 것이 중요하다 [12]. 복잡한 서브시스템을 단순화된 인터페이스로 감싸는 퍼사드(Facade) 패턴을 통해 인지 부하와 결합도를 낮추며, "검증하지 말고 파싱하라"는 원칙을 적용하여 신뢰할 수 있는 타입의 객체만을 시스템 내부로 전달해야 한다 [12]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[구조적 타이핑(Structural Typing)]], [[식별 가능한 유니온(Discriminated Unions)]], [[브랜디드 타입(Branded Types)]], [[불변성(Immutability)]], [[satisfies 연산자]] -- **Projects/Contexts:** [[토스(Toss) Front SDK 퍼사드 패턴 적용]], [[Zod 파싱과 브랜디드 타입을 결합한 런타임 데이터 검증]] -- **Contradictions/Notes:** 소스에 따르면 "상속(Inheritance)"보다 "합성(Composition)"을 선호하는 것이 TypeScript 인터페이스 설계의 핵심 원칙 중 하나라고 주장합니다. 클래스 기반 상속은 구조를 경직시키고 결합도를 높이므로, 작은 인터페이스들의 조합을 통해 유연한 수비력을 제공해야 한다고 강조합니다 [8, 12]. 또한 구조적 타이핑의 유연성은 개발의 편의를 주지만, 이로 인한 '기본 타입에의 집착'과 같은 취약점은 브랜디드 타입이라는 인위적인 명목적 타이핑 우회로를 통해 보완해야 한다고 지적합니다 [6, 11]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/대규모 애플리케이션 개발.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/대규모 인스턴스 렌더링 및 투명도 처리.md b/10_Wiki/Topics/Programming & Language/대규모 인스턴스 렌더링 및 투명도 처리.md deleted file mode 100644 index 6a6cf1a6..00000000 --- a/10_Wiki/Topics/Programming & Language/대규모 인스턴스 렌더링 및 투명도 처리.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3EBBAF -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 대규모 인스턴스 렌더링 및 투명도 처리" ---- - -# [[대규모 인스턴스 렌더링 및 투명도 처리]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 대규모 인스턴스 렌더링(InstancedMesh)은 동일한 기하학적 구조와 재질을 가진 수많은 객체를 단일 드로우 콜로 처리하여 CPU 병목을 줄이는 렌더링 최적화 기술이다[1, 2]. 하지만 인스턴스 간의 자동 정렬 기능이 없어 투명도 처리를 위한 알파 블렌딩(Alpha Blending) 시 치명적인 시각적 오류를 유발할 수 있다[3]. 이를 해결하기 위해 매 프레임 수동으로 객체를 정렬하면 막대한 CPU 오버헤드가 발생하므로, 대규모 투명 객체 렌더링 시에는 성능과 품질 사이의 철저한 타협이 요구된다[3]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[InstancedMesh]], [[Alpha Blending]], [[Overdraw]], [[Draw Call]], [[Frustum Culling]] -- **Projects/Contexts:** [[Three.js 대규모 렌더링 최적화 파이프라인]], [[BatchedMesh 및 InstancedMesh 성능 벤치마크]] -- **Contradictions/Notes:** CPU의 드로우 콜 오버헤드를 줄이기 위해 InstancedMesh를 도입하지만, 투명도 오류를 해결하기 위해 수동으로 카메라 거리 계산 및 인스턴스 정렬을 시도할 경우 도리어 막대한 CPU 병목을 유발하는 구조적 모순이 발생한다[3]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/대규모 인스턴스 렌더링 및 투명도 처리.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/덕 타이핑 (Duck Typing).md b/10_Wiki/Topics/Programming & Language/덕 타이핑 (Duck Typing).md deleted file mode 100644 index c41eb495..00000000 --- a/10_Wiki/Topics/Programming & Language/덕 타이핑 (Duck Typing).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-EFC438 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 덕 타이핑 (Duck Typing)" ---- - -# [[덕 타이핑 (Duck Typing)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 덕 타이핑(Duck Typing)은 TypeScript의 근본적인 타입 시스템인 '구조적 타이핑(Structural Typing)'을 일컫는 또 다른 용어로, "만약 어떤 것이 오리처럼 걷고 오리처럼 꽥꽥거리면 그것은 오리다"라는 격언에서 유래했습니다 [1, 2]. 이 시스템에서는 명시적인 타입의 이름이나 선언이 일치할 필요 없이, 객체의 실제 형태나 요구되는 속성(구조)을 최소한으로 포함하고 있다면 동일한 타입 혹은 호환되는 타입으로 간주합니다 [1, 3]. 이는 자바스크립트의 유연성을 살려주지만, 의도하지 않은 잉여 속성의 유입이나 의미적으로 다른 데이터를 구별하지 못하는 보안적 허점을 유발할 수 있어 TypeScript 내의 다양한 보완적 방어 기제와 함께 사용됩니다 [4, 5]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[구조적 타이핑 (Structural Typing)]], [[명목적 타이핑 (Nominal Typing)]], [[과잉 속성 체크 (Excess Property Checking)]], [[satisfies 연산자]], [[브랜디드 타입 (Branded Types)]] -- **Projects/Contexts:** [[철벽 수비대: TypeScript 타입 시스템과 견고한 인터페이스 설계의 정수]] -- **Contradictions/Notes:** 덕 타이핑은 자바스크립트 고유의 동적인 유연성을 잘 살려주지만, 구조만 같으면 모든 호환을 허용하므로 시스템 경계에서 오염된 데이터를 완벽히 걸러내지 못합니다. 따라서 견고한 인터페이스 설계를 위해서는 과잉 속성 체크나 satisfies 연산자, 브랜디드 타입 같은 "엄격한 수비 장치"들과의 결합이 필수적으로 요구됩니다 [4, 5, 8, 11]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/덕 타이핑 (Duck Typing).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/도메인 기반 설계(DDD)의 식별자 분리.md b/10_Wiki/Topics/Programming & Language/도메인 기반 설계(DDD)의 식별자 분리.md deleted file mode 100644 index 7d9a6870..00000000 --- a/10_Wiki/Topics/Programming & Language/도메인 기반 설계(DDD)의 식별자 분리.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5D91AB -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 도메인 기반 설계(DDD)의 식별자 분리" ---- - -# [[도메인 기반 설계(DDD)의 식별자 분리]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **'기본 타입에의 집착(Primitive Obsession)' 문제 극복** - TypeScript와 같은 구조적 타이핑(Structural Typing) 시스템에서는 구조가 동일할 경우 타입 호환이 허용됩니다 [1]. 이로 인해 사용자 ID(UserId)와 주문 ID(OrderId)가 모두 `string` 타입으로 표현될 경우, 서로 다른 의미의 데이터임에도 불구하고 컴파일러가 이를 구분하지 못하여 데이터가 섞이는 치명적인 실수를 방지할 수 없는 문제가 발생합니다 [1, 4]. 도메인 기반 설계에서는 이러한 '기본 타입에의 집착'을 해결하고 명확한 경계를 세우기 위해 식별자를 타입 레벨에서 분리해야 합니다 [1]. - -- **브랜디드 타입(Branded Types)을 통한 식별자 분리 구현** - 식별자의 구분을 위해 **브랜디드 타입**이나 **오파크 타입** 패턴을 사용하여, 기반이 되는 타입(예: 문자열이나 숫자)에 고유한 심볼(Unique Symbol)이나 가상의 브랜드 속성을 부여합니다 [1, 4]. 이를 통해 컴파일러는 런타임 구조가 동일한 원시 타입이라 하더라도, 서로 다른 브랜드를 가진 식별자를 별개의 타입으로 취급하게 됩니다 [4, 5]. 예를 들어, `UserId`와 `OrderId`를 이 패턴으로 정의하면 두 식별자를 실수로 교차하여 할당하는 것을 방지할 수 있습니다 [3]. - -- **도메인 내 무결성을 보호하는 '신분증 시스템' 역할** - 도메인 기반 설계(DDD)에서 브랜디드 타입의 활용은 특히 빛을 발합니다 [2]. `UserId`, `OrderId`, 혹은 댓글 ID와 게시글 ID(`CommentId`, `PostId`) 등 다양한 데이터 타입의 GUID(Globally Unique ID)를 엄격히 분리함으로써, 데이터베이스의 여러 데이터 유형이 실수로 뒤바뀌는 것을 막아줍니다 [2, 6, 7]. 이는 검증되고 올바른 맥락의 식별자 데이터만이 시스템의 핵심 비즈니스 로직으로 진입하도록 강제하는 **"신분증 시스템"**과 같은 수비적 역할을 수행합니다 [2]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[브랜디드 타입(Branded Types)]], [[오파크 타입(Opaque Types)]], [[기본 타입에의 집착(Primitive Obsession)]], [[구조적 타이핑(Structural Typing)]] -- **Projects/Contexts:** [[TypeScript의 안전한 도메인 모델링]], [[데이터 오염 방지 및 무결성 보호 체계]] -- **Contradictions/Notes:** 소스에 따르면 TypeScript의 구조적 타이핑은 매우 편리하지만 식별자처럼 고유성이 필요한 데이터를 구별하지 못하는 허점이 존재합니다. 이를 명목적 타이핑(Nominal Typing)과 유사한 효과를 내는 브랜디드 타입으로 보완해야만 도메인 식별자를 엄격히 분리할 수 있다는 점이 일관되게 강조되고 있습니다 [1, 5, 8]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/도메인 기반 설계(DDD)의 식별자 분리.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/동기강화 상담(Motivational Interviewing).md b/10_Wiki/Topics/Programming & Language/동기강화 상담(Motivational Interviewing).md deleted file mode 100644 index 6d2df2d7..00000000 --- a/10_Wiki/Topics/Programming & Language/동기강화 상담(Motivational Interviewing).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-981A52 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 동기강화 상담(Motivational Interviewing)" ---- - -# [[동기강화 상담(Motivational Interviewing)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/동기강화 상담(Motivational Interviewing).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/디지털 미학(Digital Aesthetics).md b/10_Wiki/Topics/Programming & Language/디지털 미학(Digital Aesthetics).md deleted file mode 100644 index 945d6e50..00000000 --- a/10_Wiki/Topics/Programming & Language/디지털 미학(Digital Aesthetics).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-276C6F -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 디지털 미학(Digital Aesthetics)" ---- - -# [[디지털 미학(Digital Aesthetics)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/디지털 미학(Digital Aesthetics).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/루도-내러티브 부조화(Ludonarrative Dissonance).md b/10_Wiki/Topics/Programming & Language/루도-내러티브 부조화(Ludonarrative Dissonance).md deleted file mode 100644 index a6b18036..00000000 --- a/10_Wiki/Topics/Programming & Language/루도-내러티브 부조화(Ludonarrative Dissonance).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CBF7DE -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 루도-내러티브 부조화(Ludonarrative Dissonance)" ---- - -# [[루도-내러티브 부조화(Ludonarrative Dissonance)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/루도-내러티브 부조화(Ludonarrative Dissonance).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/린터 (Linter).md b/10_Wiki/Topics/Programming & Language/린터 (Linter).md deleted file mode 100644 index 51f1e5b2..00000000 --- a/10_Wiki/Topics/Programming & Language/린터 (Linter).md +++ /dev/null @@ -1,37 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D02DB7 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 린터 (Linter)" ---- - -# [[린터 (Linter)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **정적 코드 분석 (Static Code Analysis):** - 린터는 런타임 환경에서 프로그램을 실행하지 않고 코드 자체를 정적으로 분석하는 도구이다 [1]. 단순한 구문 검사를 넘어 선언되지 않은 변수, 코드 냄새(Code smells), 안티 패턴 등 잠재적인 프로그래밍 오류를 자동으로 검출한다 [1, 6]. -- **규칙 기반 검사 및 스타일 강제 (Rule-based Checks & Consistency):** - 린터는 사전에 정의된 코딩 표준(규칙)을 적용하여, 이 규칙이 위반될 경우 경고를 띄우거나 빌드를 실패하게 만든다 [7]. 이를 통해 들여쓰기, 변수 명명 규칙, 띄어쓰기 등 개발자 간의 코딩 스타일 차이를 줄이고, 여러 기여자가 참여하더라도 일관되고 관용적인 코드 기반을 유지할 수 있도록 강제한다 [8, 9]. -- **보안 및 오류 예방 (Security & Error Prevention):** - 린터는 SQL 인젝션, 크로스 사이트 스크립팅(XSS), 하드코딩된 비밀번호 등 일반적인 보안 취약점과 관련된 위험한 코드 패턴이나 사용이 권장되지 않는 라이브러리를 조기에 감지하여 보안을 강화한다 [10-12]. 또한, 문제를 런타임이나 프로덕션 이전에 파악함으로써 실제 버그로 이어질 확률을 현저히 낮춘다 [13]. -- **생산성 증대 (Developer Productivity):** - IDE 플러그인이나 CI/CD 파이프라인의 사전 커밋(pre-commit) 훅 등으로 통합되어 코드를 작성하는 즉시 실시간 피드백을 제공한다 [14]. 설정에 따라 린터가 감지된 문제를 자동으로 수정해주는 '빠른 수정(Quick fix)' 기능을 제공하기도 하며, 이는 개발자가 디버깅에 쏟는 시간을 줄이고 창의적인 로직 구현에 더 집중할 수 있게 만든다 [15, 16]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[정적 분석 (Static Analysis)]], [[포매터 (Formatter)]], [[ESLint]] -- **Projects/Contexts:** [[통합 개발 환경 (IDE)]], [[CI/CD 파이프라인]], [[코드 리뷰 (Code Review)]] -- **Contradictions/Notes:** 린터(Linter)는 코드 품질 보장과 오류 검출에 중점을 두는 반면, 포매터(Formatter)는 코드를 깔끔하게 정렬하는 데 특화되어 있다 [17]. 그러나 린터(예: ESLint)에도 코드 포매팅 기능이 포함되어 있어 Prettier와 같은 전용 포매터와 함께 사용할 경우 스타일 규칙 충돌이 발생할 수 있으므로, 린터의 포매팅 기능을 끄고 문법 검사 기능만 사용하도록 설정(예: `eslint-config-prettier` 사용)하는 것이 권장된다 [18, 19]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/린터 (Linter).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/마이너 가비지 컬렉션(Minor GC).md b/10_Wiki/Topics/Programming & Language/마이너 가비지 컬렉션(Minor GC).md deleted file mode 100644 index b78bd12f..00000000 --- a/10_Wiki/Topics/Programming & Language/마이너 가비지 컬렉션(Minor GC).md +++ /dev/null @@ -1,41 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4E47A6 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 마이너 가비지 컬렉션(Minor GC)" ---- - -# [[마이너 가비지 컬렉션(Minor GC)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -**발생 조건 및 메모리 공간** -마이너 가비지 컬렉션은 V8 엔진의 '새로운 공간(New Space)' 혹은 '젊은 세대(Young Generation)'에 객체를 할당할 때, 할당 포인터가 공간의 끝에 도달하여 여유 메모리가 고갈되면 트리거됩니다 [1, 2, 7]. 이 공간은 빠르게 가비지 컬렉션이 이루어지도록 보통 1MB에서 64MB 사이의 비교적 작은 크기로 유지됩니다 [1, 2, 8]. - -**Scavenge 알고리즘 동작 방식** -마이너 GC는 '스캐빈저(Scavenger)' 알고리즘을 통해 수행되며, V8은 새로운 공간을 정확히 반으로 나누어 'From-Space'와 'To-Space'라는 두 개의 세미 스페이스(Semi-space)로 운영합니다 [2, 5]. -- **식별(Marking):** GC는 루트 객체(스택, 전역 변수 등) 및 구세대에서 신세대를 참조하는 포인터들(쓰기 장벽(Write barrier)을 통해 기억 집합(Remembered set)으로 추적됨)에서 출발하여 살아있는(Live) 객체를 식별합니다 [6, 9, 10]. -- **대피 및 복사(Evacuation):** 살아남은 객체들은 From-Space에서 To-Space의 연속적인 메모리 청크로 복사되며, 이 과정을 통해 메모리 단편화(Fragmentation)가 제거됩니다 [5, 6, 11]. -- **승격(Promotion):** 두 번의 마이너 GC 사이클을 거치면서도 살아남은 객체는 수명이 긴 객체로 간주되어 구세대(Old Space)로 승격됩니다 [1, 4, 6]. -- **스왑(Swap):** 복사가 완료되면 From-Space에 남은 내용은 모두 가비지로 간주되어 완전히 비워지고, 두 스페이스의 역할이 서로 바뀝니다 [6, 9, 12]. 이후 새로운 객체 할당은 비워진 From-Space에서 재개됩니다 [9]. - -**병렬 처리 및 최적화** -과거의 마이너 GC는 체니 알고리즘(Cheney's algorithm)에 기반하여 동기식(Synchronous)으로 동작하며 메인 스레드를 멈추게(Stop-the-world) 했습니다 [7, 13]. 하지만 최신 V8 엔진(예: Orinoco 프로젝트)은 병렬 스캐빈저(Parallel Scavenger)를 도입하였습니다 [13, 14]. 이 방식은 메인 스레드와 여러 헬퍼 스레드에 걸쳐 작업을 분산시키며, 각 스레드가 객체를 동시에 식별, 복사, 대피시키고 포인터를 업데이트합니다 [10, 14, 15]. 이러한 병렬화를 통해 가비지 컬렉터가 메인 스레드에서 차지하는 시간을 20%~50%까지 크게 단축하여 애플리케이션의 일시 정지(Pause) 현상을 줄였습니다 [16, 17]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[새로운 공간(New Space)]], [[구세대(Old Space)]], [[세대별 가설(Generational Hypothesis)]], [[스캐빈저(Scavenger)]], [[쓰기 장벽(Write Barrier)]] -- **Projects/Contexts:** [[V8 JavaScript Engine]], [[Orinoco Garbage Collector]] -- **Contradictions/Notes:** 초기 V8 버전에서는 마이너 GC를 위해 단일 스레드로 동작하는 동기식 체니 알고리즘(Cheney's algorithm)을 사용했지만, 최신 버전에서는 멀티코어 환경에 맞춰 작업 훔치기(work stealing) 기법을 활용하는 병렬 스캐빈저(Parallel Scavenger)로 발전했습니다 [7, 13]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/마이너 가비지 컬렉션(Minor GC).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/마이크로서비스 아키텍처.md b/10_Wiki/Topics/Programming & Language/마이크로서비스 아키텍처.md deleted file mode 100644 index 5f4639c3..00000000 --- a/10_Wiki/Topics/Programming & Language/마이크로서비스 아키텍처.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6067F4 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 마이크로서비스 아키텍처" ---- - -# [[마이크로서비스 아키텍처]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -**주요 개념 및 특징** -* **서비스 분해와 자율성:** 비즈니스 역량(Business Capability)을 기준으로 시스템을 세분화하며, 각 서비스는 고유한 코드베이스와 독립적인 데이터 저장소를 가질 수 있습니다 [1], [4]. 이를 통해 각기 다른 서비스에 가장 적합한 기술 스택을 도입할 수 있는 기술적 이질성(Technology Heterogeneity)을 폭넓게 지원합니다 [4], [5]. -* **독립적 배포와 유연성:** 전체 애플리케이션 시스템을 재배포할 필요 없이, 개별 서비스 단위로 업데이트와 배포를 독립적으로 진행할 수 있습니다 [1], [4]. 이는 개발 주기를 단축시키고 팀 간의 병렬 작업을 수월하게 만듭니다 [1]. -* **클라우드 네이티브 및 자동화 도입:** 성공적인 마이크로서비스 아키텍처 구현을 위해서는 도커(Docker)와 같은 컨테이너 기술 및 쿠버네티스(Kubernetes) 같은 오케스트레이션 플랫폼과 결합하여 배포, 확장, 관리를 자동화하는 것이 중요합니다 [6], [7], [8]. - -**주요 장점** -* **장애 격리(Fault Isolation) 및 복원력:** 하나의 마이크로서비스에 장애가 발생하더라도 전체 비즈니스 시스템의 붕괴로 이어지지 않도록 장애의 영향 반경(Blast radius)을 격리할 수 있습니다 [5], [9]. 분산 환경에서는 네트워크 실패가 불가피하므로 회로 차단기(Circuit breaker)나 재시도(Retries), 폴백(Fallbacks) 패턴을 구현하여 복원력을 향상시킵니다 [6]. -* **유연한 확장성:** 시스템 전체를 확장할 필요 없이, 특정 기능이나 트래픽이 집중되는 서비스만을 선별적으로 수평 확장할 수 있어 자원 관리가 매우 효율적입니다 [10], [11], [12]. - -**단점 및 운영 과제** -* **분산 시스템의 복잡성:** 서비스 간 통신 구조를 직접 구현해야 하며, 부분적 장애 처리나 여러 서비스에 걸친 트랜잭션 관리와 같은 분산 시스템 특유의 복잡성을 다뤄야 합니다 [13], [14]. -* **비용 및 리소스 오버헤드 증가:** 각 서비스마다 자체적인 런타임 환경(JVM, VM 등)을 실행하고 분산된 데이터베이스를 관리해야 하므로 메모리 등 인프라 리소스 소비와 비용이 크게 증가합니다 [13], [15]. 수많은 서비스를 안정적으로 모니터링하고 배포하기 위해서는 높은 수준의 운영 인력과 기술력이 요구됩니다 [13], [15]. - -**마이크로서비스 컴포지션 패턴(Composition Patterns)** -* 단일 요청 처리를 위해 개별 서비스들을 조합하고 호출하는 구조적 패턴이 존재합니다 [16], [17]. 대표적으로 순차적으로 서비스를 호출하는 체인(Chained) 패턴, 다수의 서비스를 묶어 호출하는 어그리게이터(Aggregator) 패턴, 브랜치(Branch) 패턴, 프록시(Proxy) 패턴, 공유 리소스(Shared Resource) 패턴 등이 활용됩니다 [16], [17]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[모놀리식 아키텍처]], [[서비스 지향 아키텍처(SOA)]], [[도메인 주도 설계(DDD)]], [[컨테이너 및 클라우드 네이티브 아키텍처]] -- **Projects/Contexts:** [[넷플릭스(Netflix) 마이크로서비스 도입 사례]], [[넷플릭스 코스모스(Cosmos) 플랫폼]], [[스포티파이(Spotify)의 컨테이너화된 마이크로서비스]] -- **Contradictions/Notes:** 소스에 명시적인 모순은 없으나, 마이크로서비스 아키텍처는 극대화된 유지보수성과 유연성을 가져다주는 반면, 개발 초기의 분산 시스템 복잡성 및 배포 운영 난이도가 급격히 상승한다는 명확한 '트레이드오프(Trade-off)'를 갖는다고 강조합니다. 따라서 규모가 작고 단순한 환경에서는 모놀리식 구조에 비해 과도한 설계(Over-engineering)가 될 수 있습니다. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/마이크로서비스 아키텍처.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/마크-스위프(Mark-Sweep).md b/10_Wiki/Topics/Programming & Language/마크-스위프(Mark-Sweep).md deleted file mode 100644 index edd8945f..00000000 --- a/10_Wiki/Topics/Programming & Language/마크-스위프(Mark-Sweep).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C80E5C -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 마크-스위프(Mark-Sweep)" ---- - -# [[마크-스위프(Mark-Sweep)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 마크-스위프(Mark-Sweep)는 가비지 컬렉터(GC)가 더 이상 사용되지 않는 메모리 영역을 식별하고 회수하여 재사용할 수 있도록 하는 가비지 컬렉션 알고리즘입니다 [1]. 루트(Root) 객체부터 도달 가능한 라이브(Live) 객체를 식별하여 표시하는 '마킹(Mark)' 단계와, 마킹되지 않은 데드(Dead) 객체를 메모리에서 지워 빈 공간(Free space)으로 전환하는 '스위핑(Sweep)' 단계로 구성됩니다 [2, 3]. 주로 자바스크립트 V8 엔진이나 IBM 가비지 컬렉터에서 비교적 오래 살아남은 객체가 모인 구 세대(Old Generation/Space)의 메모리를 정리하는 데 사용됩니다 [4, 5]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[가비지 컬렉션(Garbage Collection)]], [[마크-컴팩트(Mark-Compact)]], [[Old Space (구 세대 공간)]], [[점진적 마킹(Incremental marking)]] -- **Projects/Contexts:** [[V8 자바스크립트 엔진]], [[Orinoco 프로젝트]], [[IBM 가비지 컬렉션]] -- **Contradictions/Notes:** 마크-컴팩트는 단편화를 제거해주지만, 모든 생존 객체를 복사하고 메모리 포인터를 업데이트해야 하므로 비용이 매우 비쌉니다. 따라서 V8 엔진은 모든 페이지를 컴팩트하지 않고, 일부는 스위핑(Sweep)만 수행하며 필요한 파편화 페이지에 한해서만 압축(Compact)을 진행하는 전략을 취합니다 [17, 24]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/마크-스위프(Mark-Sweep).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/마크-컴팩트(Mark-Compact).md b/10_Wiki/Topics/Programming & Language/마크-컴팩트(Mark-Compact).md deleted file mode 100644 index f2126713..00000000 --- a/10_Wiki/Topics/Programming & Language/마크-컴팩트(Mark-Compact).md +++ /dev/null @@ -1,40 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5617F2 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 마크-컴팩트(Mark-Compact)" ---- - -# [[마크-컴팩트(Mark-Compact)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **작동 원리 (마킹 및 컴팩팅 단계):** - 마크-컴팩트 알고리즘은 마크-스윕(Mark-Sweep)과 매우 밀접하게 관련되어 있으며, **마킹(Marking)과 컴팩팅(Compacting)이라는 두 가지 주요 단계**로 작동합니다 [2]. 마킹 단계에서는 루트(root)로부터 도달할 수 있는 힙 내의 모든 라이브 객체를 깊이 우선 탐색(DFS) 방식으로 추적하며 발견된 객체들을 회색(grey)이나 흑색(black) 상태로 마킹합니다 [3, 8-10]. 마킹 알고리즘이 종료되면 모든 라이브 객체는 흑색으로, 죽은(dead) 객체는 백색(white)으로 남게 되며 이 정보가 컴팩팅 단계에서 활용됩니다 [11]. - -* **컴팩팅 프로세스 (단편화 해소):** - 컴팩팅 단계는 힙 메모리가 심하게 단편화되어 있을 때 실행되며, 수많은 작은 빈 공간을 포함하고 있는 **단편화된 페이지의 객체들을 다른 페이지의 빈 공간(Free list)으로 이주시킴으로써 실제 메모리 사용량을 줄이려 시도**합니다 [4-6]. 각 라이브 객체는 새로 할당된 공간으로 복사되며, 원래 객체의 첫 번째 단어에는 새로운 위치를 가리키는 포워딩 주소(forwarding address)가 남겨집니다 [4]. 만약 기존 페이지가 모두 비워지면(evacuated) 운영 체제(OS)에 다시 반환될 수 있으며, 필요에 따라 새로운 페이지가 할당되기도 합니다 [4, 6]. - -* **포인터 업데이트와 성능 비용:** - 객체가 메모리 내에서 이동함에 따라, 해당 객체들을 가리키고 있던 다른 객체들의 모든 참조(reference) 또한 새로운 주소로 변경되어야 합니다 [4, 7]. V8 엔진의 경우, 대피(evacuation)가 진행되는 동안 포인터의 위치들이 기록되며, 대피가 완료된 후 리스트를 순회하며 **복사된 새로운 위치를 가리키도록 포인터를 업데이트**합니다 [4]. 이러한 대규모 이동 및 참조 수정 작업으로 인해 힙을 컴팩팅하는 과정은 **비용이 매우 많이 드는 오퍼레이션(expensive operation)**으로 간주됩니다 [7]. 만약 특정 페이지를 가리키는 외부 포인터가 너무 많은 '인기 있는(popular)' 페이지라면, 기록을 중단하고 다음 GC 사이클 때까지 대피를 연기하기도 합니다 [4]. - -* **트리거(Trigger) 조건:** - 수백 메가바이트의 데이터를 포함할 수 있는 Old Space를 수집하기 위해 실행되지만 [2, 3], 항상 수행되는 것은 아닙니다. 예를 들어 IBM GC 정책의 경우, 기본적으로 컴팩트 작업을 피하지만 `-Xcompactgc` 커맨드 라인 옵션을 강제 지정했을 때, 스윕(sweep) 후에도 할당 요청을 충족할 여유 공간이 부족할 때, 명시적 `System.gc()` 호출 시 특정 조건을 만족할 때 등의 상황에서 발생합니다 [7, 12]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[가비지 컬렉션(Garbage Collection)]], [[마크-스윕(Mark-Sweep)]], [[단편화(Fragmentation)]] -- **Projects/Contexts:** [[V8 JavaScript Engine]], [[IBM SDK/Eclipse OpenJ9]] -- **Contradictions/Notes:** 소스 상에서 마크-컴팩트 알고리즘의 개념에 대한 모순은 없습니다. 다만 V8(자바스크립트)에서는 주로 'Old Space'를 정리하기 위해 설계된 메이저 가비지 컬렉션의 핵심 메커니즘으로 소개되며 [1, 2], IBM OpenJ9(자바) 환경에서는 고비용 오퍼레이션이라는 이유로 기본적으로는 발생하지 않되, 공간 고갈이나 명시적 옵션 적용 시 발생하는 조건부 동작으로 자세히 묘사됩니다 [7, 12]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/마크-컴팩트(Mark-Compact).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/머리 착용 디스플레이(HMD) 시각 연구.md b/10_Wiki/Topics/Programming & Language/머리 착용 디스플레이(HMD) 시각 연구.md deleted file mode 100644 index 806dac25..00000000 --- a/10_Wiki/Topics/Programming & Language/머리 착용 디스플레이(HMD) 시각 연구.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C33D02 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 머리 착용 디스플레이(HMD) 시각 연구" ---- - -# [[머리 착용 디스플레이(HMD) 시각 연구]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **가상현실(VR) 멀미 및 시각 증상:** HMD 사용자는 종종 메스꺼움, 방향 감각 상실, 시각적 장애와 같은 VR 멀미 증상을 경험하며, 이는 사용자의 인지 능력과 깊이 지각에 악영향을 미칠 수 있습니다 [1]. -- **수렴-조절 불일치(Vergence-Accommodation Conflict):** 자연스러운 시각 환경에서는 수렴(Vergence)과 조절(Accommodation) 기능이 피드백 루프 안에서 함께 작용하여 정확한 깊이 지각을 돕습니다 [2, 3]. 그러나 HMD 환경에서는 이 두 가지 핵심 안구 운동 기능이 분리(decoupled)되어 깊이 지각을 위한 망막 단서에 불확실성이 발생합니다 [3]. -- **동반되는 시각적 부작용:** 수렴과 조절 기능의 분리 현상은 두통, 눈의 통증, 시각적 피로, 복시(Double vision)와 같은 여러 동반 증상을 유발할 가능성이 높습니다 [3]. -- **시각 척도 측정 방법론:** HMD 사용이 시각에 미치는 영향을 평가하기 위해 연구자들은 영국 공군(RAF) 근점 자(near-point rule)와 같은 도구를 사용하여 HMD 노출 전후의 근접 수렴점(Near point of convergence)과 근접 조절점(Near point of accommodation)의 변화를 밀리미터 단위로 측정합니다 [4]. -- **단기적 시각 후유증 및 노출 시간의 영향:** '비트 세이버(Beat Saber)'를 활용한 실험에서 HMD 노출 직후 조절 및 수렴의 유의미한 변화가 관찰되었으나, 이는 40분 휴식 후 기준치(Baseline) 수준으로 회복되었습니다 [3, 5, 6]. 흥미롭게도 10분 노출과 50분 노출 간에 시각적 변화의 차이가 없었으며, 이는 눈에 띄는 안구 운동의 변화가 HMD 사용 첫 10분 이내에 이미 발생함을 시사합니다 [3]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[수렴-조절 불일치(Vergence-Accommodation Conflict)]], [[VR 멀미(VR Sickness)]], [[깊이 지각(Depth Perception)]], [[안구 운동 기능(Oculomotor Functions)]] -- **Projects/Contexts:** [[비트 세이버(Beat Saber) VR 엑서게임 연구]] -- **Contradictions/Notes:** 소스에 따르면 HMD 사용 시간에 비례하여 시각적 후유증이 계속 증가할 것이라는 직관적 예상과 달리, 노출 시간(10분 vs 50분)은 조절 및 수렴 척도 변화 크기에 유의미한 영향을 미치지 않았으며 변화는 초기 10분 내에 이루어짐을 보여줍니다 [3]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/머리 착용 디스플레이(HMD) 시각 연구.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/메모리 누수(Memory Leak).md b/10_Wiki/Topics/Programming & Language/메모리 누수(Memory Leak).md deleted file mode 100644 index 3f5f4c92..00000000 --- a/10_Wiki/Topics/Programming & Language/메모리 누수(Memory Leak).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-80BFE5 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 메모리 누수(Memory Leak)" ---- - -# [[메모리 누수(Memory Leak)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 메모리 누수(Memory Leak)는 더 이상 필요하지 않은 객체가 가비지 컬렉션(GC) 루트(예: 전역 객체, 클로저, 이벤트 리스너 등)로부터 지속적으로 참조되어 시스템이 메모리를 회수할 수 없는 상태를 의미합니다 [1-3]. 애플리케이션이 장시간 실행되면서 가용 메모리가 점진적으로 고갈되며 성능 저하, 긴 GC 일시 정지(Pause), 그리고 결국 OOM(Out of Memory) 충돌을 일으키게 됩니다 [2, 4, 5]. V8과 같은 엔진은 자동으로 메모리를 관리하지만, 개발자가 의도치 않게 남겨둔 참조로 인해 메모리 누수가 발생하므로 힙 스냅샷이나 할당 타임라인(Allocation Timeline) 등의 프로파일링 도구를 통해 세밀하게 추적해야 합니다 [1, 3, 6, 7]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[가비지 컬렉션(Garbage Collection)]], [[할당 타임라인(Allocation Timeline)]], [[힙 스냅샷(Heap Snapshot)]], [[Old Space]] -- **Projects/Contexts:** [[Chrome DevTools 메모리 분석 및 성능 최적화]], [[V8 엔진 힙 아키텍처 및 로그 분석]] -- **Contradictions/Notes:** `WeakRef` 및 `FinalizationRegistry`는 누수 방지를 위한 모던 도구이지만, GC의 실행 시점이 비결정적이므로 적절한 생명주기 관리를 완전히 대체할 수는 없습니다 [11]. 또한, 크기가 계속 커지는 모든 메모리 그래프가 누수인 것은 아니며, 캐시나 가상화된 리스트 버퍼 등 의도적인 데이터 보존(Intentional retention)과 구별해야 합니다 [26]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/메모리 누수(Memory Leak).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/메모리 단편화(Fragmentation).md b/10_Wiki/Topics/Programming & Language/메모리 단편화(Fragmentation).md deleted file mode 100644 index 9aeb9512..00000000 --- a/10_Wiki/Topics/Programming & Language/메모리 단편화(Fragmentation).md +++ /dev/null @@ -1,35 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4BA757 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 메모리 단편화(Fragmentation)" ---- - -# [[메모리 단편화(Fragmentation)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **단편화의 발생 원인과 문제점**: 힙(Heap) 메모리, 특히 수명이 긴 객체가 저장되는 공간(예: V8 엔진의 Old Space)에서는 매 주기마다 객체들이 자동으로 압축되지 않기 때문에 메모리 단편화가 중대한 문제로 발생합니다[2]. 수명을 다한 메모리들이 페이지 내에 사용할 수 없는 작은 빈 공간들을 남기게 되면, 총 여유 공간이 충분하더라도 연속적인 공간을 찾을 수 없어 V8 엔진은 운영체제로부터 더 많은 메모리를 요구받게 됩니다[2]. -* **압축(Compaction)을 통한 단편화 제거**: 단편화를 완화하고 실제 메모리 사용량을 줄이기 위해 가비지 컬렉터는 심하게 조각난 페이지에서 다른 페이지의 빈 공간으로 활성 객체들을 이주시키는 '압축' 알고리즘(예: Mark-Compact)을 사용합니다[1, 5]. 하지만 객체를 이동시켜 힙의 단편화를 제거하는 작업은 힙 전역에서 해당 객체들을 가리키는 모든 참조(포인터)를 찾아 업데이트해야 하므로 계산 비용이 매우 비싼(expensive) 작업입니다[3, 6]. 따라서 대규모의 Old Space에서는 압축이 매번 일어나지 않고 필요한 경우에만 선택적이고 공격적으로 수행됩니다[3]. -* **V8 엔진의 단편화 최적화 기법**: - * **새로운 공간(New Space)의 대피(Evacuation)**: 짧은 수명의 객체를 처리하는 V8의 마이너 GC(Scavenge) 과정에서는 살아남은 모든 객체를 다음 공간(To-Space)의 시작 부분에 빈틈없이 붙여서 복사합니다. 이 대피 과정은 부수적으로 해당 공간의 파편화를 완전히 제거하는 이점을 제공합니다[7, 8]. - * **페이지 크기 축소**: 메모리가 적은 기기 환경에서 V8은 힙 페이지 크기를 1MB에서 512KB로 줄여 전체 메모리 단편화를 최대 2배까지 감소시켰습니다[9, 10]. 페이지 크기가 작아지면 압축 작업을 더 작은 단위로 수행할 수 있고 페이지 끝부분에 남는 미사용 공간(slack space) 또한 줄일 수 있습니다[5]. - * **메모리 축소 모드**: V8은 메모리 사용량이 중요해질 때 메모리 축소 모드를 통해 더 적극적인 메모리 압축을 수행하여 메모리 단편화를 한층 더 줄입니다[11]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[가비지 컬렉션(Garbage Collection)]], [[메모리 압축(Compaction)]] -- **Projects/Contexts:** [[V8 자바스크립트 엔진(V8 JavaScript Engine)]], [[Eclipse OpenJ9]] -- **Contradictions/Notes:** 소스 전반에서 압축(Compaction)은 메모리 단편화를 해결하는 가장 확실한 방법으로 묘사되나, 그에 수반되는 참조 포인터 업데이트 연산 때문에 성능 오버헤드가 큰 비싼 작업(expensive operation)임이 일관되게 강조되고 있습니다[3, 6]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/메모리 단편화(Fragmentation).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/메모리 파편화 방지 및 객체 풀링 (Object Pooling).md b/10_Wiki/Topics/Programming & Language/메모리 파편화 방지 및 객체 풀링 (Object Pooling).md deleted file mode 100644 index 652eb423..00000000 --- a/10_Wiki/Topics/Programming & Language/메모리 파편화 방지 및 객체 풀링 (Object Pooling).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4FD94E -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 메모리 파편화 방지 및 객체 풀링 (Object Pooling)" ---- - -# [[메모리 파편화 방지 및 객체 풀링 (Object Pooling)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/메모리 파편화 방지 및 객체 풀링 (Object Pooling).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/몰입 (Flow Theory).md b/10_Wiki/Topics/Programming & Language/몰입 (Flow Theory).md deleted file mode 100644 index 5c4d58c0..00000000 --- a/10_Wiki/Topics/Programming & Language/몰입 (Flow Theory).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7D7420 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 몰입 (Flow Theory)" ---- - -# [[몰입 (Flow Theory)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/몰입 (Flow Theory).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/미디어 폭력과 공격성 연구.md b/10_Wiki/Topics/Programming & Language/미디어 폭력과 공격성 연구.md deleted file mode 100644 index fab8f9a0..00000000 --- a/10_Wiki/Topics/Programming & Language/미디어 폭력과 공격성 연구.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-7FB7BB -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 미디어 폭력과 공격성 연구" ---- - -# [[미디어 폭력과 공격성 연구]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/미디어 폭력과 공격성 연구.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/번아웃 및 직무 스트레스.md b/10_Wiki/Topics/Programming & Language/번아웃 및 직무 스트레스.md deleted file mode 100644 index 12477ae8..00000000 --- a/10_Wiki/Topics/Programming & Language/번아웃 및 직무 스트레스.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4FD551 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 번아웃 및 직무 스트레스" ---- - -# [[번아웃 및 직무 스트레스]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/번아웃 및 직무 스트레스.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/범이론적 모델(Transtheoretical Model).md b/10_Wiki/Topics/Programming & Language/범이론적 모델(Transtheoretical Model).md deleted file mode 100644 index 5825213d..00000000 --- a/10_Wiki/Topics/Programming & Language/범이론적 모델(Transtheoretical Model).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8B5019 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 범이론적 모델(Transtheoretical Model)" ---- - -# [[범이론적 모델(Transtheoretical Model)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/범이론적 모델(Transtheoretical Model).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/보상 예측 오류 (Reward Prediction Error).md b/10_Wiki/Topics/Programming & Language/보상 예측 오류 (Reward Prediction Error).md deleted file mode 100644 index 15513f2c..00000000 --- a/10_Wiki/Topics/Programming & Language/보상 예측 오류 (Reward Prediction Error).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F58C26 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 보상 예측 오류 (Reward Prediction Error)" ---- - -# [[보상 예측 오류 (Reward Prediction Error)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/보상 예측 오류 (Reward Prediction Error).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/보조 공학 (Assistive Technology).md b/10_Wiki/Topics/Programming & Language/보조 공학 (Assistive Technology).md deleted file mode 100644 index dfe5a273..00000000 --- a/10_Wiki/Topics/Programming & Language/보조 공학 (Assistive Technology).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-34AA37 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 보조 공학 (Assistive Technology)" ---- - -# [[보조 공학 (Assistive Technology)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/보조 공학 (Assistive Technology).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/브라우저 DOM 누수 탐지 및 렌더링 최적화.md b/10_Wiki/Topics/Programming & Language/브라우저 DOM 누수 탐지 및 렌더링 최적화.md deleted file mode 100644 index 9bd34c20..00000000 --- a/10_Wiki/Topics/Programming & Language/브라우저 DOM 누수 탐지 및 렌더링 최적화.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -id: P-REINFORCE-AUTO-590D6E -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 브라우저 DOM 누수 탐지 및 렌더링 최적화" ---- - -# [[브라우저 DOM 누수 탐지 및 렌더링 최적화]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -**DOM 누수의 원리 및 주요 발생 패턴** -* 브라우저 자바스크립트의 메모리 누수는 메모리가 '사라지는' 것이 아니라, GC 루트(window, 활성 클로저, 이벤트 리스너 등)에서 계속 접근 가능한 상태로 남아있어 가비지 컬렉터가 회수하지 못할 때 발생합니다 [1]. -* 가장 대표적인 패턴은 '분리된 DOM 노드(Detached DOM nodes)'입니다. 이는 문서(Document)에서는 제거되었으나 자바스크립트 변수나 Map/Set 엔트리에 의해 참조가 유지되어, 해당 요소와 그 하위 트리 전체가 메모리에 남아있는 현상입니다 [2, 7]. -* 이 외에도 해제되지 않은 이벤트 리스너, 여러 클로저가 동일한 스코프를 공유할 때 발생하는 클로저 스코프 보존(Closure scope retention), 그리고 제거된 타겟을 가리키는 잊혀진 타이머(setInterval)와 옵저버(MutationObserver 등)가 주요 누수 원인입니다 [8, 9]. -* 단일 페이지 애플리케이션(SPA)의 라우트 전환 시 이전 라우트의 컴포넌트가 리스너나 전역 상태 참조를 제대로 정리하지 못하는 것이 가장 큰 누수 발생 출처입니다 [10]. - -**브라우저 DOM 누수 탐지 기법** -* **3단계 스냅샷 기법 (Three-snapshot technique):** 누수를 탐지하는 가장 신뢰할 수 있는 방법입니다. 베이스라인 스냅샷을 찍고, 누수가 의심되는 액션을 수행한 뒤 두 번째 스냅샷을 찍으며, 동일한 액션을 반복한 뒤 세 번째 스냅샷을 찍어 두 번째와 세 번째 스냅샷을 비교하는 방식입니다 [11]. -* **Chrome DevTools의 힙 스냅샷 (Heap snapshot):** 특정 시점의 전체 객체 그래프를 캡처합니다. 'Comparison(비교)' 뷰를 통해 스냅샷 간의 차이를 확인하거나, 'Retained Size' 기준으로 정렬하여 가장 큰 누수 객체를 찾을 수 있습니다 [3, 12, 13]. 필터 기능 중 "Objects retained by detached nodes(분리된 노드에 의해 보존된 객체)"를 사용하면 DOM 누수를 쉽게 식별할 수 있습니다 [14]. -* **할당 타임라인 (Allocation instrumentation on timeline):** 일정 기간 동안의 모든 메모리 할당과 스택 트레이스를 기록합니다 [3, 15]. 파란색 막대는 타임라인이 끝날 때까지 여전히 살아있는 객체를 나타내며, 이를 분석하여 예상 수명을 초과하여 남겨진 객체와 해당 객체가 생성된 정확한 코드 위치를 찾을 수 있습니다 [3, 16, 17]. -* 누수 조사 시에는 `console.log`가 객체 참조를 유지할 수 있다는 점과, 미니파이(Minify)된 코드는 분석이 어려우므로 소스 맵(Source maps)을 사용해야 한다는 주의사항이 있습니다 [10]. - -**가비지 컬렉션(GC)과 렌더링 성능의 상관관계** -* 가비지 컬렉터가 메모리를 회수할 때는 메인 스레드의 실행을 일시적으로 멈추는 'Stop-the-world' 현상이 발생할 수 있습니다 [6, 18]. 메모리가 부족해지거나 누수가 누적되면 GC가 자주, 길게 실행되는데, 이는 인터랙티브 시스템이나 애니메이션 실행 시 사용자에게 불쾌한 끊김 현상(Jank)과 렌더링 지연을 유발합니다 [5, 6]. -* V8 엔진은 이러한 메인 스레드의 렌더링 및 실행 지연을 최소화하기 위해 'Orinoco' 가비지 컬렉터를 도입하였습니다 [19]. 이는 병렬(Parallel), 점진적(Incremental), 동시(Concurrent) 기법을 활용하여 대부분의 GC 작업을 백그라운드 스레드에서 처리함으로써 메인 스레드가 자바스크립트를 실행하고 화면을 원활히 렌더링할 수 있도록 돕습니다 [20-23]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Garbage Collection (GC)]], [[Chrome DevTools]], [[Detached DOM nodes]], [[Heap Snapshot]], [[Orinoco GC]] -- **Projects/Contexts:** [[V8 JavaScript Engine]], [[Single Page Applications (SPA)]] -- **Contradictions/Notes:** 소스에는 브라우저 메모리 누수 탐지 방법과 V8 엔진의 가비지 컬렉터 동작 원리에 대한 정보는 매우 상세하게 설명되어 있으나, 레이아웃 연산, 페인팅 규칙, CSS 최적화 등 브라우저의 순수 '렌더링 파이프라인 최적화'와 관련된 직접적인 소스에 관련 정보가 부족합니다. 따라서 렌더링 최적화는 주로 '메모리 누수 방지를 통한 GC Pause(Jank) 최소화'의 관점에서만 다루어졌습니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/브라우저 DOM 누수 탐지 및 렌더링 최적화.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/브라우저 메모리 할당 시점별 힙(Heap) 동작 상세 로그.md b/10_Wiki/Topics/Programming & Language/브라우저 메모리 할당 시점별 힙(Heap) 동작 상세 로그.md deleted file mode 100644 index e342c2e2..00000000 --- a/10_Wiki/Topics/Programming & Language/브라우저 메모리 할당 시점별 힙(Heap) 동작 상세 로그.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -id: P-REINFORCE-AUTO-CAF78B -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 브라우저 메모리 할당 시점별 힙(Heap) 동작 상세 로그" ---- - -# [[브라우저 메모리 할당 시점별 힙(Heap) 동작 상세 로그]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **가비지 컬렉션(GC) 추적 로그의 구조와 해석:** - V8 엔진은 `--trace-gc` 플래그를 통해 메모리 할당 실패나 임계치 도달에 따른 힙 상태 변화를 연대기적으로 기록합니다 [1, 6]. 표준 추적 로그의 형식은 `Timestamp ms: Type Used (Total) -> Used (Total) MB, Duration ms, Reason`으로 구성됩니다 [7]. 여기서 'Type'은 Scavenge 또는 Mark-sweep과 같은 GC 알고리즘을 뜻하고, 'Used'와 'Total'은 GC 전후의 활성 객체 크기 및 운영체제로부터 예약된 총 힙 메모리를 나타냅니다 [7, 8]. 'Reason' 필드는 "allocation failure(할당 실패)" 등 GC 이벤트를 촉발한 원인을 명시하여 할당 타이밍을 분석할 수 있게 합니다 [6, 8]. - -* **상세 로그 및 힙 공간별 분석 (`--trace-gc-verbose`):** - 더 깊은 분석을 위해 `--trace-gc-verbose` 플래그를 사용하면 New space, Old space, Large object space 등 V8의 각 힙 공간(Space)별 사용량(used), 가용량(available), 커밋된 메모리(committed)의 상세 내역을 제공합니다 [6, 9]. 특히 Old space의 사용 크기가 Major GC 이후에도 지속적으로 증가한다면 이는 메모리 누수를 강력히 시사하는 지표가 됩니다 [6]. `--trace-gc-nvp` 플래그는 이러한 로그를 "name=value" 쌍으로 포맷하여 프로그램 기반의 자동화된 지표 산출(예: Mutator Utilization 계산)을 돕습니다 [10]. - -* **할당 타임라인 계측 (Allocation Instrumentation on Timeline):** - Chrome DevTools의 'Allocations on timeline' 도구는 최대 50ms의 주기로 힙 스냅샷을 찍어 시간 경과에 따른 객체 할당을 시각화합니다 [2, 11, 12]. 타임라인에서 막대의 높이는 새로 할당된 객체의 크기를 나타내며, 색상은 객체의 현재 생존 여부를 보여줍니다 [2, 13, 14]. **파란색 막대(Blue bars)**는 특정 시간대에 할당된 후 기록이 끝날 때까지 여전히 살아있는(수집되지 않은) 메모리를 의미하며, **회색 막대(Gray bars)**는 할당되었으나 이후 가비지 컬렉션된 객체를 나타냅니다 [2, 13, 15, 16]. 특정 작업을 반복하는 동안 파란색 막대가 지속적으로 축적된다면 이는 메모리 누수의 유력한 후보가 됩니다 [2, 16]. - -* **영구 객체 식별자 및 보유 경로(Retaining Path) 추적:** - V8은 힙의 모든 객체에 `@` 기호가 접두사로 붙은 영구적인 고유 식별자(ID)를 부여합니다 [12, 17, 18]. 이 ID는 객체가 세대 간에 승격되거나 압축(Compaction) 중 페이지 간에 이동하더라도 일정하게 유지되므로 여러 스냅샷에 걸쳐 동일 객체의 상태를 정확히 비교할 수 있습니다 [12, 18]. 할당 타임라인 로그에서 누수 객체를 식별한 후에는 DevTools의 'Retainers' 패널이나 `%DebugTrackRetainingPath(object)` 내부 함수를 사용하여 GC 루트(Root)로 거슬러 올라가는 참조 체인(Retaining Path)을 추적함으로써 메모리가 해제되지 않는 근본 원인을 파악할 수 있습니다 [19-22]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[가비지 컬렉션(Garbage Collection)]], [[V8 힙 공간(V8 Heap Spaces)]], [[메모리 누수(Memory Leak)]], [[힙 스냅샷(Heap Snapshot)]] -- **Projects/Contexts:** [[Chrome DevTools 메모리 프로파일링]], [[Node.js 성능 최적화 및 디버깅]] -- **Contradictions/Notes:** 소스에 관련 정보가 부족합니다. (본 주제에 관하여 제공된 소스들 내에서 명시적인 주장 대립이나 모순점은 발견되지 않았습니다.) - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/브라우저 메모리 할당 시점별 힙(Heap) 동작 상세 로그.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/브랜디드 타입(Branded Types).md b/10_Wiki/Topics/Programming & Language/브랜디드 타입(Branded Types).md deleted file mode 100644 index 05afc7bb..00000000 --- a/10_Wiki/Topics/Programming & Language/브랜디드 타입(Branded Types).md +++ /dev/null @@ -1,48 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D05100 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 브랜디드 타입(Branded Types)" ---- - -# [[브랜디드 타입(Branded Types)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **등장 배경 및 원리** - 타입스크립트는 객체나 값의 형태(구조)에 기반하여 호환성을 판단하는 구조적 타이핑을 사용합니다. 이는 매우 유연하지만, `string`이나 `number`와 같은 기본 타입으로 모든 것을 표현하려는 '기본 타입에의 집착(Primitive Obsession)' 문제를 야기할 수 있습니다. 브랜디드 타입은 컴파일 타임에만 존재하는 `__brand` 속성이나 `unique symbol`을 타입에 교집합으로 엮어 고유한 표식을 부여함으로써 이 문제를 해결합니다. - -* **주요 활용 사례** - * **브랜디드 문자열(Branded Strings)**: XSS 공격을 방지하기 위해 사용자 입력 문자열과 검증된(Sanitized) 문자열을 구분하거나, URL과 IP 주소를 구별할 때 사용됩니다. 특히 도메인 기반 설계(DDD)에서 데이터베이스의 서로 다른 엔티티 ID(예: `UserId`와 `OrderId`)를 엄격히 분리하여 엉뚱한 식별자가 전달되는 실수를 방지합니다. - * **브랜디드 숫자(Branded Numbers)**: 양수(Positive), 음수, 0이 아닌 수(NonZero)와 같이 특정한 특성을 가진 숫자를 표현하거나, USD와 EUR 같은 각기 다른 통화(Currency) 단위를 구분해 잘못된 연산을 방지하는 데 쓰입니다. - -* **브랜디드 값의 생성 및 검증** - 브랜디드 타입의 가상 속성은 런타임에는 존재하지 않으므로, 값을 생성할 때 타입스크립트에게 해당 값이 브랜디드 타입임을 단언해주어야 합니다. - * **`as` 단언(Type Assertions)**: 빠르고 간단하지만, 잘못된 값(예: `-1 as Positive`)을 단언할 위험이 있습니다. - * **타입 조건자(Type Predicates) 및 타입 단언 함수(Assertion Functions)**: 런타임 유효성 검사 로직을 거친 후 올바른 경우에만 브랜디드 타입으로 취급되도록 안전하게 반환합니다. - -* **브랜드의 강도(Variations)** - * **Weak Brand** (`type T = string & { __brand: 'T' }`): 기본 타입으로의 암시적 변환은 허용되어 사용이 쉽지만, 엄격함은 상대적으로 떨어집니다. - * **Strong Brand** (`type T = (string & { __brand: 'T' }) | { __brand: 'T' }`): 명시적인 캐스팅 없이는 기본 타입과 호환되지 않아 더 높은 수준의 격리를 보장합니다. - * **Super Brand**: 외부 유출을 철저히 차단하기 위해 기본 타입과의 연관성을 끊어내고 가상의 속성만으로 구성된 가장 엄격한 타입입니다. - -* **생태계 및 라이브러리 지원** - 브랜디드 패턴의 활용을 돕기 위해 `ts-brand`, `Effect TS`, `utility-types`, `taghiro` 등의 다양한 커뮤니티 라이브러리가 존재합니다. 또한 런타임 유효성 검사 라이브러리인 `Zod`의 `.brand()` 메서드와 결합하여 사용할 경우, 런타임 검증과 컴파일 타임의 브랜디드 타입을 완벽하게 연동할 수 있습니다. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[구조적 타이핑(Structural Typing)]], [[명목적 타이핑(Nominal Typing)]], [[기본 타입에의 집착(Primitive Obsession)]], [[타입 조건자(Type Predicates)]] -- **Projects/Contexts:** [[도메인 기반 설계(DDD)의 식별자 분리]], [[Zod 런타임 유효성 검사 통합]], [[Effect TS 및 ts-brand 라이브러리 활용]] -- **Contradictions/Notes:** 브랜디드 타입은 훌륭한 타입 안정성을 제공하지만, 코드의 개념적 복잡성을 증가시킨다는 단점이 있습니다. 소스 자료에서는 브랜디드 타입을 무분별하게 도입하기 전에 유니온(Unions) 타입, 열거형(Enums), 템플릿 리터럴 타입(Template Literal Types)과 같은 더 단순한 대안으로 문제를 해결할 수 있는지 먼저 고려할 것을 권장합니다. 또한, 서로 다른 브랜디드 숫자 타입 간의 이항 연산(더하기 등)을 수행할 때는 타입 에러가 발생하지 않으므로 사용 시 주의가 필요합니다. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/브랜디드 타입(Branded Types).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/브랜디드 타입.md b/10_Wiki/Topics/Programming & Language/브랜디드 타입.md deleted file mode 100644 index efceb0cd..00000000 --- a/10_Wiki/Topics/Programming & Language/브랜디드 타입.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -id: P-REINFORCE-AUTO-94A8AB -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 브랜디드 타입" ---- - -# [[브랜디드 타입]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **등장 배경 및 동작 원리**: TypeScript의 타입 시스템은 객체의 형태가 같으면 호환을 허용하는 구조적 타이핑(덕 타이핑)을 따르기 때문에, 완전히 다른 맥락의 원시 데이터(예: 이메일과 이름)가 혼용되는 실수를 잡기 어렵습니다 [5, 6]. 이를 막기 위해 컴파일 타임에만 존재하는 고유 속성(`__brand`, `unique symbol` 등)을 원래의 타입과 교집합(`&`)으로 묶어 비구조적(명목적) 타입 매칭과 유사한 효과를 얻습니다 [3, 7, 8]. -* **주요 활용 사례**: - * **수치 데이터 보호**: 일반 `number` 타입 대신, 양수만 허용하거나 특정 통화(EUR, GBP 등), 0에서 1 사이의 퍼센트 값만을 허용하는 브랜디드 타입을 선언하여 논리적 오류를 방지합니다 [9-11]. - * **문자열 제약 및 식별자**: XSS 공격을 방지하기 위해 검증이 완료된 문자열(Sanitized String)을 명시하거나, 데이터베이스의 여러 식별자(UserId, OrderId, CommentId 등)가 서로 잘못 할당되는 것을 막을 때 사용됩니다 [5, 12-14]. -* **생성과 브랜드 강도**: - * 타입 단언(`as`), 타입 가드(Type Predicates), 단언 함수(Assertion Functions) 등을 통해 런타임 검증 로직을 거친 후 일반 값을 브랜디드 타입으로 변환할 수 있습니다 [8, 15, 16]. - * `unique symbol`을 사용해 브랜드를 정의하면 모듈 간에도 고유성이 보장됩니다 [3]. 구현 방식에 따라 약한 브랜드(기본 타입으로 암시적 변환 허용), 강한 브랜드(명시적 캐스팅 필수), 슈퍼 브랜드(외부로의 변환 철저히 차단)로 분류하여 적용할 수 있습니다 [5, 17, 18]. -* **라이브러리와의 통합 및 대안**: - * `ts-brand`, `Effect TS` 같은 커뮤니티 라이브러리를 통해 브랜디드 타입 생성을 자동화하거나 유틸리티 함수를 사용할 수 있습니다 [19, 20]. 또한, 런타임 유효성 검사 라이브러리인 `Zod`는 `.brand()` 메서드를 지원하여 런타임 검증과 컴파일 타임의 브랜디드 타입을 통합할 수 있게 돕습니다 [21]. - * 브랜디드 타입은 시스템 복잡성을 증가시킬 수 있으므로, 제한된 값의 목록을 다룰 때는 유니온(Union) 타입, 열거형(Enum), 또는 템플릿 리터럴 타입 같은 대안이 더 적절할 수 있습니다 [22-25]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[구조적 타이핑]], [[명목적 타이핑]], [[Opaque Types]] -- **Projects/Contexts:** [[도메인 기반 설계(DDD)]], [[런타임 유효성 검사(Zod)]] -- **Contradictions/Notes:** TypeScript에서 공식적으로 브랜디드 타입(명목적 타이핑)을 내장 기능으로 지원하지는 않으며, 개발자가 `&` 연산자와 가상 속성을 이용해 우회적으로 구현하는 방식입니다 [6, 8]. 또한, 이 기법은 코드의 정밀성을 높여주지만 복잡성 역시 증가시키므로, 실제 이점이 단점을 상회하는지 신중히 판단하고 대안(예: 단순 Union이나 Enum)을 사용하는 방법도 함께 고려해야 합니다 [22, 26]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/브랜디드 타입.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/비트 세이버(Beat Saber) VR 엑서게임 연구.md b/10_Wiki/Topics/Programming & Language/비트 세이버(Beat Saber) VR 엑서게임 연구.md deleted file mode 100644 index 2569fac8..00000000 --- a/10_Wiki/Topics/Programming & Language/비트 세이버(Beat Saber) VR 엑서게임 연구.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6BEB16 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 비트 세이버(Beat Saber) VR 엑서게임 연구" ---- - -# [[비트 세이버(Beat Saber) VR 엑서게임 연구]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **VR 엑서게임과 비트 세이버의 이점:** - 엑서게임은 아동과 성인 모두의 좌식 행동을 줄이고 신체 활동을 장려하는 유효한 수단입니다 [2]. 특히 '비트 세이버'와 같은 VR 엑서게임은 사실적인 3D 환경과 신체 추적 기능을 제공하여 사용자가 게임의 목표와 서사에 깊이 몰입하게 하고, 운동으로 인한 신체적 피로를 분산시키는 장점이 있습니다 [3]. 가상 현실 연구소(VR Health Institute)의 평가에 따르면, 비트 세이버 플레이 시 소모되는 에너지는 현실 세계에서 테니스를 치는 것과 유사한 수준입니다 [1]. - -- **시각적 및 인지적 후유증 (Vision & Cognition):** - 36명의 참가자를 대상으로 HTC Vive Pro HMD를 사용하여 연구를 진행한 결과, 시각의 조절(Accommodation)과 수렴(Convergence) 지표는 VR 플레이 직후에 변화를 보였습니다 [5, 8, 9]. 하지만 노출 시간(10분 또는 50분)에 관계없이 40분의 휴식 후에는 기준치로 회복되었습니다 [5]. 인지적인 측면에서는 의사 결정 속도 등 반응 시간에 부정적인 영향이나 우려 사항이 나타나지 않았으며, 오히려 10분 노출 직후에는 운동 속도(Movement speed)가 약간 빨라지기도 했습니다 [10]. - -- **노출 시간에 따른 VR 멀미 발생 (VR Sickness):** - 시뮬레이터 멀미 설문지(SSQ)로 측정한 결과, 참가자들의 VR 멀미 증상(메스꺼움, 안구 운동 장애, 방향 감각 상실 등)은 게임 플레이 직후 유의미하게 상승했습니다 [11]. 특히 50분(긴 시간) 동안 노출된 경우, 10분(짧은 시간) 노출에 비해 플레이 직후 더 심각한 멀미 증상을 겪었습니다 [11]. - -- **증상 회복과 멀미 예측:** - 집단 평균적으로는 40분 후에 모든 증상이 기준치로 돌아왔으나, 개별적으로 보면 50분 플레이 후 40분이 지난 늦은 시점(Late test period)에서도 약 14%(7명 중 1명 꼴)의 참가자는 여전히 심각한 멀미 수준을 보고했습니다 [6]. 또한 짧은 노출(10분) 후에 높은 수준의 멀미를 경험한 참가자는 긴 노출(50분)을 할 경우에도 비슷한 수준이거나 더 나쁜 증상을 경험할 가능성이 높았습니다 [12]. - -- **안전한 사용을 위한 권고:** - 본 연구는 VR로 인해 유발된 멀미 증상이 심각할 경우 사용자의 일상 활동에 지장을 줄 수 있음을 시사합니다 [6]. 따라서 장시간 VR 노출에 앞서 짧은 세션을 미리 시도하여 멀미 민감도를 확인할 것이 권장됩니다 [7]. 또한, VR 종료 후 운전과 같이 부상 위험이 있는 활동을 재개하기 전에는 멀미 증상이 가라앉을 수 있도록 통상 40분 이상의 충분한 대기 시간을 갖는 것이 필요합니다 [7]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[VR 멀미(VR sickness)]], [[엑서게임(Exergaming)]], [[시뮬레이터 멀미 설문지(SSQ)]], [[몰입(Flow)]], [[수렴-조절 불일치(Vergence-accommodation conflict)]] -- **Projects/Contexts:** [[비트 세이버 VR 엑서게임 후유증 실험]] -- **Contradictions/Notes:** 소스는 집단 평균적으로 볼 때 VR 종료 40분 후 멀미 증상이 기저치로 돌아온다고 밝히고 있지만, 개별 데이터에서는 50분 노출자 중 약 14%가 40분 후에도 여전히 심각한 수준의 멀미(High SSQ score)를 겪었다고 모순된 양상을 지적합니다. 따라서 그룹 평균 회복력이 모든 개인의 안전을 보장하는 지표로 쓰일 수는 없음에 주의해야 합니다 [6]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/비트 세이버(Beat Saber) VR 엑서게임 연구.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/사회 학습 이론.md b/10_Wiki/Topics/Programming & Language/사회 학습 이론.md deleted file mode 100644 index e8dcb4ba..00000000 --- a/10_Wiki/Topics/Programming & Language/사회 학습 이론.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D860B8 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 사회 학습 이론" ---- - -# [[사회 학습 이론]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/사회 학습 이론.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/사회학습이론.md b/10_Wiki/Topics/Programming & Language/사회학습이론.md deleted file mode 100644 index a1fa5607..00000000 --- a/10_Wiki/Topics/Programming & Language/사회학습이론.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4EE4B7 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 사회학습이론" ---- - -# [[사회학습이론]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/사회학습이론.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/새로운 공간(New Space).md b/10_Wiki/Topics/Programming & Language/새로운 공간(New Space).md deleted file mode 100644 index ca9d103d..00000000 --- a/10_Wiki/Topics/Programming & Language/새로운 공간(New Space).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B1F49A -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 새로운 공간(New Space)" ---- - -# [[새로운 공간(New Space)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 새로운 공간(New Space)은 V8 엔진의 힙(Heap) 메모리 구조에서 대부분의 새로운 객체가 최초로 할당되는 작고 빠른 영역입니다 [1, 2]. '젊은 세대(Young Generation)'라고도 불리며, 대부분의 객체가 생성 후 곧바로 소멸한다는 '세대 가설(Generational Hypothesis)'을 바탕으로 설계되었습니다 [3-5]. 이 공간은 다른 힙 공간들과 독립적으로 매우 빠르고 빈번하게 가비지 컬렉션(Garbage Collection)이 수행되도록 최적화되어 있습니다 [1, 6]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[스캐빈저(Scavenger) / 마이너 GC]], [[오래된 공간(Old Space)]], [[To-Space와 From-Space]], [[쓰기 장벽(Write Barrier)]] -- **Projects/Contexts:** [[V8 가비지 컬렉션(Garbage Collection)]], [[브라우저 메모리 관리 및 최적화]] -- **Contradictions/Notes:** 소스 [2]에서는 새로운 공간의 크기를 휴리스틱에 따라 1~8MB로 설명하지만, 소스 [7]에서는 1~64MB로 언급합니다. 이는 V8 엔진의 버전이나 실행 환경, 동적 메모리 할당 정책에 따라 새로운 공간의 최대 한도가 다르게 적용될 수 있음을 보여줍니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/새로운 공간(New Space).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/생물학적 학습 이론.md b/10_Wiki/Topics/Programming & Language/생물학적 학습 이론.md deleted file mode 100644 index 8a05acc4..00000000 --- a/10_Wiki/Topics/Programming & Language/생물학적 학습 이론.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A4487C -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 생물학적 학습 이론" ---- - -# [[생물학적 학습 이론]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/생물학적 학습 이론.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/서버리스 컴퓨팅(Serverless Computing).md b/10_Wiki/Topics/Programming & Language/서버리스 컴퓨팅(Serverless Computing).md deleted file mode 100644 index 241f9e76..00000000 --- a/10_Wiki/Topics/Programming & Language/서버리스 컴퓨팅(Serverless Computing).md +++ /dev/null @@ -1,33 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DE9274 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 서버리스 컴퓨팅(Serverless Computing)" ---- - -# [[서버리스 컴퓨팅(Serverless Computing)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **서버리스 플랫폼의 작동 방식:** Google Cloud Run과 같은 서버리스 플랫폼은 개발자가 상태가 없는(Stateless) 컨테이너를 실행할 수 있게 하며, 트래픽에 기반하여 자동으로 리소스를 스케일업 하거나 0으로 스케일다운합니다 [1]. 또한, 최신 데이터 웨어하우스와 레이크하우스 아키텍처(예: Snowflake, Google BigQuery 등) 역시 서버리스 기반의 대규모 병렬 처리를 제공하여 컴퓨팅과 스토리지를 분리하고 독립적인 자원 확장을 지원합니다 [3]. -* **마이크로서비스 및 워크플로우와의 결합:** 넷플릭스의 코스모스(Cosmos) 플랫폼과 같은 시스템은 마이크로서비스의 장점을 비동기 워크플로우 및 서버리스 함수와 결합하여 사용합니다 [4]. 이 아키텍처에서 서버리스 함수(예: Stratum 계층)는 도메인별 알고리즘을 구동하며, 워크플로우 규칙에 따라 오케스트레이션되어 연산 집약적이고 상태가 없는 작업들을 수행합니다 [2, 5]. -* **확장성 및 지연 시간(Latency) 관리:** 서버리스 함수는 자체적인 바이너리 종속성을 포함한 도커(Docker) 이미지로 패키징되며, 큐의 크기에 따라 수만 개의 컨테이너에서 병렬로 실행될 수 있습니다 [2]. 서버리스 환경에서 발생하는 초기 구동 지연 시간을 줄이기 위해, 자원을 미리 요청하는 '웜 캐퍼시티(Warm capacity)', 시작 비용을 여러 번의 호출에 분산시키는 '마이크로 배치(Micro-batches)', 그리고 자원이 부족할 때 중요한 작업을 먼저 처리하는 '우선순위(Priority)' 할당 등의 전략이 활용됩니다 [6]. -* **비용 및 자원 스케줄링 최적화:** 서버리스 계층은 유연한 자원 스케줄링을 통해 처리량(Throughput)에 민감한 워크로드에 대해 "기회주의적(opportunistic)" 컴퓨팅 자원을 활용합니다. 만약 서버리스 함수가 즉각적인 처리 대신 최대 1시간 정도 대기하여 실행되어도 괜찮다면, 호출 비용을 크게 낮추는 방식으로 자원을 최적화할 수 있습니다 [7]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[클라우드 네이티브 아키텍처(Cloud-Native Architecture)]], [[마이크로서비스 아키텍처(Microservices Architecture)]], [[비동기 워크플로우(Asynchronous Workflows)]] -- **Projects/Contexts:** [[구글 클라우드 런(Google Cloud Run)]], [[넷플릭스 코스모스(Netflix Cosmos)]] -- **Contradictions/Notes:** 소스에 관련 정보가 부족합니다. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/서버리스 컴퓨팅(Serverless Computing).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/선언 병합 (Declaration Merging).md b/10_Wiki/Topics/Programming & Language/선언 병합 (Declaration Merging).md deleted file mode 100644 index 24a49fe2..00000000 --- a/10_Wiki/Topics/Programming & Language/선언 병합 (Declaration Merging).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6C2D93 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 선언 병합 (Declaration Merging)" ---- - -# [[선언 병합 (Declaration Merging)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 선언 병합(Declaration Merging)은 TypeScript에서 동일한 이름을 가진 인터페이스를 여러 번 선언할 경우, 컴파일러가 이를 자동으로 합쳐서 하나의 인터페이스로 정의해 주는 고유한 기능입니다 [1, 2]. 이 기능은 타입 별칭(Type Alias)에는 존재하지 않으며, 주로 라이브러리 제작자가 사용자에게 타입 확장 지점을 제공하기 위해 사용됩니다 [2-4]. 그러나 의도치 않은 타입 병합으로 인한 오류 발생 가능성 때문에 프로젝트 성격에 따라 사용을 지양하는 경우도 존재합니다 [5-7]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[인터페이스 (Interface)]], [[타입 별칭 (Type Alias)]] -- **Projects/Contexts:** [[TypeScript 라이브러리 타입 확장]], [[철벽 수비대 인터페이스 설계 전략]] -- **Contradictions/Notes:** 소스 [2-4]는 라이브러리 작성 시 소비자에게 타입 확장 지점을 제공한다는 측면에서 선언 병합의 강력한 유용성을 주장하지만, 소스 [5-7]은 개발자의 실수로 인한 의도치 않은 병합의 위험성을 지적하며 선언 병합 기능을 피하고 엄격한 에러를 뱉는 타입 별칭(Type Alias)을 사용하는 것이 바람직하다고 반대합니다. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/선언 병합 (Declaration Merging).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/성장 마인드셋 (Growth Mindset).md b/10_Wiki/Topics/Programming & Language/성장 마인드셋 (Growth Mindset).md deleted file mode 100644 index 794e0855..00000000 --- a/10_Wiki/Topics/Programming & Language/성장 마인드셋 (Growth Mindset).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-56F98F -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 성장 마인드셋 (Growth Mindset)" ---- - -# [[성장 마인드셋 (Growth Mindset)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/성장 마인드셋 (Growth Mindset).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/성장 마인드셋(Growth Mindset).md b/10_Wiki/Topics/Programming & Language/성장 마인드셋(Growth Mindset).md deleted file mode 100644 index b7ce76f9..00000000 --- a/10_Wiki/Topics/Programming & Language/성장 마인드셋(Growth Mindset).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A73E81 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 성장 마인드셋(Growth Mindset)" ---- - -# [[성장 마인드셋(Growth Mindset)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/성장 마인드셋(Growth Mindset).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/세대별 가설(Generational Hypothesis).md b/10_Wiki/Topics/Programming & Language/세대별 가설(Generational Hypothesis).md deleted file mode 100644 index a37d86e4..00000000 --- a/10_Wiki/Topics/Programming & Language/세대별 가설(Generational Hypothesis).md +++ /dev/null @@ -1,35 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A34D6C -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 세대별 가설(Generational Hypothesis)" ---- - -# [[세대별 가설(Generational Hypothesis)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **핵심 개념**: 프로그램 내에서 대다수의 객체는 수명이 매우 짧고, 오직 극소수의 객체만이 오래 살아남는다는 것을 의미합니다 [2, 3]. 즉, 새롭게 할당된 객체는 GC의 관점에서 곧바로 가비지(쓰레기)가 될 확률이 높습니다 [2]. -- **V8 메모리 구조에의 적용**: V8은 세대별 가설을 이용하여 힙 메모리를 '새로운 공간(New Space / Young Generation)'과 '오래된 공간(Old Space / Old Generation)' 두 세대로 분리합니다 [1-3]. -- **세대별 가비지 컬렉터 최적화**: - - **젊은 세대 (New Space)**: 단기 생존 객체는 새로운 객체가 할당되는 젊은 세대 공간에 배치됩니다 [4]. 객체들이 '일찍 죽을 것'으로 예상되므로, V8 엔진은 이 영역에 대해 가볍고 빈번한 가비지 컬렉션(Scavenge 또는 Minor GC)을 수행하여 메모리를 신속하게 회수합니다 [1, 4]. - - **늙은 세대 (Old Space)**: 여러 번의 마이너 가비지 컬렉션(Minor GC) 주기를 견뎌내고 살아남은 소수의 객체만 늙은 세대 공간으로 승격(promotion)됩니다 [3, 4]. 이 영역은 객체가 오래 지속될 것으로 예상되므로, 비용이 더 많이 드는 전역 가비지 컬렉션(Major GC)을 더 드물게 실행하도록 설계되었습니다 [1, 4]. -- **효율성 개선**: GC 과정에서 살아남은 객체만을 이동(copy)시키는 방식을 사용함으로써, 가비지 컬렉션에 드는 비용은 전체 메모리 할당량이 아닌 '생존 객체 수'에 비례하게 됩니다 [2]. 이는 대다수의 할당된 객체가 암묵적으로 가비지로 처리됨을 의미하며, 결과적으로 메모리 관리 효율성이 크게 향상됩니다 [2]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[가비지 컬렉션(Garbage Collection)]], [[V8 엔진(V8 Engine)]], [[젊은 세대(Young Generation/New Space)]], [[늙은 세대(Old Generation/Old Space)]], [[스캐빈저(Scavenger/Minor GC)]] -- **Projects/Contexts:** [[V8 자바스크립트 엔진 메모리 관리(V8 JavaScript Engine Memory Management)]], [[오리노코 가비지 컬렉터(Orinoco Garbage Collector)]] -- **Contradictions/Notes:** 소스에 제공된 정보들 사이에서 모순은 발견되지 않으며, 모든 소스가 공통으로 세대별 가설이 V8의 메모리 공간 분할 및 가비지 컬렉션 효율화의 핵심 이론적 기반이라고 설명하고 있습니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/세대별 가설(Generational Hypothesis).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/습관 교정 프로그램.md b/10_Wiki/Topics/Programming & Language/습관 교정 프로그램.md deleted file mode 100644 index db2c2082..00000000 --- a/10_Wiki/Topics/Programming & Language/습관 교정 프로그램.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-240BA8 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 습관 교정 프로그램" ---- - -# [[습관 교정 프로그램]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/습관 교정 프로그램.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/시맨틱 웹 (Semantic Web).md b/10_Wiki/Topics/Programming & Language/시맨틱 웹 (Semantic Web).md deleted file mode 100644 index d5b3e5ab..00000000 --- a/10_Wiki/Topics/Programming & Language/시맨틱 웹 (Semantic Web).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A9C2AC -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 시맨틱 웹 (Semantic Web)" ---- - -# [[시맨틱 웹 (Semantic Web)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/시맨틱 웹 (Semantic Web).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/시스템 다이내믹스 (System Dynamics).md b/10_Wiki/Topics/Programming & Language/시스템 다이내믹스 (System Dynamics).md deleted file mode 100644 index a21dadbd..00000000 --- a/10_Wiki/Topics/Programming & Language/시스템 다이내믹스 (System Dynamics).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6FAAF2 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 시스템 다이내믹스 (System Dynamics)" ---- - -# [[시스템 다이내믹스 (System Dynamics)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/시스템 다이내믹스 (System Dynamics).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/식별 가능한 유니온 (Discriminated Unions).md b/10_Wiki/Topics/Programming & Language/식별 가능한 유니온 (Discriminated Unions).md deleted file mode 100644 index f50e5a0a..00000000 --- a/10_Wiki/Topics/Programming & Language/식별 가능한 유니온 (Discriminated Unions).md +++ /dev/null @@ -1,33 +0,0 @@ ---- -id: P-REINFORCE-AUTO-EE02DB -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 식별 가능한 유니온 (Discriminated Unions)" ---- - -# [[식별 가능한 유니온 (Discriminated Unions)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **작동 원리와 타입 좁히기 (Type Narrowing):** 태그된 유니온(Tagged Union)이라고도 불리는 식별 가능한 유니온은 여러 데이터 형태 중 하나를 리터럴 타입의 공통 속성(예: `kind`, `type`, `status` 등)으로 구분한다 [1, 3, 4, 7]. 컴파일러는 `switch`나 `if` 조건문 등에서 이 식별자 속성을 확인하여 해당 블록 안에서 객체의 타입을 안전하고 자동적으로 좁혀주며, 개발자는 별도의 런타임 체크 제약 없이도 자동 완성과 타입 안전성을 극대화할 수 있다 [3, 4, 8, 9]. -* **완전성 검사 (Exhaustiveness Checking)를 통한 철벽 방어:** 이 패턴의 가장 강력한 이점 중 하나는 컴파일러가 모든 가능한 케이스의 처리 여부를 검증하는 완전성 검사 기능이다 [3, 4, 9, 10]. `never` 타입을 활용해 기본(default) 분기 처리를 구성하면, 유니온에 새로운 상태 멤버가 추가되었으나 이를 처리하는 로직을 누락했을 때 즉각적인 컴파일 에러를 발생시킨다 [4, 9-11]. 이는 시스템 확장에 따른 사이드 이펙트를 차단하는 엄격한 규율로 작용한다 [4]. -* **잘못된 상태 표현의 방지 (Making Invalid States Impossible):** 독립적이고 호환 불가능한 프로퍼티들을 무분별하게 섞어 쓰는 것을 방지하고, 특정 상태에만 유효한 속성 조합만을 허용한다 [1, 5, 12]. 이러한 특성 덕분에 API 응답 처리, 복잡한 폼(Form) 핸들링, Redux 스타일의 리듀서, 라우터 상태 관리 등 명확한 상태 전이(State Machine)가 필요한 다양한 실제 환경에서 유효하지 않은 상태가 아예 생성될 수 없도록 막아준다 [5, 6, 13, 14]. -* **모범 사례와 활용시 주의점:** 식별 가능한 유니온을 구축할 때는 항상 식별자를 포함하고 식별자 속성을 일관되게 리터럴 타입으로 유지해야 한다 [14, 15]. 식별자를 빼먹거나 선택적(Optional)으로 만드는 것은 흔한 실수이므로 피해야 한다 [16, 17]. 또한 외부 데이터나 설정 파일에서 들어오는 값에 대응할 때는 컴파일 타임 검사에만 의존할 수 없으므로 Zod 등과 같은 런타임 검증 라이브러리와 결합해 방어력을 높이는 것이 좋다 [8, 18, 19]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[유니온 타입 (Union Types)]], [[타입 좁히기 (Type Narrowing)]], [[완전성 검사 (Exhaustiveness Checking)]], [[네버 타입 (never type)]] -- **Projects/Contexts:** [[상태 머신 (State Machine) 모델링 및 Redux 액션/리듀서 설계]], [[API 응답 및 에러 핸들링 아키텍처]] -- **Contradictions/Notes:** 소스에 따르면 식별 가능한 유니온은 런타임 오버헤드가 전혀 없는 강력한 컴파일 타임 기능이지만, 너무 깊게 중첩된(Deep nesting) 식별 가능한 유니온을 남용할 경우 에러 메시지를 읽기 어렵게 만들고 거대한 유니온 타입으로 인해 TypeScript 컴파일 속도가 저하될 수 있다는 단점이 있다 [20]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/식별 가능한 유니온 (Discriminated Unions).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/식별 가능한 유니온(Discriminated Unions).md b/10_Wiki/Topics/Programming & Language/식별 가능한 유니온(Discriminated Unions).md deleted file mode 100644 index 95acd38e..00000000 --- a/10_Wiki/Topics/Programming & Language/식별 가능한 유니온(Discriminated Unions).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0228C6 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 식별 가능한 유니온(Discriminated Unions)" ---- - -# [[식별 가능한 유니온(Discriminated Unions)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 식별 가능한 유니온(Discriminated Unions, 태그된 유니온)은 여러 다른 형태의 데이터를 구별하기 위해 공통된 리터럴 타입 속성(판별자)을 사용하는 TypeScript 패턴이다 [1-3]. 이 패턴은 컴파일러가 각 조건 블록에서 타입을 자동으로 좁혀(Narrowing) 유효하지 않은 상태의 생성을 원천적으로 방지하고 타입 안정성을 보장할 수 있게 한다 [4, 5]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[유니온 타입(Union Types)]], [[타입 좁히기(Type Narrowing)]], [[완전성 검사(Exhaustiveness Checking)]], [[never 타입]] -- **Projects/Contexts:** [[상태 머신(State Machine) 설계]], [[React 상태 관리 및 API 응답 처리]] -- **Contradictions/Notes:** 컴파일 시점의 정적 타이핑만 제공하므로 외부에서 유입되는 API 데이터나 설정 파일의 정합성을 보장하려면 런타임 검증 라이브러리(예: Zod)와 함께 사용하는 것이 권장된다 [18, 19]. 또한, 복잡한 분기 처리를 돕기 위해 `ts-pattern`과 같은 외부 라이브러리를 도입할 수 있으나, 이는 기존의 switch나 if/else 문에 기반한 식별 가능한 유니온보다 연산 성능이 떨어질 수 있으므로 성능과 가독성 사이의 트레이드오프를 고려해야 한다 [11, 20, 21]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/식별 가능한 유니온(Discriminated Unions).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/신경 가소성 (Neuroplasticity).md b/10_Wiki/Topics/Programming & Language/신경 가소성 (Neuroplasticity).md deleted file mode 100644 index 6db0592c..00000000 --- a/10_Wiki/Topics/Programming & Language/신경 가소성 (Neuroplasticity).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-871BD5 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 신경 가소성 (Neuroplasticity)" ---- - -# [[신경 가소성 (Neuroplasticity)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/신경 가소성 (Neuroplasticity).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/심리적 계약 (Psychological Contract).md b/10_Wiki/Topics/Programming & Language/심리적 계약 (Psychological Contract).md deleted file mode 100644 index 5dc8183a..00000000 --- a/10_Wiki/Topics/Programming & Language/심리적 계약 (Psychological Contract).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-53F659 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 심리적 계약 (Psychological Contract)" ---- - -# [[심리적 계약 (Psychological Contract)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/심리적 계약 (Psychological Contract).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/심리적 안전감 (Psychological Safety).md b/10_Wiki/Topics/Programming & Language/심리적 안전감 (Psychological Safety).md deleted file mode 100644 index 05b208b6..00000000 --- a/10_Wiki/Topics/Programming & Language/심리적 안전감 (Psychological Safety).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6A93C9 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 심리적 안전감 (Psychological Safety)" ---- - -# [[심리적 안전감 (Psychological Safety)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/심리적 안전감 (Psychological Safety).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/애자일 방법론 (Agile Methodology).md b/10_Wiki/Topics/Programming & Language/애자일 방법론 (Agile Methodology).md deleted file mode 100644 index 5012acdd..00000000 --- a/10_Wiki/Topics/Programming & Language/애자일 방법론 (Agile Methodology).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-3E4349 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 애자일 방법론 (Agile Methodology)" ---- - -# [[애자일 방법론 (Agile Methodology)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/애자일 방법론 (Agile Methodology).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/양가감정(Ambivalence).md b/10_Wiki/Topics/Programming & Language/양가감정(Ambivalence).md deleted file mode 100644 index 7838c22e..00000000 --- a/10_Wiki/Topics/Programming & Language/양가감정(Ambivalence).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0A598A -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 양가감정(Ambivalence)" ---- - -# [[양가감정(Ambivalence)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/양가감정(Ambivalence).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/에르고딕 문학(Ergodic Literature).md b/10_Wiki/Topics/Programming & Language/에르고딕 문학(Ergodic Literature).md deleted file mode 100644 index 1243cfb4..00000000 --- a/10_Wiki/Topics/Programming & Language/에르고딕 문학(Ergodic Literature).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A5FDD2 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 에르고딕 문학(Ergodic Literature)" ---- - -# [[에르고딕 문학(Ergodic Literature)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/에르고딕 문학(Ergodic Literature).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/오탐 (False Positive).md b/10_Wiki/Topics/Programming & Language/오탐 (False Positive).md deleted file mode 100644 index c056b2ac..00000000 --- a/10_Wiki/Topics/Programming & Language/오탐 (False Positive).md +++ /dev/null @@ -1,37 +0,0 @@ ---- -id: P-REINFORCE-AUTO-86DCBE -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 오탐 (False Positive)" ---- - -# [[오탐 (False Positive)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **오탐의 발생 원인:** - 자동화된 도구는 소스 코드를 해석할 때 사전에 정의된 특정 패턴과 가정에 의존합니다 [4, 5]. 기술적으로 파격적이지만 특정 문제에 가장 적합한 코드이거나, 사용자 입력 검증이 다른 파일이나 프론트엔드/백엔드 계층에서 이미 안전하게 처리된 경우에도 도구가 이러한 문맥을 이해하지 못하면 이를 보안 문제로 잘못 식별하여 오탐을 발생시킵니다 [1, 5]. -* **오탐이 미치는 악영향 (오탐의 역설):** - 자동화된 정적 분석 도구들은 상황에 따라 30~60%, 레거시 도구의 경우 최대 50~80%에 달하는 높은 오탐률을 보이기도 합니다 [3, 5]. 이처럼 끊임없이 발생하는 오탐은 개발자들이 실제로는 버그가 아닌 문제를 분류하는 데 소중한 시간을 낭비하게 만들고 심각한 '경고 피로(Alert Fatigue)'를 유발합니다 [1-3]. 결과적으로 알림이 오탐으로 오염되면 개발자들은 점차 도구의 출력을 무시하거나 일괄 해제(batch-dismiss)하게 되며, 이로 인해 실제로 존재하는 치명적인 취약점마저 놓치게 되는 '오탐의 역설(False Positive Paradox)'에 빠질 위험이 큽니다 [6]. -* **오탐 해결 및 완화 전략:** - * **AI 및 머신러닝의 활용:** 최근의 AI 네이티브 SAST 도구들은 대규모 언어 모델(LLM)과 의미론적 분석을 결합하여 코드의 문맥을 깊이 이해함으로써 노이즈를 필터링하고 오탐을 대폭 줄이고 있습니다 [7-10]. - * **지속적인 피드백 루프와 튜닝:** 오탐이 자주 나타나는 패턴이 있다면, 도구의 임계값을 조정하고 조직의 환경에 맞게 규칙을 튜닝(tuning)하는 지속적인 관리가 필수적입니다 [6, 11]. - * **하이브리드 코드 리뷰 도입:** 자동화 도구를 일차적 방어선으로 사용하여 명백한 문법 오류나 알려진 취약점을 빠르게 잡아내고, 사람이 개입하는 수동 리뷰를 통해 문맥과 비즈니스 로직을 면밀히 판단하여 오탐을 걷어내는 방식이 현대적인 모범 사례로 권장됩니다 [11, 12]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[정적 애플리케이션 보안 테스트 (SAST)]], [[경고 피로 (Alert Fatigue)]], [[하이브리드 코드 리뷰]] -- **Projects/Contexts:** [[Snyk Code]], [[Corgea]], [[Semgrep Assistant]] -- **Contradictions/Notes:** 소스에서는 일반적인 자동화 정적 분석 도구가 30~60% 혹은 최대 80%에 이르는 높은 오탐률을 보이며 치명적인 경고 피로를 유발한다고 지적하지만 [3, 5], 동시에 벤더사의 보고에 따르면 특정 최신 AI 네이티브 SAST 도구(예: Veracode, Corgea)는 오탐률을 1.1% 미만 또는 5% 미만 수준으로 극적으로 낮출 수 있다고 주장하여 AI 기술 발전에 따른 상반된 오탐 관리 성능을 보여줍니다 [13]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/오탐 (False Positive).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/완전성 검사 (Exhaustiveness Checking).md b/10_Wiki/Topics/Programming & Language/완전성 검사 (Exhaustiveness Checking).md deleted file mode 100644 index d5aec6bb..00000000 --- a/10_Wiki/Topics/Programming & Language/완전성 검사 (Exhaustiveness Checking).md +++ /dev/null @@ -1,33 +0,0 @@ ---- -id: P-REINFORCE-AUTO-98C2AC -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 완전성 검사 (Exhaustiveness Checking)" ---- - -# [[완전성 검사 (Exhaustiveness Checking)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **개념 및 필요성:** 완전성 검사는 시스템이 확장되거나 타입이 변경될 때 발생하는 부작용을 원천 차단하는 방어 기제입니다 [3]. 예를 들어, 특정 유니온 타입에 새로운 형태(예: 새로운 도형 타입, 네트워크 상태, API 응답 등)가 추가되었을 때, 기존의 분기문(`switch` 등)에서 이를 다루지 않으면 컴파일 타임 에러를 발생시켜 누락 사실을 즉각적으로 알려줍니다 [1, 2, 4]. -- **`never` 타입을 활용한 검증 기법:** 가장 강력하고 명시적인 완전성 검사 방법은 타입스크립트의 `never` 타입을 활용하는 것입니다. 분기문에서 유니온의 모든 가능한 케이스를 처리한 후, 남은 값을 `default` 블록이나 `assertNever`와 같은 검증 함수로 전달하여 `never` 타입에 할당하도록 작성합니다 [3, 5]. 만약 개발자가 처리하지 않은 케이스가 남아있다면, 해당 변수는 `never`가 아닌 실제 할당 가능한 타입을 가지게 되므로 "Type 'X' is not assignable to type 'never'"와 같은 컴파일 에러를 즉시 발생시킵니다 [2, 3, 5]. -- **반환 타입 지정을 통한 검증:** `strictNullChecks` 옵션을 활성화하고 함수의 반환 타입을 명시적으로 지정하는 방법도 있습니다 [6]. 모든 `switch` 케이스를 처리하지 않고 빠져나오는 경로가 생긴다면, 컴파일러는 해당 함수가 `undefined`를 반환할 수 있다고 인지하여 명시된 반환 타입과의 불일치 에러를 보고합니다 [6]. -- **라이브러리 및 고급 문법 활용 (`ts-pattern`, `satisfies`):** `ts-pattern`과 같은 패턴 매칭 라이브러리가 제공하는 `.exhaustive()` 메서드를 사용하면, 처리되지 않은 모든 경우를 타입스크립트 컴파일러가 감지하고 강제하도록 구현할 수 있습니다 [7, 8]. 또한, 분기문의 마지막에 `satisfies never` 키워드를 사용하여 처리되지 않은 다른 케이스가 없음을 보장할 수 있습니다 [9]. 이러한 패턴들은 '불가능한 상태'를 코드상에서 표현하지 못하게 만듭니다 [3]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[식별 가능한 유니온 (Discriminated Unions)]], [[never 타입]], [[ts-pattern]], [[satisfies 연산자]] -- **Projects/Contexts:** [[타입스크립트 상태 관리 및 분기 처리 설계]] -- **Contradictions/Notes:** 소스에서는 완전성 검사의 효과를 긍정적으로 평가하지만, `ts-pattern` 라이브러리의 `.exhaustive()` 등을 활용한 고도의 추상화는 기본 제어 구조(`if/else`, `switch`)보다 성능이 현저히 떨어지고 오버엔지니어링이 될 수 있음을 경계합니다. 따라서 단순한 조건의 경우, 기존 방식과 `satisfies never` 등을 조합하여 가독성을 높이고 안전하게 분기를 처리하는 것이 더 나을 수 있다고 조언합니다 [7-10]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/완전성 검사 (Exhaustiveness Checking).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/유기적 통합 이론 (Organismic Integration Theory).md b/10_Wiki/Topics/Programming & Language/유기적 통합 이론 (Organismic Integration Theory).md deleted file mode 100644 index 16373d9b..00000000 --- a/10_Wiki/Topics/Programming & Language/유기적 통합 이론 (Organismic Integration Theory).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-ED2A29 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 유기적 통합 이론 (Organismic Integration Theory)" ---- - -# [[유기적 통합 이론 (Organismic Integration Theory)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/유기적 통합 이론 (Organismic Integration Theory).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/유능감 및 자율성 욕구.md b/10_Wiki/Topics/Programming & Language/유능감 및 자율성 욕구.md deleted file mode 100644 index c8b2f593..00000000 --- a/10_Wiki/Topics/Programming & Language/유능감 및 자율성 욕구.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E8E212 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 유능감 및 자율성 욕구" ---- - -# [[유능감 및 자율성 욕구]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/유능감 및 자율성 욕구.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/유니언 타입 식별 및 상태 분기 처리.md b/10_Wiki/Topics/Programming & Language/유니언 타입 식별 및 상태 분기 처리.md deleted file mode 100644 index 95322eca..00000000 --- a/10_Wiki/Topics/Programming & Language/유니언 타입 식별 및 상태 분기 처리.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2547B3 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 유니언 타입 식별 및 상태 분기 처리" ---- - -# [[유니언 타입 식별 및 상태 분기 처리]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **식별 가능한 유니언의 구조:** - 식별 가능한 유니언은 여러 타입이 단일 공유 필드(예: `kind`, `type`, `state`)를 가지며, 이 필드가 리터럴 타입으로 지정된 형태를 띱니다 [2-4, 6]. 이 공통 식별자는 TypeScript 컴파일러와 개발자에게 현재 다루고 있는 유니언의 특정 브랜치가 무엇인지 알려주는 라벨 역할을 합니다 [4, 6]. - -- **상태 분기 처리 및 타입 좁히기 (Narrowing):** - 공통 속성의 값을 `switch` 문 등을 통해 비교하면, TypeScript는 런타임에 어떤 타입이 사용되고 있는지 파악하고 해당 블록 내에서 객체의 타입을 안전하게 좁혀줍니다 [6, 9]. 이 패턴은 API 응답 처리, Redux 스타일의 리듀서, 다단계 폼, 라우터 상태 관리 및 상태 머신(State Machine)을 모델링할 때 매우 유용하게 쓰입니다 [10-12]. - -- **완전성 검사 (Exhaustiveness Checking)와 `never` 타입:** - 유니언 타입을 처리할 때 가장 큰 장점 중 하나는 컴파일러를 통한 완전성 검사입니다 [6, 8]. 만약 유니언에 새로운 타입 변형(Variant)이 추가되었으나 분기문에서 이를 처리하지 않았다면, 컴파일 에러를 발생시켜 버그를 방지합니다 [6, 8]. 이는 주로 모든 케이스가 처리된 후 남은 기본(default) 케이스의 변수를 `never` 타입에 할당하거나, `assertNever` 함수를 사용하여 강제함으로써 구현됩니다 [6, 13, 14]. 최신 문법에서는 `satisfies never` 키워드를 활용해 처리되지 않은 유니언 타입이 있는지를 타입 시스템에서 강제할 수도 있습니다 [15]. - -- **성능과 대안적 분기 처리:** - 복잡한 조건부 분기를 처리하기 위해 `ts-pattern`과 같은 패턴 매칭 라이브러리를 사용할 수도 있으나, 이는 내부의 복잡한 타입 추론과 객체 생성으로 인해 자바스크립트의 기본 `if/else`나 `switch` 제어 구조에 비해 연산 속도가 떨어질 수 있습니다 [16, 17]. 따라서 복잡한 분기를 피할 수 있다면 네이티브 제어문이나 IIFE(즉시 실행 함수 표현)와 함께 `satisfies never`를 결합하여 선언적이고 안전하게 코드를 작성하는 것이 성능과 가독성 측면에서 권장됩니다 [15, 18, 19]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[유니언 타입 (Union Types)]], [[타입 좁히기 (Type Narrowing)]], [[완전성 검사 (Exhaustiveness Checking)]], [[never 타입]] -- **Projects/Contexts:** [[상태 머신 (State Machine) 모델링]], [[Redux 리듀서 패턴]], [[API 응답 데이터 타입 처리]] -- **Contradictions/Notes:** 소스 [16, 17, 19]는 `ts-pattern` 라이브러리가 복잡한 분기와 패턴 매칭을 간결하게 작성하는 데 유용하다고 소개하지만, 동시에 기본 제어 구조인 `if/else`나 `switch`에 비해 연산 속도가 상당히 느리므로 단순한 분기에서는 과도한 최적화(오버엔지니어링)가 될 수 있으며 네이티브 제어문을 사용하는 것이 더 적합하다고 주장합니다. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/유니언 타입 식별 및 상태 분기 처리.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/유니온 타입 (Union Types).md b/10_Wiki/Topics/Programming & Language/유니온 타입 (Union Types).md deleted file mode 100644 index cd5b2351..00000000 --- a/10_Wiki/Topics/Programming & Language/유니온 타입 (Union Types).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E0FAE7 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 유니온 타입 (Union Types)" ---- - -# [[유니온 타입 (Union Types)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 유니온 타입(Union Types)은 TypeScript에서 값(Value)이 지정된 여러 타입 중 하나일 수 있음을 나타내는 타입 선언 방식이다 [1, 2]. 수직선 기호(`|`)를 사용하여 구성하며, 타입들을 집합(Set)으로 보았을 때 여러 집합의 합집합(Union)에 해당한다 [2, 3]. 변수나 함수의 매개변수가 하나 이상의 유연한 타입을 허용해야 할 때 주로 사용되며, 런타임에 특정한 타입으로 구별하기 위해서는 '타입 좁히기(Type Narrowing)' 과정이 동반되어야 한다 [4-6]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[식별 가능한 유니온 (Discriminated Unions)]], [[교집합 타입 (Intersection Types)]], [[타입 좁히기 (Type Narrowing)]], [[리터럴 타입 (Literal Types)]] -- **Projects/Contexts:** [[TypeScript 타입 시스템 (TypeScript Type System)]], [[상태 모델링 (State Modeling)]] -- **Contradictions/Notes:** TypeScript에서 유니온 타입은 값의 유연성을 제공하지만, 조합된 타입들의 공통 프로퍼티가 아닌 고유 프로퍼티를 타입 좁히기 검증 없이 직접 접근하려고 하면 컴파일 에러가 발생하므로 주의해야 한다 [2, 5]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/유니온 타입 (Union Types).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/의사결정 속도(Decision Speed).md b/10_Wiki/Topics/Programming & Language/의사결정 속도(Decision Speed).md deleted file mode 100644 index f1805a71..00000000 --- a/10_Wiki/Topics/Programming & Language/의사결정 속도(Decision Speed).md +++ /dev/null @@ -1,35 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D12B88 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 의사결정 속도(Decision Speed)" ---- - -# [[의사결정 속도(Decision Speed)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -- **의사결정 속도의 정의와 측정 방식:** - 인지 기능 평가에 사용되는 5선택 반응 시간 과제(CANTAB 5-choice RTI) 등에서 의사결정 속도는 목표 자극(target stimulus)이 나타난 순간부터 참가자가 초기 대기 버튼에서 손을 떼기까지 걸린 시간의 중앙값(median duration)으로 정의됩니다 [1]. 이는 실제 동작을 수행하는 데 걸리는 시간과 분리하여, 순수하게 어떤 반응을 할지 결정하는 인지적 판단 시간(decision time)을 측정합니다 [1, 3]. -- **VR 환경 노출이 의사결정 속도에 미치는 영향:** - 가상현실 엑서게임(예: Beat Saber)이 인지 능력에 미치는 사후 영향(aftereffects)을 분석한 연구에 따르면, VR 게임 직후나 일정 시간이 지난 후 측정한 의사결정 속도는 게임 전의 기준선(baseline) 측정치와 통계적으로 유의미한 차이를 보이지 않았습니다 [3, 4]. 일부 측정에서 약간 더 느려진 반응이 나타나기도 했으나, 결과적으로 VR 몰입이 자극에 빠르게 반응하고 의사결정을 내리는 능력에 뚜렷한 저하를 일으키지는 않는 것으로 확인되었습니다 [3, 4]. -- **고압(High-stakes) 및 다중 작업 환경에서의 중요성:** - 경쟁적인 e스포츠 환경에서 성공하기 위해서는 고도의 집중력과 함께 빠르고 정확한 의사결정 능력이 필수적입니다 [2]. 이처럼 빠른 의사결정이 요구되는 e스포츠 선수를 대상으로 개발된 인지 피로도(Cognitive Fatigue) 및 작업 부하 모델은, 항공 교통 관제나 로봇 수술과 같이 신속한 의사결정과 지속적인 주의력이 결정적인 다른 산업 분야로도 응용될 수 있습니다 [5]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[반응 시간(Reaction Time)]], [[인지 부하(Cognitive Load)]] -- **Projects/Contexts:** [[가상현실 엑서게임 사후 영향 연구(VR Exergaming Aftereffects)]], [[e스포츠 인지 상태 평가(eSports Cognitive State Assessment)]] -- **Contradictions/Notes:** 주어진 소스 내에서 의사결정 속도(Decision Speed)는 주로 VR 엑서게임 실험의 하위 측정 지표 및 e스포츠의 요구 역량으로만 다뤄지고 있어, 개념의 이론적 배경이나 심층적인 작동 원리에 대한 소스에 관련 정보가 부족합니다. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/의사결정 속도(Decision Speed).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/인문학적 게임 비평 및 서사학12.md b/10_Wiki/Topics/Programming & Language/인문학적 게임 비평 및 서사학12.md deleted file mode 100644 index 7fe75c06..00000000 --- a/10_Wiki/Topics/Programming & Language/인문학적 게임 비평 및 서사학12.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F20E50 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 인문학적 게임 비평 및 서사학12" ---- - -# [[인문학적 게임 비평 및 서사학12]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/인문학적 게임 비평 및 서사학12.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/임베딩 (Embedding).md b/10_Wiki/Topics/Programming & Language/임베딩 (Embedding).md deleted file mode 100644 index a015ad28..00000000 --- a/10_Wiki/Topics/Programming & Language/임베딩 (Embedding).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-6E92CC -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 임베딩 (Embedding)" ---- - -# [[임베딩 (Embedding)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/임베딩 (Embedding).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/임상 심리학의 변화 동기 치료.md b/10_Wiki/Topics/Programming & Language/임상 심리학의 변화 동기 치료.md deleted file mode 100644 index 6bb60c15..00000000 --- a/10_Wiki/Topics/Programming & Language/임상 심리학의 변화 동기 치료.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-EE54A5 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 임상 심리학의 변화 동기 치료" ---- - -# [[임상 심리학의 변화 동기 치료]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/임상 심리학의 변화 동기 치료.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/자기결정성 이론 (SDT).md b/10_Wiki/Topics/Programming & Language/자기결정성 이론 (SDT).md deleted file mode 100644 index c95968cc..00000000 --- a/10_Wiki/Topics/Programming & Language/자기결정성 이론 (SDT).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-AB9DD3 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 자기결정성 이론 (SDT)" ---- - -# [[자기결정성 이론 (SDT)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/자기결정성 이론 (SDT).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/자기결정성 이론 (Self-Determination Theory).md b/10_Wiki/Topics/Programming & Language/자기결정성 이론 (Self-Determination Theory).md deleted file mode 100644 index e4252458..00000000 --- a/10_Wiki/Topics/Programming & Language/자기결정성 이론 (Self-Determination Theory).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-5A0AD3 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 자기결정성 이론 (Self-Determination Theory)" ---- - -# [[자기결정성 이론 (Self-Determination Theory)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/자기결정성 이론 (Self-Determination Theory).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/자율성 지지 (Autonomy Support).md b/10_Wiki/Topics/Programming & Language/자율성 지지 (Autonomy Support).md deleted file mode 100644 index b1ff6e72..00000000 --- a/10_Wiki/Topics/Programming & Language/자율성 지지 (Autonomy Support).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-EB1B7E -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 자율성 지지 (Autonomy Support)" ---- - -# [[자율성 지지 (Autonomy Support)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/자율성 지지 (Autonomy Support).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/자폐 스펙트럼 장애(ASD) 중재.md b/10_Wiki/Topics/Programming & Language/자폐 스펙트럼 장애(ASD) 중재.md deleted file mode 100644 index 04f3ae68..00000000 --- a/10_Wiki/Topics/Programming & Language/자폐 스펙트럼 장애(ASD) 중재.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-DD3080 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 자폐 스펙트럼 장애(ASD) 중재" ---- - -# [[자폐 스펙트럼 장애(ASD) 중재]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/자폐 스펙트럼 장애(ASD) 중재.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/전두엽 기능 저하 (Hypofrontality).md b/10_Wiki/Topics/Programming & Language/전두엽 기능 저하 (Hypofrontality).md deleted file mode 100644 index 6583f30f..00000000 --- a/10_Wiki/Topics/Programming & Language/전두엽 기능 저하 (Hypofrontality).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B8940A -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 전두엽 기능 저하 (Hypofrontality)" ---- - -# [[전두엽 기능 저하 (Hypofrontality)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/전두엽 기능 저하 (Hypofrontality).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/절차적 수사학(Procedural Rhetoric).md b/10_Wiki/Topics/Programming & Language/절차적 수사학(Procedural Rhetoric).md deleted file mode 100644 index 86a3c10a..00000000 --- a/10_Wiki/Topics/Programming & Language/절차적 수사학(Procedural Rhetoric).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-274581 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 절차적 수사학(Procedural Rhetoric)" ---- - -# [[절차적 수사학(Procedural Rhetoric)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/절차적 수사학(Procedural Rhetoric).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/정서적 고전적 조건 형성 (Emotional Classical Conditioning).md b/10_Wiki/Topics/Programming & Language/정서적 고전적 조건 형성 (Emotional Classical Conditioning).md deleted file mode 100644 index 513d9be6..00000000 --- a/10_Wiki/Topics/Programming & Language/정서적 고전적 조건 형성 (Emotional Classical Conditioning).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-BB4E76 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 정서적 고전적 조건 형성 (Emotional Classical Conditioning)" ---- - -# [[정서적 고전적 조건 형성 (Emotional Classical Conditioning)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/정서적 고전적 조건 형성 (Emotional Classical Conditioning).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/정신 의학적 진단 체계 (DSM-5_ICD-11).md b/10_Wiki/Topics/Programming & Language/정신 의학적 진단 체계 (DSM-5_ICD-11).md deleted file mode 100644 index 7122fece..00000000 --- a/10_Wiki/Topics/Programming & Language/정신 의학적 진단 체계 (DSM-5_ICD-11).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-4BDF5C -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 정신 의학적 진단 체계 (DSM-5_ICD-11)" ---- - -# [[정신 의학적 진단 체계 (DSM-5_ICD-11)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/정신 의학적 진단 체계 (DSM-5_ICD-11).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/조작적 조건 형성 (Operant Conditioning).md b/10_Wiki/Topics/Programming & Language/조작적 조건 형성 (Operant Conditioning).md deleted file mode 100644 index 374937e9..00000000 --- a/10_Wiki/Topics/Programming & Language/조작적 조건 형성 (Operant Conditioning).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-901DFC -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 조작적 조건 형성 (Operant Conditioning)" ---- - -# [[조작적 조건 형성 (Operant Conditioning)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/조작적 조건 형성 (Operant Conditioning).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/조작적 조건 형성.md b/10_Wiki/Topics/Programming & Language/조작적 조건 형성.md deleted file mode 100644 index 4a5a7c52..00000000 --- a/10_Wiki/Topics/Programming & Language/조작적 조건 형성.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-05C66E -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 조작적 조건 형성" ---- - -# [[조작적 조건 형성]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/조작적 조건 형성.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/조작적 조건형성.md b/10_Wiki/Topics/Programming & Language/조작적 조건형성.md deleted file mode 100644 index a10f877d..00000000 --- a/10_Wiki/Topics/Programming & Language/조작적 조건형성.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C7CA1A -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 조작적 조건형성" ---- - -# [[조작적 조건형성]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/조작적 조건형성.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/조직 개발(OD) 프로그램 설계.md b/10_Wiki/Topics/Programming & Language/조직 개발(OD) 프로그램 설계.md deleted file mode 100644 index d6eb7cff..00000000 --- a/10_Wiki/Topics/Programming & Language/조직 개발(OD) 프로그램 설계.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-E12DC4 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 조직 개발(OD) 프로그램 설계" ---- - -# [[조직 개발(OD) 프로그램 설계]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/조직 개발(OD) 프로그램 설계.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/조직 행동 관리(OBM).md b/10_Wiki/Topics/Programming & Language/조직 행동 관리(OBM).md deleted file mode 100644 index 633d2d27..00000000 --- a/10_Wiki/Topics/Programming & Language/조직 행동 관리(OBM).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-532605 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 조직 행동 관리(OBM)" ---- - -# [[조직 행동 관리(OBM)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/조직 행동 관리(OBM).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/조직 행동론 및 직무 만족도 연구.md b/10_Wiki/Topics/Programming & Language/조직 행동론 및 직무 만족도 연구.md deleted file mode 100644 index 8462dc3e..00000000 --- a/10_Wiki/Topics/Programming & Language/조직 행동론 및 직무 만족도 연구.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2FE438 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 조직 행동론 및 직무 만족도 연구" ---- - -# [[조직 행동론 및 직무 만족도 연구]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/조직 행동론 및 직무 만족도 연구.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/중뇌-변연계 경로 (Mesolimbic Pathway).md b/10_Wiki/Topics/Programming & Language/중뇌-변연계 경로 (Mesolimbic Pathway).md deleted file mode 100644 index 5802f770..00000000 --- a/10_Wiki/Topics/Programming & Language/중뇌-변연계 경로 (Mesolimbic Pathway).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D5E4BD -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 중뇌-변연계 경로 (Mesolimbic Pathway)" ---- - -# [[중뇌-변연계 경로 (Mesolimbic Pathway)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/중뇌-변연계 경로 (Mesolimbic Pathway).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/지식 그래프 (Knowledge Graph).md b/10_Wiki/Topics/Programming & Language/지식 그래프 (Knowledge Graph).md deleted file mode 100644 index 520a1117..00000000 --- a/10_Wiki/Topics/Programming & Language/지식 그래프 (Knowledge Graph).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-276A1A -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 지식 그래프 (Knowledge Graph)" ---- - -# [[지식 그래프 (Knowledge Graph)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/지식 그래프 (Knowledge Graph).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/직무 특성 모델 (Job Characteristics Model).md b/10_Wiki/Topics/Programming & Language/직무 특성 모델 (Job Characteristics Model).md deleted file mode 100644 index 50acb412..00000000 --- a/10_Wiki/Topics/Programming & Language/직무 특성 모델 (Job Characteristics Model).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-599CE0 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 직무 특성 모델 (Job Characteristics Model)" ---- - -# [[직무 특성 모델 (Job Characteristics Model)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/직무 특성 모델 (Job Characteristics Model).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/추론 엔진 (Semantic Reasoner).md b/10_Wiki/Topics/Programming & Language/추론 엔진 (Semantic Reasoner).md deleted file mode 100644 index 7a94df9b..00000000 --- a/10_Wiki/Topics/Programming & Language/추론 엔진 (Semantic Reasoner).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A3E15F -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 추론 엔진 (Semantic Reasoner)" ---- - -# [[추론 엔진 (Semantic Reasoner)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/추론 엔진 (Semantic Reasoner).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/커뮤니티 탐지 (Community Detection).md b/10_Wiki/Topics/Programming & Language/커뮤니티 탐지 (Community Detection).md deleted file mode 100644 index 7e2b9380..00000000 --- a/10_Wiki/Topics/Programming & Language/커뮤니티 탐지 (Community Detection).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-D5C627 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 커뮤니티 탐지 (Community Detection)" ---- - -# [[커뮤니티 탐지 (Community Detection)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/커뮤니티 탐지 (Community Detection).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/코드 스타일로메트리 (Code Stylometry).md b/10_Wiki/Topics/Programming & Language/코드 스타일로메트리 (Code Stylometry).md deleted file mode 100644 index 354231e2..00000000 --- a/10_Wiki/Topics/Programming & Language/코드 스타일로메트리 (Code Stylometry).md +++ /dev/null @@ -1,34 +0,0 @@ ---- -id: P-REINFORCE-AUTO-325355 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 코드 스타일로메트리 (Code Stylometry)" ---- - -# [[코드 스타일로메트리 (Code Stylometry)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **주요 분석 특징 (Features):** 코드 스타일로메트리는 주로 세 가지 범주의 특징을 기반으로 저자를 식별합니다. 문자나 단어의 사용 방식을 보는 **'어휘적 특징(Lexical features)'**, 추상 구문 트리(AST)의 형태 및 문법적 구조를 분석하는 **'구문적 특징(Syntactic features)'**, 들여쓰기, 공백, 줄 길이 등 시각적인 배치를 평가하는 **'레이아웃 특징(Layout features)'**이 포함됩니다 [7], [8]. -* **분석 기법의 진화:** 초기의 연구는 명시적인 형식 규칙에 의존했으나, 점차 SVM, 랜덤 포레스트(Random Forests), 신경망(Neural Networks)과 같은 **기계 학습(Machine Learning)** 모델과 code2vec 같은 분산 임베딩(Embeddings) 기반의 정교한 접근법으로 발전하여 식별 정확도가 크게 향상되었습니다 [9], [10], [11], [12]. -* **코드 표현 방식의 영향 (AST vs CST):** 소스 코드를 구문 분석할 때, 코드의 구문적 구조만 보존하는 추상 구문 트리(AST)를 사용하는 것보다, 레이아웃과 어휘적 세부 사항까지 온전히 포함하는 **구체적 구문 트리(CST)**를 사용할 때 저자 식별 정확도가 훨씬 높아집니다. 한 연구 실험에서는 AST 기반 51.00%에서 CST 기반 67.86%로 정확도가 향상되었습니다 [8], [13]. -* **포맷팅(Formatting) 및 축소(Minification)의 영향:** 코드를 특정 스타일 가이드에 맞게 일괄 정리하는 포맷팅 도구(예: Black)나 불필요한 공백/변수명을 줄이는 축소 도구(예: Python Minifier)를 사용하면 프로그래머 고유의 레이아웃 특징이 소실됩니다 [14], [15]. 실험 결과, 자동 포맷팅은 식별 정확도를 약 15% (68% → 53%) 낮추었고, 코드 축소는 추가로 3% (68% → 50%)를 떨어뜨려 저자 식별을 어렵게 만들었으나 완전히 식별 불가능하게 만들지는 못했습니다 [1], [16], [17], [18]. -* **적대적 코드 스타일로메트리 (Adversarial Code Stylometry):** 분석을 회피하고 프라이버시를 지키기 위해 고의로 다른 프로그래머의 스타일을 모방(Mimicry)하거나 자신의 스타일을 난독화(Obfuscation)하는 기법도 연구되고 있습니다 [19], [20], [21]. 예를 들어, `StyleCounsel`과 같은 도구는 랜덤 포레스트 분류기의 의사결정 트리를 분석하여, 타겟 프로그래머로 시스템이 오인하도록 만드는 구체적인 코드 변경안을 제시합니다 [19], [22]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[기계 학습 (Machine Learning)]], [[추상 구문 트리 (AST)]], [[구체적 구문 트리 (CST)]], [[코드 포맷팅 (Code Formatting)]], [[적대적 스타일로메트리 (Adversarial Stylometry)]] -- **Projects/Contexts:** [[Google Code Jam 데이터셋]], [[StyleCounsel 도구]], [[모리스 웜 (Morris Worm) 사건]] -- **Contradictions/Notes:** 소스 코드를 자동 포맷팅하거나 축소(Minification)하면 분석기의 저자 식별 정확도가 감소하여 프라이버시 보호 효과가 발생하지만, 그것만으로는 스타일적 특징을 완전히 지울 수 없어 저자를 익명으로 유지하는 데에는 불충분합니다 [23], [18]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/코드 스타일로메트리 (Code Stylometry).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/코스모스(Cosmos).md b/10_Wiki/Topics/Programming & Language/코스모스(Cosmos).md deleted file mode 100644 index bb5fef99..00000000 --- a/10_Wiki/Topics/Programming & Language/코스모스(Cosmos).md +++ /dev/null @@ -1,44 +0,0 @@ ---- -id: P-REINFORCE-AUTO-2F7488 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 코스모스(Cosmos)" ---- - -# [[코스모스(Cosmos)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -* **플랫폼 도입 배경 및 목적:** -넷플릭스는 이전에 파트너와 스튜디오에서 들어오는 미디어 파일을 처리하기 위해 'Reloaded'라는 모놀리식 아키텍처를 사용했습니다 [4]. 하지만 개발자 규모가 늘어나고 처리 규모가 10배 이상 커지면서, 기존 아키텍처는 기능 배포를 지연시키고 운영에 큰 부담을 주는 부채가 되었습니다 [2]. 이에 대응하기 위해 인프라와 애플리케이션 코드가 뒤섞이는 문제를 해결하고, 워크플로우 중심의 미디어 특화 마이크로서비스를 위한 새로운 플랫폼인 코스모스를 개발하게 되었습니다 [2, 3, 5]. - -* **관심사의 분리(Separation of Concerns) 구조:** -코스모스는 두 가지 축으로 관심사를 분리합니다. 첫째, 로직을 API, 워크플로우, 서버리스 함수로 분할합니다 [6]. 둘째, 플랫폼과 애플리케이션을 분리하여 애플리케이션 개발자가 분산 컴퓨팅의 복잡한 세부 사항(데이터 배포 등)을 몰라도 미디어 특화 추상화를 통해 비즈니스 로직에만 집중할 수 있게 합니다 [6]. - -* **주요 하위 시스템(Subsystems):** -도메인 특화 및 확장 독립적(scale-agnostic)인 컴포넌트들은 다음의 세 가지 확장 인지(scale-aware) 하위 시스템 위에서 동작합니다 [6, 7]. - * **옵티머스(Optimus):** 외부 요청을 내부 비즈니스 모델로 매핑하는 API 계층입니다 [7]. - * **플라토(Plato):** 비즈니스 규칙 모델링을 위한 워크플로우 계층으로, 'Emirax'(Groovy 기반 도메인 특화 언어)를 사용하는 전진 추론(forward chaining) 규칙 엔진입니다 [7-9]. - * **스트라툼(Stratum):** 상태가 없고 계산 집약적인 알고리즘을 실행하기 위해 호출되는 서버리스 계층입니다 [7]. - * 이 하위 시스템들은 대규모, 저지연의 우선순위 큐 시스템인 **타임스톤(Timestone)**을 통해 비동기적으로 서로 통신합니다 [7]. - -* **워크로드 처리 전략:** -코스모스는 사용자 대기 시간이 중요한 '지연 시간에 민감한(Latency-sensitive)' 워크로드와 자원을 대량 소비하며 하루당 처리량이 중요한 '처리량에 민감한(Throughput-sensitive)' 워크로드를 모두 지원합니다 [1, 10, 11]. 특히 지연 시간을 관리하기 위해 자원 풀(Resource pools), 사전 컴퓨팅 자원 확보(Warm capacity), 마이크로 배치(Micro-batches), 작업 우선순위(Priority) 지정 등의 메커니즘을 사용합니다 [12]. - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[Microservices]], [[Serverless Computing]], [[Separation of Concerns]], [[Workflow]] -- **Projects/Contexts:** [[Netflix Media Cloud Engineering]], [[Reloaded (Netflix Legacy System)]], [[Tapas (Netflix Service)]] -- **Contradictions/Notes:** 넷플릭스는 기존의 거대하고 복잡한 레거시 시스템(Reloaded)에서 코스모스로 전환하는 데 따른 위험을 줄이기 위해, 새로운 시스템이 기존 시스템을 둘러싸면서 점진적으로 완전히 대체하는 스트랭글러 피그(strangler fig) 패턴을 채택했습니다 [13]. 한편 "마이크로서비스가 워크플로우를 트리거하고 서버리스 함수를 오케스트레이션한다"는 코스모스의 프로그래밍 모델은 대부분의 사용 사례에 효과적이지만, 너무 단순한 애플리케이션의 경우에는 오히려 추가되는 복잡성이 이점보다 클 수 있다고 지적됩니다 [14]. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/코스모스(Cosmos).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/폭주-조절 충돌(Vergence-accommodation conflict).md b/10_Wiki/Topics/Programming & Language/폭주-조절 충돌(Vergence-accommodation conflict).md deleted file mode 100644 index 5d4528da..00000000 --- a/10_Wiki/Topics/Programming & Language/폭주-조절 충돌(Vergence-accommodation conflict).md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-12CE66 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 폭주-조절 충돌(Vergence-accommodation conflict)" ---- - -# [[폭주-조절 충돌(Vergence-accommodation conflict)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 폭주-조절 충돌(Vergence-accommodation conflict)은 가상현실(VR)의 헤드 마운트 디스플레이(HMD) 사용 시 발생하는 상충되는 깊이 단서로 인해 나타나는 시각적 현상입니다 [1]. 자연스러운 시각 환경에서는 가까운 물체에 초점을 맞추기 위해 폭주(Vergence)와 조절(Accommodation) 기능이 상호 피드백 루프를 통해 함께 작용하지만, HMD에서는 이 두 메커니즘이 분리(decoupled)되면서 충돌을 일으킵니다 [1]. 이 현상은 깊이 지각에 대한 불확실성을 초래하며, 가상현실 멀미나 눈의 피로와 같은 다양한 안구 운동 증상을 유발하는 요인으로 지목되고 있습니다 [1, 2]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[가상현실 멀미(VR sickness)]], [[안구 운동 기능(Oculomotor functions)]], [[깊이 지각(Depth perception)]], [[헤드 마운트 디스플레이(HMD)]] -- **Projects/Contexts:** [[가상현실(VR) 경험 및 엑서게이밍(Exergaming)]] -- **Contradictions/Notes:** 소스에 따르면 폭주-조절 충돌이 VR 멀미의 근본적인 원인인지, 혹은 기존의 멀미 증상을 심화시키는 역할만 하는 것인지에 대해서는 인과관계가 아직 불분명합니다 [2]. - ---- -*Last updated: 2026-04-19* -- Raw Source: [[00_Raw/2026-04-20/폭주-조절 충돌(Vergence-accommodation conflict).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/하이브리드 검색 (Hybrid Search).md b/10_Wiki/Topics/Programming & Language/하이브리드 검색 (Hybrid Search).md deleted file mode 100644 index 65cb2b30..00000000 --- a/10_Wiki/Topics/Programming & Language/하이브리드 검색 (Hybrid Search).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-F7F96B -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 하이브리드 검색 (Hybrid Search)" ---- - -# [[하이브리드 검색 (Hybrid Search)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/하이브리드 검색 (Hybrid Search).md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/행동 경제학의 인센티브 구조 설계.md b/10_Wiki/Topics/Programming & Language/행동 경제학의 인센티브 구조 설계.md deleted file mode 100644 index a56cd724..00000000 --- a/10_Wiki/Topics/Programming & Language/행동 경제학의 인센티브 구조 설계.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-8FE0F9 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 행동 경제학의 인센티브 구조 설계" ---- - -# [[행동 경제학의 인센티브 구조 설계]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/행동 경제학의 인센티브 구조 설계.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/행동 경제학의 학습 이론.md b/10_Wiki/Topics/Programming & Language/행동 경제학의 학습 이론.md deleted file mode 100644 index 9491fd8e..00000000 --- a/10_Wiki/Topics/Programming & Language/행동 경제학의 학습 이론.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-151F07 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 행동 경제학의 학습 이론" ---- - -# [[행동 경제학의 학습 이론]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/행동 경제학의 학습 이론.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/행동 수정 기법.md b/10_Wiki/Topics/Programming & Language/행동 수정 기법.md deleted file mode 100644 index f53e7354..00000000 --- a/10_Wiki/Topics/Programming & Language/행동 수정 기법.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C66F3C -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 행동 수정 기법" ---- - -# [[행동 수정 기법]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/행동 수정 기법.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/헬스케어의 민감 데이터(PII_PCI) 보안 규제 준수.md b/10_Wiki/Topics/Programming & Language/헬스케어의 민감 데이터(PII_PCI) 보안 규제 준수.md deleted file mode 100644 index 826f1a12..00000000 --- a/10_Wiki/Topics/Programming & Language/헬스케어의 민감 데이터(PII_PCI) 보안 규제 준수.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: P-REINFORCE-AUTO-C45097 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 헬스케어의 민감 데이터(PII_PCI) 보안 규제 준수" ---- - -# [[헬스케어의 민감 데이터(PII_PCI) 보안 규제 준수]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 헬스케어 분야와 같이 개인식별정보(PII) 및 지불카드산업(PCI) 데이터를 다루는 시스템에서는 민감한 정보를 보호하고 GDPR, CCPA와 같은 엄격한 규제 요구사항을 충족하기 위해 강력한 보안 조치가 필수적입니다 [1, 2]. 이는 단순한 사후 조치가 아니라, 암호화, 세분화된 접근 제어 및 데이터 익명화를 포함하는 다층적 방어 전략(Multi-layered defense strategy)을 데이터 파이프라인의 모든 단계에 통합하는 것을 의미합니다 [1]. - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) -- **Related Topics:** [[데이터 보안 및 암호화(Data Security, Privacy, and Encryption)]], [[역할 기반 접근 제어(RBAC)]], [[데이터 거버넌스(Data Governance)]] -- **Projects/Contexts:** [[확장 가능한 시스템을 위한 데이터 엔지니어링 모범 사례(Data Engineering Best Practices)]], [[다층적 방어 전략(Multi-layered Defense Strategy)]] -- **Contradictions/Notes:** 소스에서는 헬스케어 시스템 및 PII/PCI 처리 시스템이 GDPR 및 CCPA 등의 규제를 준수하기 위해 다층적 보안 및 암호화를 도입해야 한다고 설명하고 있으나, 헬스케어 산업에만 특화된 고유 규제(예: HIPAA 등)에 대한 구체적인 세부 지침에 대해서는 소스에 관련 정보가 부족합니다. - ---- -*Last updated: 2026-04-18* -- Raw Source: [[00_Raw/2026-04-20/헬스케어의 민감 데이터(PII_PCI) 보안 규제 준수.md]] ---- diff --git a/10_Wiki/Topics/Programming & Language/회복탄력성 (Resilience).md b/10_Wiki/Topics/Programming & Language/회복탄력성 (Resilience).md deleted file mode 100644 index 71218b14..00000000 --- a/10_Wiki/Topics/Programming & Language/회복탄력성 (Resilience).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-848690 -category: "[[10_Wiki/💡 Topics/Programming & Language]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 회복탄력성 (Resilience)" ---- - -# [[회복탄력성 (Resilience)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Programming & Language 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/회복탄력성 (Resilience).md]] ---- diff --git a/10_Wiki/Topics/Psychology & Behavior/Agent-Based Modeling.md b/10_Wiki/Topics/Psychology & Behavior/Agent-Based Modeling.md deleted file mode 100644 index 04a45582..00000000 --- a/10_Wiki/Topics/Psychology & Behavior/Agent-Based Modeling.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-64B5F2 -category: "[[10_Wiki/💡 Topics/Psychology & Behavior]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Agent-Based Modeling" ---- - -# [[Agent-Based Modeling]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Psychology & Behavior 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Agent-Based Modeling.md]] ---- diff --git a/10_Wiki/Topics/Psychology & Behavior/보상의 역효과 (Overjustification Effect).md b/10_Wiki/Topics/Psychology & Behavior/보상의 역효과 (Overjustification Effect).md deleted file mode 100644 index 23a9acc8..00000000 --- a/10_Wiki/Topics/Psychology & Behavior/보상의 역효과 (Overjustification Effect).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-0B61E9 -category: "[[10_Wiki/💡 Topics/Psychology & Behavior]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - 보상의 역효과 (Overjustification Effect)" ---- - -# [[보상의 역효과 (Overjustification Effect)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Psychology & Behavior 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/보상의 역효과 (Overjustification Effect).md]] ---- diff --git a/10_Wiki/Topics/Security & AI/Adversarial Attack (적대적 공격).md b/10_Wiki/Topics/Security & AI/Adversarial Attack (적대적 공격).md deleted file mode 100644 index 942824de..00000000 --- a/10_Wiki/Topics/Security & AI/Adversarial Attack (적대적 공격).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AI-AFC0C0 -category: "[[10_Wiki/💡 Topics/Security & AI]]" -confidence_score: 0.95 -tags: [] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Batch 9 - Wikified Adversarial Attack (적대적 공격)" ---- - -# [[Adversarial Attack (적대적 공격)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> - -## 📖 구조화된 지식 (Synthesized Content) - - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 신규 문서로, 기존 정보와의 충돌 분석 예정. -- **정책 변화:** Security & AI 카테고리의 지식 연결망 강화를 위한 표준 위키화 적용. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Adversarial Attack (적대적 공격).md]] ---- diff --git a/10_Wiki/Topics/Security/Formal-Methods-in-Software-Engineering.md b/10_Wiki/Topics/Security/Formal-Methods-in-Software-Engineering.md deleted file mode 100644 index ceb7ec11..00000000 --- a/10_Wiki/Topics/Security/Formal-Methods-in-Software-Engineering.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1A7827 -category: "[[10_Wiki/💡 Topics/Security]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Formal-Methods-in-Software-Engineering" ---- - -# [[Formal-Methods-in-Software-Engineering]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Security 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Formal-Methods-in-Software-Engineering.md]] ---- diff --git a/10_Wiki/Topics/Software Architecture/Deterministic Lockstep Architecture.md b/10_Wiki/Topics/Software Architecture/Deterministic Lockstep Architecture.md deleted file mode 100644 index df07ddb6..00000000 --- a/10_Wiki/Topics/Software Architecture/Deterministic Lockstep Architecture.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1D4EC0 -category: "[[10_Wiki/💡 Topics/Software Architecture]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Deterministic Lockstep Architecture" ---- - -# [[Deterministic Lockstep Architecture]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Software Architecture 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Deterministic Lockstep Architecture.md]] ---- diff --git a/10_Wiki/Topics/Software Architecture/Hello Games Development Lifecycle.md b/10_Wiki/Topics/Software Architecture/Hello Games Development Lifecycle.md deleted file mode 100644 index 6af4ebc9..00000000 --- a/10_Wiki/Topics/Software Architecture/Hello Games Development Lifecycle.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-1D420B -category: "[[10_Wiki/💡 Topics/Software Architecture]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Hello Games Development Lifecycle" ---- - -# [[Hello Games Development Lifecycle]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Software Architecture 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Hello Games Development Lifecycle.md]] ---- diff --git a/10_Wiki/Topics/Software Architecture/Sports Management Theory.md b/10_Wiki/Topics/Software Architecture/Sports Management Theory.md deleted file mode 100644 index 8548cc68..00000000 --- a/10_Wiki/Topics/Software Architecture/Sports Management Theory.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-B81B6E -category: "[[10_Wiki/💡 Topics/Software Architecture]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Sports Management Theory" ---- - -# [[Sports Management Theory]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Software Architecture 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Sports Management Theory.md]] ---- diff --git a/10_Wiki/Topics/Software Architecture/Throttling Debouncing (스로틀링과 디바운싱).md b/10_Wiki/Topics/Software Architecture/Throttling Debouncing (스로틀링과 디바운싱).md deleted file mode 100644 index 667e12b3..00000000 --- a/10_Wiki/Topics/Software Architecture/Throttling Debouncing (스로틀링과 디바운싱).md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: P-REINFORCE-AUTO-A0A08A -category: "[[10_Wiki/💡 Topics/Software Architecture]]" -confidence_score: 0.90 -tags: [auto-reinforced] -last_reinforced: 2026-04-20 -github_commit: "[P-Reinforce] Continuous Worker - Throttling Debouncing (스로틀링과 디바운싱)" ---- - -# [[Throttling Debouncing (스로틀링과 디바운싱)]] - -## 📌 한 줄 통찰 (The Karpathy Summary) -> 지식 요약 정보 추출 중... - -## 📖 구조화된 지식 (Synthesized Content) -본문 구조화 작업 중... - -## ⚠️ 모순 및 업데이트 (Contradictions & RL Update) -- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요. -- **정책 변화:** Software Architecture 분야의 자동 자산화 수행. - -## 🔗 지식 연결 (Graph) - -- Raw Source: [[00_Raw/2026-04-20/Throttling & Debouncing (스로틀링과 디바운싱).md]] ---- diff --git a/scratch/find_empty_templates.py b/scratch/find_empty_templates.py new file mode 100644 index 00000000..b99702b8 --- /dev/null +++ b/scratch/find_empty_templates.py @@ -0,0 +1,33 @@ +import os +import re + +base_path = r'E:\Wiki\2nd\10_Wiki\Topics' +empty_files = [] + +def is_empty_template(content): + # Check if Summary section is basically empty + summary_match = re.search(r'## 📌 한 줄 통찰 \(The Karpathy Summary\)\n>\s*\n', content) + # Check if Content section is basically empty + content_match = re.search(r'## 📖 구조화된 지식 \(Synthesized Content\)\s*## ⚠️ 모순', content, re.DOTALL) + + if summary_match and content_match: + return True + return False + +for root, dirs, files in os.walk(base_path): + for f in files: + if f.endswith('.md'): + file_path = os.path.join(root, f) + if len(file_path) > 240: continue + + try: + with open(file_path, 'r', encoding='utf-8', errors='ignore') as f_obj: + content = f_obj.read() + if is_empty_template(content): + empty_files.append(file_path) + except: + pass + +print(f"Found {len(empty_files)} empty template files.") +for f in empty_files[:50]: + print(f"{f}") diff --git a/scratch/find_wip_placeholders.py b/scratch/find_wip_placeholders.py new file mode 100644 index 00000000..81ad5043 --- /dev/null +++ b/scratch/find_wip_placeholders.py @@ -0,0 +1,28 @@ +import os + +base_path = r'E:\Wiki\2nd\10_Wiki\Topics' +junk_phrases = [ + "지식 요약 정보 추출 중...", + "본문 구조화 작업 중...", + "신규 문서로, 기존 정보와의 충돌 분석 예정." +] + +found_files = [] + +for root, dirs, files in os.walk(base_path): + for f in files: + if f.endswith('.md'): + file_path = os.path.join(root, f) + if len(file_path) > 240: continue + + try: + with open(file_path, 'r', encoding='utf-8', errors='ignore') as f_obj: + content = f_obj.read() + if any(phrase in content for phrase in junk_phrases): + found_files.append(file_path) + except: + pass + +print(f"Found {len(found_files)} in-progress placeholder files.") +for f in found_files: + print(f"{f}")