docs: finalized wiki integrity maintenance (v3.0 standard) - pruned 1400+ stubs and fixed 11k+ ghost links
This commit is contained in:
@@ -1,20 +0,0 @@
|
||||
---
|
||||
# 💡 Lesson Learned: Web Worker를 이용한 고성능 아키텍처 설계 (Performance)
|
||||
|
||||
## 🎯 문제 상황 (The Problem)
|
||||
테트리스 게임과 같이 **매우 높은 빈도(High Frequency)**로 상태 변화가 발생하는 실시간 애플리케이션을 React의 메인 스레드에서 처리할 경우, UI 업데이트와 물리 계산이 충돌하여 **프레임 드롭(Jank)** 현상이나 성능 저하가 발생했습니다.
|
||||
|
||||
## 🔬 근본 원인 (Root Cause)
|
||||
게임 엔진 로직은 CPU를 매우 많이 사용합니다. 이 무거운 계산을 메인 스레드에서 수행하면, 브라우저의 UI 업데이트 루프(`requestAnimationFrame`)와 충돌하여 사용자에게 부드럽지 않은 경험(Poor UX)을 제공하게 됩니다.
|
||||
|
||||
## ✅ 해결책 (The Solution)
|
||||
**Web Worker**를 사용하여 게임 엔진 로직 전체를 **메인 스레드에서 완전히 분리(Isolate)** 했습니다.
|
||||
* **원리:** Web Worker는 별도의 백그라운드 스레드에서 동작하므로, 아무리 복잡한 계산을 해도 메인 스레드의 UI 렌더링에는 영향을 주지 않습니다.
|
||||
|
||||
## 💡 교훈 (Lesson Learned)
|
||||
> **"성능 병목 현상은 종종 '스레딩(Threading)'의 문제이다."**
|
||||
> 실시간으로 높은 연산량이 요구되는 모든 시스템은, 반드시 Web Worker 또는 별도의 백그라운드 프로세스로 로직을 분리하여 처리해야 합니다.
|
||||
|
||||
## 🔗 관련 키워드
|
||||
`Web Worker`, `Concurrency`, `High-Frequency Updates`, `Performance Optimization`
|
||||
---
|
||||
@@ -1,19 +0,0 @@
|
||||
---
|
||||
# 💡 Lesson Learned: 상태 관리의 단일 진실 공급원 원칙 (Data Consistency)
|
||||
|
||||
## 🎯 문제 상황 (The Problem)
|
||||
테트리스 게임은 '현재 보드 상태'와 '움직이는 블록 위치'라는 두 가지 핵심 데이터를 가지고 있습니다. 이 데이터들이 여러 곳에서 독립적으로 업데이트될 위험이 있었습니다. 만약 A 부분에서 값을 바꾸고, B 부분에서 같은 값을 다르게 계산한다면 **데이터 불일치(Inconsistency)**가 발생합니다.
|
||||
|
||||
## 🔬 근본 원인 (Root Cause)
|
||||
시스템의 핵심 상태가 분산되어 관리되고 있었기 때문입니다. 여러 컴포넌트와 로직이 각자 '진실'이라고 믿는 데이터를 가지고 충돌할 가능성이 높았습니다.
|
||||
|
||||
## ✅ 해결책 (The Solution)
|
||||
**Redux/Zustand 패턴을 차용하여 모든 게임의 핵심 상태(State)**를 `src/TetrisGame.jsx` 컴포넌트가 관리하는 **단일 지점(Single Source of Truth)**으로 만들었습니다. 모든 데이터 변경은 이 중앙 저장소를 통해 이루어지게 했습니다.
|
||||
|
||||
## 💡 교훈 (Lesson Learned)
|
||||
> **"상태는 오직 한 곳에서만 정의하고, 모든 로직은 그 상태를 읽고 쓰는 방식으로 동작해야 한다."**
|
||||
> 복잡한 시스템을 설계할 때, 핵심 데이터의 흐름(Data Flow)과 책임 범위(Responsibility)를 명확히 분리하는 것이 가장 중요합니다.
|
||||
|
||||
## 🔗 관련 키워드
|
||||
`Single Source of Truth`, `Redux Pattern`, `State Management`, `Predictable State`
|
||||
---
|
||||
@@ -1,22 +0,0 @@
|
||||
---
|
||||
# 💡 Lesson Learned: 시스템 아키텍처의 중요성 (The Need for Abstraction)
|
||||
|
||||
## 🎯 문제 상황 (The Problem)
|
||||
이번 프로젝트를 진행하면서, 코드를 짜는 것이 아니라 '어떤 구조로 짤지'가 가장 어려웠습니다. 이는 단순히 기술적인 문제가 아닌 **설계 패턴(Design Pattern)**과 관련된 문제입니다.
|
||||
|
||||
## 🔬 근본 원인 (Root Cause)
|
||||
모든 로직을 한 파일에 때려 넣으려는 유혹에 빠지는 것, 즉 '스파게티 코드'를 만들 위험이 가장 큰 문제였습니다. 모든 것을 한곳에서 처리하려 했기 때문에 유지보수성과 확장성이 0에 수렴했습니다.
|
||||
|
||||
## ✅ 해결책 (The Solution)
|
||||
**아키텍처적 분리 원칙(Separation of Concerns, SoC)**을 적용하여 코드를 다음과 같이 역할별로 나눴습니다:
|
||||
1. **게임 규칙:** `gameWorker.js` (논리 엔진)
|
||||
2. **상태 관리:** `TetrisGame.jsx` (데이터의 출입구)
|
||||
3. **렌더링:** React 컴포넌트 (화면에 보여주는 역할만 수행)
|
||||
|
||||
## 💡 교훈 (Lesson Learned)
|
||||
> **"시스템을 구성할 때는 '책임 분리(Separation of Concerns)'를 최우선 원칙으로 삼아야 한다."**
|
||||
> 기능이 복잡해질수록, 코드는 반드시 경계가 명확한 모듈들로 분리되어야 합니다.
|
||||
|
||||
## 🔗 관련 키워드
|
||||
`Separation of Concerns`, `Modular Design`, `Microservices Pattern`
|
||||
---
|
||||
@@ -1,22 +0,0 @@
|
||||
---
|
||||
# 💡 Lesson Learned: 개발 환경 및 실행 프로세스 관리 (DevOps & DevOps)
|
||||
|
||||
## 🎯 문제 상황 (The Problem)
|
||||
이번 프로젝트는 단순히 코드를 짜고 끝나는 것이 아니라, **'어떻게 이 코드를 구동시킬 수 있는가?'**라는 물리적 절차의 중요성을 깨달았습니다. (오류 코드: `npm audit`, `index.html` 누락, 권한 오류 등)
|
||||
|
||||
## 🔬 근본 원인 (Root Cause)
|
||||
개발자는 종종 **'논리적 완성도(Logical Completion)'에만 집중**하고, 프로젝트를 실행하는 데 필요한 **물리적인 설정 파일(Configuration)**과 **운영체제 레벨의 환경 변수/권한** 관리에 소홀해지기 쉽습니다.
|
||||
|
||||
## ✅ 해결책 (The Solution)
|
||||
프로젝트 시작 시점에 다음 절차를 반드시 거쳐야 함을 확립했습니다:
|
||||
1. `npm install`: 필요한 모든 패키지를 설치한다.
|
||||
2. 환경 설정 확인: `public/index.html` 등 필수 진입점이 존재하는지 확인한다.
|
||||
3. 권한 확보: 운영체제 레벨에서 스크립트 실행 권한(Execution Policy)을 확보한다.
|
||||
|
||||
## 💡 교훈 (Lesson Learned)
|
||||
> **"코딩 능력만큼이나 중요한 것은 '운영 환경에 대한 이해'와 '체계적인 개발 프로세스 확립'이다."**
|
||||
> 프로젝트 관리자는 항상 이 세 가지 단계를 점검해야 합니다.
|
||||
|
||||
## 🔗 관련 키워드
|
||||
`DevOps`, `CI/CD Pipeline`, `Execution Policy`, `Build Environment`
|
||||
---
|
||||
@@ -1,19 +0,0 @@
|
||||
---
|
||||
# 💡 Lesson Learned: 시스템 시뮬레이션의 핵심 원리 (Simulation Design)
|
||||
|
||||
## 🎯 문제 상황 (The Problem)
|
||||
테트리스는 단순한 게임이 아니라, **물리 법칙(Physics)**과 **규칙 기반의 상태 변화**가 작동하는 작은 시뮬레이터였습니다. 이 경험을 통해 '시뮬레이션을 어떻게 설계해야 하는지'에 대한 깊은 이해를 얻었습니다.
|
||||
|
||||
## 🔬 근본 원인 (Root Cause)
|
||||
단순히 UI로 그리는 것에만 집중하면, 시스템이 **규칙(Ruleset)**과 **물리 법칙(Physics Law)**을 따르는 '가상 세계'의 느낌을 놓치기 쉽습니다.
|
||||
|
||||
## ✅ 해결책 (The Solution)
|
||||
게임 로직을 `gameWorker.js`에 완전히 분리하여, 모든 변화를 수학적 함수(`checkCollision`, `movePiece`)로 처리하고 그 결과를 상태(State)에 반영했습니다. 이는 곧 **"규칙이 물리 법칙처럼 작동하는 시스템"** 설계의 성공적인 예시입니다.
|
||||
|
||||
## 💡 교훈 (Lesson Learned)
|
||||
> **"모든 시뮬레이션은 '물리적 규칙'을 수학적으로 정의하고, 그 규칙을 절대 우회할 수 없도록 강제해야 한다."**
|
||||
> 이를 통해 우리는 단순한 게임을 넘어, 자율주행이나 물리 엔진에 적용 가능한 고수준의 시스템 모델링 능력을 갖추게 되었습니다.
|
||||
|
||||
## 🔗 관련 키워드
|
||||
`Simulation Design`, `Physics Engine`, `Ruleset Enforcement`, `Systemic Modeling`
|
||||
---
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-D3F316
|
||||
category: "[[10_Wiki/💡 Topics/General Knowledge]]"
|
||||
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]]
|
||||
# [[2026-04-15|2026-04-15]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - 2026-04-15"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/2026-04-15.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/2026-04-15.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-EB3F3C
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - 20k skinned instances demo"
|
||||
---
|
||||
|
||||
# [[20k skinned instances demo]]
|
||||
# [[20k skinned instances demo|20k skinned instances demo]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> '20k skinned instances demo'는 Three.js 기반의 오픈 소스 라이브러리인 InstancedMesh2를 활용하여 20,000개의 개별적인 스킨드 인스턴스(Skinned instances)를 동시에 렌더링하는 성능 최적화 데모입니다 [1, 2]. 이 데모는 모바일 기기에서도 3,000개의 인스턴스를 원활하게 구동할 수 있도록 설계되었습니다 [2]. 프러스텀 컬링, 거리 기반 애니메이션 프레임 조절, 다중 LOD(Level of Detail) 생성 등 다양한 최적화 기법을 적용하여 단 5번의 드로우 콜만으로 렌더링을 처리하는 것이 특징입니다 [2, 3].
|
||||
@@ -29,11 +29,11 @@ github_commit: "[P-Reinforce] Continuous Worker - 20k skinned instances demo"
|
||||
- **정책 변화:** AI 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[InstancedMesh2]], [[Frustum Culling]], [[Level of Detail (LOD)]], [[Skinned Mesh]], [[Draw Call]]
|
||||
- **Projects/Contexts:** [[three.js]]
|
||||
- **Related Topics:** [[InstancedMesh2|InstancedMesh2]], [[Frustum Culling|Frustum Culling]], [[Level of Detail (LOD)|Level of Detail (LOD)]], [[SkinnedMesh|Skinned Mesh]], [[Draw Call|Draw Call]]
|
||||
- **Projects/Contexts:** [[Threejs 성능 최적화|three.js]]
|
||||
- **Contradictions/Notes:** 본 텍스처(Bone texture)의 부분 업데이트(Partial texture updates) 기능은 PC 환경에서 60FPS를 달성하는 데 도움이 될 수 있는 최적화 기법이지만, 모바일 기기와 파이어폭스(Mozilla Firefox) 브라우저에서는 이중 버퍼링(Double buffering) 부재로 인해 오히려 속도가 느려지는 문제가 있어 본 데모에서는 비활성화된 상태로 제공되었습니다 [2, 7].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-19*
|
||||
- Raw Source: [[00_Raw/2026-04-20/20k skinned instances demo.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/20k skinned instances demo.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AI-AC09DA
|
||||
category: "[[10_Wiki/💡 Topics/Graphics & Performance]]"
|
||||
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)]]
|
||||
# [[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].
|
||||
@@ -27,11 +27,11 @@ github_commit: "[P-Reinforce] Batch 9 - Wikified 3D Gaussian Splatting (3DGS)"
|
||||
- **정책 변화:** Graphics & Performance 카테고리의 지식 연결망 강화를 위한 표준 위키화 적용.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[WebGPU]], [[WebGL]], [[Compute Shader]]
|
||||
- **Projects/Contexts:** [[WebSplatter]], [[CesiumJS]]
|
||||
- **Related Topics:** [[WebGPU|WebGPU]], [[WebGL|WebGL]], [[Compute Shader|Compute Shader]]
|
||||
- **Projects/Contexts:** WebSplatter, [[CesiumJS|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]]
|
||||
- Raw Source: 00_Raw/2026-04-20/3D Gaussian Splatting (3DGS).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AI-074AE7
|
||||
category: "[[10_Wiki/💡 Topics/Automation & Industry]]"
|
||||
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]]
|
||||
# [[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].
|
||||
@@ -24,11 +24,11 @@ github_commit: "[P-Reinforce] Batch 9 - Wikified 3D Web-based HMI"
|
||||
- **정책 변화:** Automation & Industry 카테고리의 지식 연결망 강화를 위한 표준 위키화 적용.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[SCADA]], [[WebGL]], [[Three.js]], [[WebSocket]], [[Frame Time Latency]]
|
||||
- **Projects/Contexts:** [[Genesis64 상용 제품과의 웹 기반 3D 렌더링 성능 벤치마크]]
|
||||
- **Related Topics:** [[SCADA|SCADA]], [[WebGL|WebGL]], [[Three.js|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]]
|
||||
- Raw Source: 00_Raw/2026-04-20/3D Web-based HMI.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-3DGS-001
|
||||
category: "[[10_Wiki/💡 Topics/Graphics]]"
|
||||
category: "10_Wiki/💡 Topics/Graphics"
|
||||
confidence_score: 0.95
|
||||
tags: [graphics, rendering, ai]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "initial-reinforce"
|
||||
---
|
||||
|
||||
# [[3D Gaussian Splatting (3DGS)]]
|
||||
# [[3D Gaussian Splatting (3DGS)|3D Gaussian Splatting (3DGS)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 포인트 클라우드를 넘어서 공간을 가속화된 가우시안 타원체로 표현함으로써 실시간 렌더링의 새로운 지평을 열다.
|
||||
@@ -24,6 +24,6 @@ github_commit: "initial-reinforce"
|
||||
- **정책 변화:** 렌더링 효율성(w1) 가중치를 높게 평가하여 그래픽스 카테고리의 최상단 지식으로 배치.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Parent:** [[10_Wiki/💡 Topics/Graphics]]
|
||||
- **Related:** [[NeRF]], [[Point-Cloud]], [[Radiance-Fields]]
|
||||
- **Raw Source:** [[00_Raw/2026-04-20/3D Gaussian Splatting (3DGS).md]]
|
||||
- **Parent:** 10_Wiki/💡 Topics/Graphics
|
||||
- **Related:** NeRF, Point-Cloud, Radiance-Fields
|
||||
- **Raw Source:** 00_Raw/2026-04-20/3D Gaussian Splatting (3DGS).md
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-HMI-001
|
||||
category: "[[10_Wiki/💡 Topics/Graphics]]"
|
||||
category: "10_Wiki/💡 Topics/Graphics"
|
||||
confidence_score: 0.90
|
||||
tags: [web, hmi, interface, 3d]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "initial-reinforce"
|
||||
---
|
||||
|
||||
# [[3D Web-based HMI]]
|
||||
# [[3D Web-based HMI|3D Web-based HMI]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 산업용 제어 인터페이스를 브라우저 환경에서 3D로 시각화하여 정보의 직관성과 조작성을 극대화하다.
|
||||
@@ -24,6 +24,6 @@ github_commit: "initial-reinforce"
|
||||
- **정책 변화:** 구조적 연결성(w2) 관점에서 디지털 트윈 아키텍처와 통합 분석 필요성 제기.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Parent:** [[10_Wiki/💡 Topics/Graphics]]
|
||||
- **Related:** [[Three.js]], [[Digital-Twin]], [[SCADA]]
|
||||
- **Raw Source:** [[00_Raw/2026-04-20/3D Web-based HMI.md]]
|
||||
- **Parent:** 10_Wiki/💡 Topics/Graphics
|
||||
- **Related:** [[Three.js|Three.js]], [[Digital_Twin|Digital-Twin]], [[SCADA|SCADA]]
|
||||
- **Raw Source:** 00_Raw/2026-04-20/3D Web-based HMI.md
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AI-91A92D
|
||||
category: "[[10_Wiki/💡 Topics/Psychology & Behavior]]"
|
||||
category: "10_Wiki/💡 Topics/Psychology & Behavior"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 9 - Wikified ABA(Applied Behavior Analysis)"
|
||||
---
|
||||
|
||||
# [[ABA(Applied Behavior Analysis)]]
|
||||
# [[ABA(Applied Behavior Analysis)|ABA(Applied Behavior Analysis)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
>
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 9 - Wikified ABA(Applied Behavior Analysis)"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/ABA(Applied Behavior Analysis).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/ABA(Applied Behavior Analysis).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-ABA-001
|
||||
category: "[[10_Wiki/💡 Topics/Psychology]]"
|
||||
category: "10_Wiki/💡 Topics/Psychology"
|
||||
confidence_score: 0.88
|
||||
tags: [psychology, behavior, intervention]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "initial-reinforce"
|
||||
---
|
||||
|
||||
# [[ABA (Applied Behavior Analysis)]]
|
||||
# [[ABA(Applied Behavior Analysis)|ABA (Applied Behavior Analysis)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 행동의 원인을 환경과의 상호작용에서 찾아내고 이를 체계적으로 수정하여 삶의 질을 높이는 과학적 접근법.
|
||||
@@ -24,6 +24,6 @@ github_commit: "initial-reinforce"
|
||||
- **정책 변화:** 사용자 만족도(w3) 피드백에 따라 윤리적 고려 사항 링크 비중 강화.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Parent:** [[10_Wiki/💡 Topics/Psychology]]
|
||||
- **Related:** [[Operant-Conditioning]], [[Neurodiversity-Affirming]], [[FBA]]
|
||||
- **Raw Source:** [[00_Raw/2026-04-20/ABA(Applied Behavior Analysis).md]]
|
||||
- **Parent:** 10_Wiki/💡 Topics/Psychology
|
||||
- **Related:** [[Operant Conditioning|Operant-Conditioning]], Neurodiversity-Affirming, FBA
|
||||
- **Raw Source:** 00_Raw/2026-04-20/ABA(Applied Behavior Analysis).md
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AI-CEA4CC
|
||||
category: "[[10_Wiki/💡 Topics/Health & Science]]"
|
||||
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]]
|
||||
# [[ACL-Injury-Prevention-Protocols|ACL-Injury-Prevention-Protocols]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
>
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 9 - Wikified ACL-Injury-Prevention-Protocols
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/ACL-Injury-Prevention-Protocols.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/ACL-Injury-Prevention-Protocols.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-HEALTH-001
|
||||
category: "[[10_Wiki/💡 Topics/Health]]"
|
||||
category: "10_Wiki/💡 Topics/Health"
|
||||
confidence_score: 0.89
|
||||
tags: [health, sports, injury, prevention]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "batch-reinforce-01"
|
||||
---
|
||||
|
||||
# [[ACL Injury Prevention Protocols]]
|
||||
# [[ACL-Injury-Prevention-Protocols|ACL Injury Prevention Protocols]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 전방십자인대 부상 위험을 최소화하기 위해 바이오메카닉 분석과 신경근 훈련을 결합한 과학적 예방 체계.
|
||||
@@ -24,6 +24,6 @@ github_commit: "batch-reinforce-01"
|
||||
- **정책 변화:** 지식 연결성(w2) 관점에서 바이오메카닉과 스포츠 심리학의 연계성 강화.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Parent:** [[10_Wiki/💡 Topics/Health]]
|
||||
- **Related:** [[Neuromuscular-Control]], [[Sports-Science]], [[Proprioception]]
|
||||
- **Raw Source:** [[00_Raw/2026-04-20/ACL-Injury-Prevention-Protocols.md]]
|
||||
- **Parent:** 10_Wiki/💡 Topics/Health
|
||||
- **Related:** [[Neuromuscular-Control|Neuromuscular-Control]], Sports-Science, [[Proprioception|Proprioception]]
|
||||
- **Raw Source:** 00_Raw/2026-04-20/ACL-Injury-Prevention-Protocols.md
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-92F236
|
||||
category: "[[10_Wiki/💡 Topics/AI & Tools]]"
|
||||
category: "10_Wiki/💡 Topics/AI & Tools"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 10 - Wikified AI Connect LLM Tool"
|
||||
---
|
||||
|
||||
# [[AI Connect LLM Tool]]
|
||||
# [[AI Connect LLM Tool|AI Connect LLM Tool]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> **Connect AI**는 100% 로컬 및 오프라인 환경에서 작동하는 VS Code 전용 프리미엄 AI 코딩 에이전트입니다. 외부 서버 연결 없이 사용자의 하드웨어(Ollama/LM Studio)를 직접 활용하여 파일 생성, 편집, 터미널 명령 실행 및 개인 지식 기반(Second Brain) 연동을 지원합니다.
|
||||
@@ -20,8 +20,8 @@ github_commit: "[P-Reinforce] Batch 10 - Wikified AI Connect LLM Tool"
|
||||
- **정책 변화:** AI & Tools 분야의 체계적 지식 자산화 진행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[Ollama]], [[LM Studio]], [[VS Code Extension Development]], [[Agentic AI]]
|
||||
- **Projects/Contexts:** [[Connect-AI-Lab]], [[EZERAI Infrastructure]]
|
||||
- **Related Topics:** Ollama, LM Studio, VS Code Extension Development, Agentic AI
|
||||
- **Projects/Contexts:** Connect-AI-Lab, EZERAI Infrastructure
|
||||
- **Contradictions/Notes:**
|
||||
- **통합 구조:** 현재 프로젝트는 모든 로직(UI, 통신, 에이전트)이 `extension.ts` 하나에 집중된 모놀리식 구조를 가지고 있어, 향후 대규모 기능 추가 시 모듈화가 권장됩니다.
|
||||
- **보안:** 모든 작업이 로컬에서 이루어지므로 기업 보안 환경에 매우 적합하나, `run_command` 실행 시 사용자의 최종 확인 절차가 보완될 필요가 있습니다.
|
||||
@@ -35,5 +35,5 @@ github_commit: "[P-Reinforce] Batch 10 - Wikified AI Connect LLM Tool"
|
||||
# 🕵️ 프로젝트 코드 리뷰 리포트
|
||||
|
||||
`/Volumes/Data/project/Antigravity/local_module/resource` 프로젝트에 대한 상세 코드 리뷰 결과입니다.
|
||||
- Raw Source: [[00_Raw/2026-04-20/AI Connect LLM Tool.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AI Connect LLM Tool.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-2BB419
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - AI Safety (AI 안전)"
|
||||
---
|
||||
|
||||
# [[AI Safety (AI 안전)]]
|
||||
# [[AI Safety (AI 안전)|AI Safety (AI 안전)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - AI Safety (AI 안전)"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/AI Safety (AI 안전).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AI Safety (AI 안전).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-0C244E
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - AI 거버넌스 정책(AI Usage Policy)"
|
||||
---
|
||||
|
||||
# [[AI 거버넌스 정책(AI Usage Policy)]]
|
||||
# [[AI 거버넌스 정책(AI Usage Policy)|AI 거버넌스 정책(AI Usage Policy)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -32,11 +32,11 @@ github_commit: "[P-Reinforce] Continuous Worker - AI 거버넌스 정책(AI Usag
|
||||
- **정책 변화:** AI 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[Human-in-the-loop]], [[데이터 프라이버시(Data Privacy)]], [[ISO 42001]], [[NIST AI RMF]]
|
||||
- **Projects/Contexts:** [[조직 내 안전한 AI 도입 및 기업 거버넌스(Enterprise AI Adoption and Governance)]]
|
||||
- **Related Topics:** Human-in-the-loop, 데이터 프라이버시(Data Privacy), ISO 42001, NIST AI RMF
|
||||
- **Projects/Contexts:** 조직 내 안전한 AI 도입 및 기업 거버넌스(Enterprise AI Adoption and Governance)
|
||||
- **Contradictions/Notes:** 소스에 따르면 AI 정책 문서는 초기에 IT나 법무 부서 단독으로 작성하고 소유하기 쉬우나, 이러한 방식은 병목 현상을 유발할 수 있으며 실제 성공적인 장기 정착을 위해서는 직원과의 관계 및 변경 관리 전문성을 갖춘 HR 부서를 비롯한 교차 기능적인 소유권(Cross-functional ownership)이 필수적이라고 강조합니다 [18, 19, 26].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-19*
|
||||
- Raw Source: [[00_Raw/2026-04-20/AI 거버넌스 정책(AI Usage Policy).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AI 거버넌스 정책(AI Usage Policy).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-254BE9
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - AI 생성 코드 검증(AI Code Assurance)"
|
||||
---
|
||||
|
||||
# [[AI 생성 코드 검증(AI Code Assurance)]]
|
||||
# [[AI 생성 코드 검증(AI Code Assurance)|AI 생성 코드 검증(AI Code Assurance)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> AI Code Assurance(AI 생성 코드 검증)는 AI가 생성하거나 지원한 코드로 인해 발생할 수 있는 고유한 품질 및 보안 위험을 해결하기 위해 설계된 워크플로우이자 검증 프로세스입니다 [1]. 이를 통해 조직은 AI가 작성한 코드가 프로덕션 환경에 배포되기 전에 엄격한 보안, 신뢰성 및 품질 표준을 충족하는지 확인할 수 있습니다 [1, 2]. 주로 정적 애플리케이션 보안 테스트(SAST)와 자동화된 코드 리뷰를 활용하여 결함과 취약점을 조기에 식별하고 일관된 표준을 강제합니다 [2, 3].
|
||||
@@ -29,11 +29,11 @@ github_commit: "[P-Reinforce] Continuous Worker - AI 생성 코드 검증(AI Cod
|
||||
- **정책 변화:** AI 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[Static Application Security Testing (SAST)]], [[Model Context Protocol (MCP)]], [[Automated Code Review]]
|
||||
- **Projects/Contexts:** [[SonarQube Server]], [[SonarQube Cloud]]
|
||||
- **Related Topics:** [[Static Application Security Testing (SAST)|Static Application Security Testing (SAST)]], [[Model Context Protocol (MCP)|Model Context Protocol (MCP)]], Automated Code Review
|
||||
- **Projects/Contexts:** SonarQube Server, SonarQube Cloud
|
||||
- **Contradictions/Notes:** 소스에 따르면 AI 어시스턴트가 생성하는 코드는 본질적으로 일관성이 없고 예측하기 어려울 수 있지만, 이에 적용되는 정적 코드 분석 기술은 '결정론적(deterministic)'이므로 AI 코드의 불확실성을 극복하고 신뢰할 수 있는 독립적인 검증을 제공할 수 있다고 강조합니다 [4].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-19*
|
||||
- Raw Source: [[00_Raw/2026-04-20/AI 생성 코드 검증(AI Code Assurance).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AI 생성 코드 검증(AI Code Assurance).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-CA155B
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - AI 에이전트 (AI Agent)"
|
||||
---
|
||||
|
||||
# [[AI 에이전트 (AI Agent)]]
|
||||
# [[AI 에이전트 (AI Agent)|AI 에이전트 (AI Agent)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - AI 에이전트 (AI Agent)"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/AI 에이전트 (AI Agent).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AI 에이전트 (AI Agent).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-4DB2F8
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - AI 코드 리뷰 및 보안 취약점 점검(DevSecOps)"
|
||||
---
|
||||
|
||||
# [[AI 코드 리뷰 및 보안 취약점 점검(DevSecOps)]]
|
||||
# [[AI 코드 리뷰 및 보안 취약점 점검(DevSecOps)|AI 코드 리뷰 및 보안 취약점 점검(DevSecOps)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> AI 코드 리뷰 및 보안 취약점 점검(DevSecOps)은 소프트웨어 개발 수명 주기(SDLC)의 초기 단계에 AI 기반의 자동화된 정적 분석(SAST)과 인간의 수동 리뷰를 결합하여 코드의 품질과 보안을 선제적으로 확보하는 프로세스입니다 [1, 2]. 개발자는 IDE 내부나 CI/CD 파이프라인의 Pull Request(PR) 단계에서 실시간으로 버그, 로직 결함, 보안 취약점(예: 인젝션, 민감 정보 노출)을 식별하고 수정할 수 있습니다 [3-6]. 결과적으로 기계적이고 반복적인 코드 스타일 검사 및 패턴 기반 취약점 탐지는 AI에 위임하고, 인간은 아키텍처 결정이나 도메인 종속적인 비즈니스 로직을 검토하는 '하이브리드' 방식을 통해 개발 속도와 보안성의 균형을 맞춥니다 [2, 7, 8].
|
||||
@@ -30,11 +30,11 @@ github_commit: "[P-Reinforce] Continuous Worker - AI 코드 리뷰 및 보안
|
||||
- **정책 변화:** AI 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[정적 애플리케이션 보안 테스트(SAST)]], [[시프트 레프트(Shift-Left)]], [[하이브리드 코드 리뷰]]
|
||||
- **Projects/Contexts:** [[CI/CD 파이프라인 통합 및 Git 훅(Hooks)]]
|
||||
- **Related Topics:** [[정적 애플리케이션 보안 테스트(SAST)|정적 애플리케이션 보안 테스트(SAST)]], [[시프트 레프트(Shift-Left)|시프트 레프트(Shift-Left)]], [[하이브리드 코드 리뷰|하이브리드 코드 리뷰]]
|
||||
- **Projects/Contexts:** [[CI_CD 파이프라인 통합 및 Git 훅(Hooks)|CI/CD 파이프라인 통합 및 Git 훅(Hooks)]]
|
||||
- **Contradictions/Notes:** 자동화 도구를 적극적으로 옹호하는 입장에서는 AI 기반 코드 리뷰와 수정안 자동 생성 기능이 개발자의 업무를 크게 대체하고 생산성을 극대화한다고 주장하지만, 보안 전문가 및 실제 성능 벤치마크 결과(Augment Code 등)에 따르면 자동화 도구는 여전히 30~60%의 오탐률을 보이며 실제 취약점의 약 22%를 놓치는 근본적 사각지대가 존재하므로, 아키텍처 설계와 비즈니스 로직에는 기계가 아닌 인간의 수동 판단이 필수 불가결하다고 반박합니다.
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-18*
|
||||
- Raw Source: [[00_Raw/2026-04-20/AI 코드 리뷰 및 보안 취약점 점검(DevSecOps).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AI 코드 리뷰 및 보안 취약점 점검(DevSecOps).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-76F9E4
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - AI 코드 리뷰"
|
||||
---
|
||||
|
||||
# [[AI 코드 리뷰]]
|
||||
# [[AI 코드 리뷰|AI 코드 리뷰]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> AI 코드 리뷰는 인공지능 에이전트나 머신러닝(ML) 기반의 정적 분석 도구(SAST)를 활용하여 소스 코드의 결함, 보안 취약점, 스타일 위반 및 로직 오류를 식별하는 자동화 프로세스입니다 [1-3]. IDE, CI/CD 파이프라인, 풀 리퀘스트(PR) 등 개발 워크플로우에 통합되어 개발자에게 실시간에 가까운 피드백과 자동 수정(Auto-fix) 제안을 제공합니다 [2, 4-8]. 이를 통해 코드 리뷰의 대기 시간을 줄이고 일관된 품질 표준을 강제할 수 있지만, 아키텍처 의도나 비즈니스 로직의 문맥을 깊이 이해하는 데는 한계가 있어 인간 검토자와의 하이브리드 접근 방식이 필수적으로 요구됩니다 [5, 9-12].
|
||||
@@ -23,11 +23,11 @@ github_commit: "[P-Reinforce] Continuous Worker - AI 코드 리뷰"
|
||||
- **정책 변화:** AI 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[SAST]], [[풀 리퀘스트(Pull Request)]], [[DevSecOps]]
|
||||
- **Projects/Contexts:** [[SonarQube]], [[Snyk Code]], [[GitHub Advanced Security]], [[Corgea]]
|
||||
- **Related Topics:** [[SAST|SAST]], [[풀 리퀘스트 (Pull Request)|풀 리퀘스트(Pull Request)]], [[DevSecOps|DevSecOps]]
|
||||
- **Projects/Contexts:** [[SonarQube|SonarQube]], Snyk Code, GitHub Advanced Security, [[Corgea|Corgea]]
|
||||
- **Contradictions/Notes:** AI 코드 리뷰 도구의 도입만으로는 배포 성능이나 품질이 보장되지 않는다는 점에 유의해야 합니다. 맹목적인 도구 도입과 높은 AI 사용률에도 불구하고 실제 PR 처리 시간이나 재작업 비율은 개선되지 않을 수 있으므로, 결과(DORA 지표 등)에 기반한 관리가 중요합니다 [35-37]. 또한 일부 AI 네이티브 도구들은 오탐률을 혁신적으로 줄였다고 주장하지만(예: Corgea 5% 미만, Veracode 1.1% 미만), 근본적으로 어떠한 도구도 오탐을 완벽히 제거할 수는 없으므로 인간의 검토와 검증 과정이 반드시 수반되어야 합니다 [38-40].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-19*
|
||||
- Raw Source: [[00_Raw/2026-04-20/AI 코드 리뷰.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AI 코드 리뷰.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-8DB819
|
||||
category: "[[10_Wiki/💡 Topics/AI & Narrative]]"
|
||||
category: "10_Wiki/💡 Topics/AI & Narrative"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 10 - Wikified AI-Driven Narrative Systems"
|
||||
---
|
||||
|
||||
# [[AI-Driven Narrative Systems]]
|
||||
# [[AI-Driven Narrative Systems|AI-Driven Narrative Systems]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 내용 요약 예정
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 10 - Wikified AI-Driven Narrative Systems"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/AI-Driven Narrative Systems.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AI-Driven Narrative Systems.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-37563B
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - AI와 기계에게 검열 맡기기_ - 정적 분석 툴 (ESLint Prettier))"
|
||||
---
|
||||
|
||||
# [[AI와 기계에게 검열 맡기기_ - 정적 분석 툴 (ESLint Prettier))]]
|
||||
# [[AI와 기계에게 검열 맡기기_ - 정적 분석 툴 (ESLint Prettier))|AI와 기계에게 검열 맡기기_ - 정적 분석 툴 (ESLint Prettier))]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 현대 소프트웨어 개발에서는 주관적이고 반복적인 코드 평가 작업을 ESLint, Prettier와 같은 결정론적 도구와 AI 기반 에이전트(기계)에게 위임하여 코드를 자동으로 '검열'하는 구조를 갖추고 있습니다 [1]. Linter인 ESLint는 추상 구문 트리(AST)를 분석해 문법적 오류와 잠재적 버그를 식별하며, Formatter인 Prettier는 줄 바꿈이나 들여쓰기 등 시각적 일관성을 강제합니다 [2]. 나아가 단순한 패턴 매칭을 넘어 LLM 기반의 AI 정적 분석 도구(SAST)를 도입함으로써 문맥을 이해하고 복잡한 취약점을 분석하는 '에이전트적 거버넌스'로 진화하고 있습니다 [3, 4].
|
||||
@@ -34,11 +34,11 @@ github_commit: "[P-Reinforce] Continuous Worker - AI와 기계에게 검열 맡
|
||||
- **정책 변화:** AI 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[SAST (정적 애플리케이션 보안 테스트)]], [[AST (추상 구문 트리)]], [[Husky & lint-staged]]
|
||||
- **Projects/Contexts:** [[Git Pre-commit 훅을 활용한 개발 워크플로우 자동화]], [[AI 코드 리뷰 및 보안 취약점 점검(DevSecOps)]]
|
||||
- **Related Topics:** [[SAST (정적 애플리케이션 보안 테스트)|SAST (정적 애플리케이션 보안 테스트)]], [[AST (추상 구문 트리)|AST (추상 구문 트리)]], [[Husky & lint-staged|Husky & lint-staged]]
|
||||
- **Projects/Contexts:** [[Git Pre-commit 훅을 활용한 개발 워크플로우 자동화|Git Pre-commit 훅을 활용한 개발 워크플로우 자동화]], [[AI 코드 리뷰 및 보안 취약점 점검(DevSecOps)|AI 코드 리뷰 및 보안 취약점 점검(DevSecOps)]]
|
||||
- **Contradictions/Notes:** 소스는 기계 주도의 검열이 개발 생산성과 코드 품질을 높인다고 긍정적으로 평가하면서도, 동시에 AI 모델이 실제 취약점의 일부를 놓치고 개발자의 비판적 사고를 약화시켜 표면적 문제 해결에 집착하는 '녹색 체크마크 증후군'을 초래할 수 있다는 역설적 한계를 분명히 지적합니다 [23, 24, 26].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-18*
|
||||
- Raw Source: [[00_Raw/2026-04-20/AI와 기계에게 검열 맡기기_ - 정적 분석 툴 (ESLint & Prettier)).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AI와 기계에게 검열 맡기기_ - 정적 분석 툴 (ESLint & Prettier)).md
|
||||
---
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# [[AI와 기계에게 검열 맡기기" - 정적 분석 툴 (ESLint & Prettier))]]
|
||||
# [[AI와 기계에게 검열 맡기기_ - 정적 분석 툴 (ESLint Prettier))|AI와 기계에게 검열 맡기기" - 정적 분석 툴 (ESLint & Prettier))]]
|
||||
|
||||
## 📌 Brief Summary
|
||||
현대 소프트웨어 개발에서는 주관적이고 반복적인 코드 평가 작업을 ESLint, Prettier와 같은 결정론적 도구와 AI 기반 에이전트(기계)에게 위임하여 코드를 자동으로 '검열'하는 구조를 갖추고 있습니다 [1]. Linter인 ESLint는 추상 구문 트리(AST)를 분석해 문법적 오류와 잠재적 버그를 식별하며, Formatter인 Prettier는 줄 바꿈이나 들여쓰기 등 시각적 일관성을 강제합니다 [2]. 나아가 단순한 패턴 매칭을 넘어 LLM 기반의 AI 정적 분석 도구(SAST)를 도입함으로써 문맥을 이해하고 복잡한 취약점을 분석하는 '에이전트적 거버넌스'로 진화하고 있습니다 [3, 4].
|
||||
@@ -21,8 +21,8 @@
|
||||
* 하지만 자동화에 과도하게 의존할 경우, 개발자의 비판적 사고 근육이 퇴화하고 자동화 도구의 검사만 통과하면 된다고 여기는 '녹색 체크마크 증후군(Green Check Mark Syndrome)'을 유발할 수 있습니다 [23, 24]. 또한 AI 도구 역시 전체 취약점의 약 22%를 놓치는 사각지대가 존재하므로, 아키텍처 설계와 도메인 비즈니스 로직 등 고위험 검토에는 여전히 인간의 판단(Human-in-the-loop)이 필수적입니다 [24-26].
|
||||
|
||||
## 🔗 Knowledge Connections
|
||||
- **Related Topics:** [[SAST (정적 애플리케이션 보안 테스트)]], [[AST (추상 구문 트리)]], [[Husky & lint-staged]]
|
||||
- **Projects/Contexts:** [[Git Pre-commit 훅을 활용한 개발 워크플로우 자동화]], [[AI 코드 리뷰 및 보안 취약점 점검(DevSecOps)]]
|
||||
- **Related Topics:** [[SAST (정적 애플리케이션 보안 테스트)|SAST (정적 애플리케이션 보안 테스트)]], [[AST (추상 구문 트리)|AST (추상 구문 트리)]], [[Husky & lint-staged|Husky & lint-staged]]
|
||||
- **Projects/Contexts:** [[Git Pre-commit 훅을 활용한 개발 워크플로우 자동화|Git Pre-commit 훅을 활용한 개발 워크플로우 자동화]], [[AI 코드 리뷰 및 보안 취약점 점검(DevSecOps)|AI 코드 리뷰 및 보안 취약점 점검(DevSecOps)]]
|
||||
- **Contradictions/Notes:** 소스는 기계 주도의 검열이 개발 생산성과 코드 품질을 높인다고 긍정적으로 평가하면서도, 동시에 AI 모델이 실제 취약점의 일부를 놓치고 개발자의 비판적 사고를 약화시켜 표면적 문제 해결에 집착하는 '녹색 체크마크 증후군'을 초래할 수 있다는 역설적 한계를 분명히 지적합니다 [23, 24, 26].
|
||||
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-46B173
|
||||
category: "[[10_Wiki/💡 Topics/Graphics & Performance]]"
|
||||
category: "10_Wiki/💡 Topics/Graphics & Performance"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - ANGLE (Almost Native Graphics Layer Engine)"
|
||||
---
|
||||
|
||||
# [[ANGLE (Almost Native Graphics Layer Engine)]]
|
||||
# [[ANGLE (Almost Native Graphics Layer Engine)|ANGLE (Almost Native Graphics Layer Engine)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> ANGLE(Almost Native Graphics Layer Engine)은 주로 Windows 플랫폼의 웹 브라우저(Chrome, Firefox, Opera 등)에서 사용되는 그래픽 명령어 변환기입니다. 이 엔진은 WebGL의 OpenGL ES 호출을 Direct3D 11 또는 12 명령으로 변환하는 역할을 수행합니다 [1, 2]. 고도로 최적화되어 있지만, 변환 과정에서 각 드로우 콜(Draw call)마다 고정된 마이크로 레이턴시(Micro-latency)를 유발하는 성능적 특징이 있습니다 [1, 3].
|
||||
@@ -23,11 +23,11 @@ github_commit: "[P-Reinforce] Continuous Worker - ANGLE (Almost Native Graphics
|
||||
- **정책 변화:** Graphics & Performance 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[WebGL]], [[OpenGL ES]], [[Direct3D]], [[Micro-latency]], [[Draw Call]]
|
||||
- **Projects/Contexts:** [[Chrome]], [[Firefox]], [[Opera]]
|
||||
- **Related Topics:** [[WebGL|WebGL]], [[OpenGL ES|OpenGL ES]], [[Direct3D|Direct3D]], [[Micro-latency|Micro-latency]], [[Draw Call|Draw Call]]
|
||||
- **Projects/Contexts:** [[Chrome|Chrome]], [[Firefox|Firefox]], [[Opera|Opera]]
|
||||
- **Contradictions/Notes:** ANGLE은 브라우저에서 원활한 그래픽 처리를 위해 도입된 고도로 최적화된 변환기이지만, 드로우 콜이 많은 환경에서는 역설적이게도 이 변환 작업 자체가 누적되어 CPU 병목을 일으키는 주된 원인이 됩니다 [3].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-19*
|
||||
- Raw Source: [[00_Raw/2026-04-20/ANGLE (Almost Native Graphics Layer Engine).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/ANGLE (Almost Native Graphics Layer Engine).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-26A7F5
|
||||
category: "[[10_Wiki/💡 Topics/Graphics & Performance]]"
|
||||
category: "10_Wiki/💡 Topics/Graphics & Performance"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch - Wikified ANGLE"
|
||||
---
|
||||
|
||||
# [[ANGLE]]
|
||||
# [[ANGLE|ANGLE]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> ANGLE(Almost Native Graphics Layer Engine)은 Windows 플랫폼에서 WebGL(OpenGL ES) 명령을 Direct3D 11 또는 12로 변환해 주는 변환기(translator)입니다 [1, 2]. Chrome, Firefox, Opera와 같은 브라우저에서 널리 사용되며, 고도로 최적화되어 있음에도 불구하고 그래픽 파이프라인의 명령 제출(command submission) 단계에서 마이크로 레이턴시(micro-latency)를 유발하는 주요 원인 중 하나로 작용합니다 [1-3].
|
||||
@@ -23,11 +23,11 @@ github_commit: "[P-Reinforce] Mega Batch - Wikified ANGLE"
|
||||
- **정책 변화:** Graphics & Performance 카테고리의 전문성 확보 및 링크 밀도 최적화.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[WebGL]], [[OpenGL ES]], [[Direct3D]], [[Micro-latency]]
|
||||
- **Projects/Contexts:** [[Web Graphics Pipelines]]
|
||||
- **Related Topics:** [[WebGL|WebGL]], [[OpenGL ES|OpenGL ES]], [[Direct3D|Direct3D]], [[Micro-latency|Micro-latency]]
|
||||
- **Projects/Contexts:** Web Graphics Pipelines
|
||||
- **Contradictions/Notes:** ANGLE의 변환 작업은 "고도로 최적화(highly optimized)"되어 있지만, 역설적으로 많은 드로우 콜을 요구하는 환경에서는 이 최적화된 변환 작업조차 누적되어 CPU 병목의 주요 원인이 됩니다 [3].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-19*
|
||||
- Raw Source: [[00_Raw/2026-04-20/ANGLE.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/ANGLE.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-03FE7E
|
||||
category: "[[10_Wiki/💡 Topics/Design & Experience]]"
|
||||
category: "10_Wiki/💡 Topics/Design & Experience"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch - Wikified AODA-Accessibility-for-Ontarians-with-Disabilities-Act"
|
||||
---
|
||||
|
||||
# [[AODA-Accessibility-for-Ontarians-with-Disabilities-Act]]
|
||||
# [[AODA-Accessibility-for-Ontarians-with-Disabilities-Act|AODA-Accessibility-for-Ontarians-with-Disabilities-Act]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 요약 작업 진행 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Mega Batch - Wikified AODA-Accessibility-for-Ontar
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/AODA-Accessibility-for-Ontarians-with-Disabilities-Act.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AODA-Accessibility-for-Ontarians-with-Disabilities-Act.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-9FD5CF
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - API 응답 모델링 및 상태 머신(State Machine) 설계"
|
||||
---
|
||||
|
||||
# [[API 응답 모델링 및 상태 머신(State Machine) 설계]]
|
||||
# [[API 응답 모델링 및 상태 머신(State Machine) 설계|API 응답 모델링 및 상태 머신(State Machine) 설계]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> TypeScript에서 API 응답과 상태 머신을 설계할 때는 식별 가능한 유니온(Discriminated Unions) 패턴이 핵심적으로 활용된다 [1, 2]. 이 패턴은 공통 판별자(Discriminant) 속성을 통해 데이터의 다양한 상태를 구분하며, 유효하지 않은 상태가 코드에 표현되는 것을 원천적으로 차단한다 [1, 3, 4]. 결과적으로 네트워크 요청의 다양한 결과나 복잡한 UI 상태 전이를 컴파일 단계에서 안전하게 모델링하고 관리할 수 있도록 보장한다 [2, 5, 6].
|
||||
@@ -30,11 +30,11 @@ github_commit: "[P-Reinforce] Continuous Worker - API 응답 모델링 및 상
|
||||
- **정책 변화:** AI 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[식별 가능한 유니온(Discriminated Unions)]], [[완전성 검사(Exhaustiveness Checking)]], [[타입 좁히기(Type Narrowing)]]
|
||||
- **Projects/Contexts:** [[비동기 데이터 패칭(Async Data Fetching)]], [[상태 머신 기반 UI 폼 및 라우터 관리]]
|
||||
- **Related Topics:** [[식별 가능한 유니온(Discriminated Unions)|식별 가능한 유니온(Discriminated Unions)]], [[완전성 검사(Exhaustiveness Checking)|완전성 검사(Exhaustiveness Checking)]], [[타입 좁히기(Type Narrowing)|타입 좁히기(Type Narrowing)]]
|
||||
- **Projects/Contexts:** 비동기 데이터 패칭(Async Data Fetching), 상태 머신 기반 UI 폼 및 라우터 관리
|
||||
- **Contradictions/Notes:** API 응답 데이터를 변환할 때 타입 캐스팅(`as`)을 사용하면 잉여 속성이 존재하거나 형태가 잘못되어도 컴파일러가 이를 조용히 허용하여 안전성이 떨어질 수 있다. 따라서 엄격한 타입 계약을 강제하기 위해서는 `as` 대신 `satisfies` 키워드를 활용하는 것이 권장된다 [14, 15].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-18*
|
||||
- Raw Source: [[00_Raw/2026-04-20/API 응답 모델링 및 상태 머신(State Machine) 설계.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/API 응답 모델링 및 상태 머신(State Machine) 설계.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-09EEF3
|
||||
category: "[[10_Wiki/💡 Topics/Design & Experience]]"
|
||||
category: "10_Wiki/💡 Topics/Design & Experience"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - API 응답 및 상태 모델링 (State Modeling and API Responses)"
|
||||
---
|
||||
|
||||
# [[API 응답 및 상태 모델링 (State Modeling and API Responses)]]
|
||||
# [[API 응답 및 상태 모델링 (State Modeling and API Responses)|API 응답 및 상태 모델링 (State Modeling and API Responses)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> API 응답 및 상태 모델링은 애플리케이션에서 발생할 수 있는 네트워크 통신 결과나 UI의 변화 과정을 타입 시스템을 통해 안전하고 예측 가능하게 설계하는 기법이다 [1, 2]. 이 모델링은 주로 식별 가능한 유니온(Discriminated Unions)이나 명시적인 Result 객체를 활용하여 존재해서는 안 될 유효하지 않은 상태를 원천적으로 차단한다 [3, 4]. 궁극적으로 컴파일러가 모든 가능한 응답 상태를 검사(Exhaustiveness checking)하도록 강제함으로써, 런타임 버그를 줄이고 코드의 안정성과 가독성을 높여준다 [5-7].
|
||||
@@ -30,11 +30,11 @@ github_commit: "[P-Reinforce] Continuous Worker - API 응답 및 상태 모델
|
||||
- **정책 변화:** Design & Experience 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[식별 가능한 유니온 (Discriminated Unions)]], [[완전성 검사 (Exhaustiveness checking)]], [[Result 타입 (Result Type)]]
|
||||
- **Projects/Contexts:** [[상태 머신 (State Machine)]], [[오류 처리 아키텍처 (Error Handling Architecture)]]
|
||||
- **Related Topics:** [[식별 가능한 유니온 (Discriminated Unions)|식별 가능한 유니온 (Discriminated Unions)]], [[완전성 검사(Exhaustiveness Checking)|완전성 검사 (Exhaustiveness checking)]], Result 타입 (Result Type)
|
||||
- **Projects/Contexts:** 상태 머신 (State Machine), 오류 처리 아키텍처 (Error Handling Architecture)
|
||||
- **Contradictions/Notes:** API나 시스템의 에러 응답을 모델링할 때 'Result 타입'을 사용하는 방식에 대해 개발자 간의 이견이 존재한다. 예상된 실패를 Result로 강제 반환하면 실행 흐름이 예측 가능해진다는 찬성 측 주장이 있는 반면, 전역 예외 처리기(Global Exception Handler)를 사용하는 쪽이 예외를 단순히 위로 올려보낼 수 있어 불필요한 보일러플레이트 코드 및 과도한 제어 흐름 분기(`switch`문 등)를 줄이고 컨트롤러를 더 깔끔하게 유지할 수 있다는 반대 주장도 팽팽하게 맞선다 [7, 20, 26-31].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-18*
|
||||
- Raw Source: [[00_Raw/2026-04-20/API 응답 및 상태 모델링 (State Modeling and API Responses).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/API 응답 및 상태 모델링 (State Modeling and API Responses).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-B2F9C0
|
||||
category: "[[10_Wiki/💡 Topics/Programming & Language]]"
|
||||
category: "10_Wiki/💡 Topics/Programming & Language"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - API 응답 및 에러 핸들링 아키텍처"
|
||||
---
|
||||
|
||||
# [[API 응답 및 에러 핸들링 아키텍처]]
|
||||
# [[API 응답 및 에러 핸들링 아키텍처|API 응답 및 에러 핸들링 아키텍처]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> API 응답 및 에러 핸들링 아키텍처는 시스템 내에서 발생하는 에러를 예상 가능한 것과 그렇지 않은 것으로 구분하고, 이를 클라이언트에게 일관되고 예측 가능한 형태로 전달하기 위한 설계 방식입니다. 주로 '예외 던지기(throw exceptions)' 대신 명시적인 결과 객체(Result 타입)나 식별 가능한 유니온(Discriminated Unions)을 활용하여 타입 안전성을 확보하고, 컨트롤러 계층에서 응답의 제어 흐름을 명확히 관리하는 것을 목표로 합니다.
|
||||
@@ -27,11 +27,11 @@ github_commit: "[P-Reinforce] Continuous Worker - API 응답 및 에러 핸들
|
||||
- **정책 변화:** Programming & Language 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[Result Type]], [[Discriminated Unions]], [[Exception Handling]]
|
||||
- **Projects/Contexts:** [[TypeScript API Development]], [[Server Architecture]]
|
||||
- **Related Topics:** [[Result Type|Result Type]], [[Discriminated Unions|Discriminated Unions]], Exception Handling
|
||||
- **Projects/Contexts:** [[TypeScript API Development|TypeScript API Development]], [[Server Architecture|Server Architecture]]
|
||||
- **Contradictions/Notes:** 전역 예외 처리기(Global Exception Handler)를 두고 컨트롤러에서 예외를 발생시키는 방식이 코드가 깔끔해진다고 선호하는 개발자들도 있지만, Result 패턴을 지지하는 개발자들은 예외를 던지는 방식이 제어 흐름을 끊고 타입 시스템으로 에러를 파악할 수 없게 하므로 예상 가능한 에러는 명시적인 타입으로 반환해야 한다고 반대합니다 [7, 14-16].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-18*
|
||||
- Raw Source: [[00_Raw/2026-04-20/API 응답 및 에러 핸들링 아키텍처.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/API 응답 및 에러 핸들링 아키텍처.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-662214
|
||||
category: "[[10_Wiki/💡 Topics/Software Architecture]]"
|
||||
category: "10_Wiki/💡 Topics/Software Architecture"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch - Wikified API-Contract-Definition"
|
||||
---
|
||||
|
||||
# [[API-Contract-Definition]]
|
||||
# [[API-Contract-Definition|API-Contract-Definition]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 요약 작업 진행 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Mega Batch - Wikified API-Contract-Definition"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/API-Contract-Definition.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/API-Contract-Definition.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-E43C2B
|
||||
category: "[[10_Wiki/💡 Topics/Software Architecture]]"
|
||||
category: "10_Wiki/💡 Topics/Software Architecture"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch - Wikified API-First Architecture"
|
||||
---
|
||||
|
||||
# [[API-First Architecture]]
|
||||
# [[API-First Architecture|API-First Architecture]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> **API-First Architecture**는 애플리케이션 프로그래밍 인터페이스(API)를 시스템의 최우선 제품으로 취급하는 소프트웨어 설계 방식입니다 [1]. 제품을 먼저 구축하고 나중에 API를 덧붙이는 대신, API의 설계와 문서화부터 개발을 시작합니다 [1]. 이러한 계약 우선(contract-first) 방법론을 통해 API의 일관성과 재사용성을 보장하며, 프론트엔드와 백엔드 개발 팀이 분리되어 병렬로 효율적인 작업을 진행할 수 있도록 지원합니다 [1, 2].
|
||||
@@ -32,11 +32,11 @@ github_commit: "[P-Reinforce] Mega Batch - Wikified API-First Architecture"
|
||||
- **정책 변화:** Software Architecture 카테고리의 전문성 확보 및 링크 밀도 최적화.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[Contract-Driven Development]], [[OpenAPI]], [[AsyncAPI]]
|
||||
- **Projects/Contexts:** [[Stripe]], [[Twilio]] (이 철학으로 잘 문서화된 API를 구축하여 비즈니스를 성장시킨 대표적인 기업 사례 [3])
|
||||
- **Related Topics:** [[Contract-Driven-Development|Contract-Driven Development]], OpenAPI, AsyncAPI
|
||||
- **Projects/Contexts:** Stripe, Twilio (이 철학으로 잘 문서화된 API를 구축하여 비즈니스를 성장시킨 대표적인 기업 사례 [3])
|
||||
- **Contradictions/Notes:** 소스 내에 상충되는 주장은 존재하지 않습니다. 다만, 이 구조의 구현 복잡성은 '중간(Medium)' 수준이며, 성공적인 도입과 유지를 위해서는 스펙 우선(spec-first)의 규율과 명확한 거버넌스가 요구된다고 명시하고 있습니다 [5].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-18*
|
||||
- Raw Source: [[00_Raw/2026-04-20/API-First Architecture.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/API-First Architecture.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-7482EF
|
||||
category: "[[10_Wiki/💡 Topics/Software Architecture]]"
|
||||
category: "10_Wiki/💡 Topics/Software Architecture"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch - Wikified API-First-Design"
|
||||
---
|
||||
|
||||
# [[API-First-Design]]
|
||||
# [[API-First-Design|API-First-Design]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 요약 작업 진행 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Mega Batch - Wikified API-First-Design"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/API-First-Design.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/API-First-Design.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AEB866
|
||||
category: "[[10_Wiki/💡 Topics/Game Design]]"
|
||||
category: "10_Wiki/💡 Topics/Game Design"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch 2 - Wikified ARG-Alternate-Reality-Games"
|
||||
---
|
||||
|
||||
# [[ARG-Alternate-Reality-Games]]
|
||||
# [[ARG-Alternate-Reality-Games|ARG-Alternate-Reality-Games]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 작업 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Mega Batch 2 - Wikified ARG-Alternate-Reality-Game
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/ARG-Alternate-Reality-Games.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/ARG-Alternate-Reality-Games.md
|
||||
---
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# [[ASP.NET Core]]
|
||||
# [[ASP.NET Core|ASP.NET Core]]
|
||||
|
||||
## 📌 Brief Summary
|
||||
ASP.NET Core는 내장된 의존성 주입(DI) 컨테이너를 제공하여 소프트웨어의 의존성 역전 원칙 구현을 돕는 프레임워크입니다 [1]. 웹 애플리케이션 개발 시 클린 아키텍처를 적용하여 비즈니스 로직을 프레임워크나 데이터베이스로부터 분리된 구조로 개발할 수 있게 해줍니다 [2]. 다만, 주제를 깊이 있게 다루기에는 소스에 관련 정보가 부족합니다.
|
||||
@@ -9,8 +9,8 @@ ASP.NET Core는 내장된 의존성 주입(DI) 컨테이너를 제공하여 소
|
||||
- **소스 정보의 한계**: ASP.NET Core 프레임워크 자체의 전반적인 기능이나 구동 방식 등에 대해서는 소스에 관련 정보가 부족합니다.
|
||||
|
||||
## 🔗 Knowledge Connections
|
||||
- **Related Topics:** [[Dependency Inversion Principle]], [[Clean Architecture]], [[Dependency Injection]]
|
||||
- **Projects/Contexts:** [[Web Applications]]
|
||||
- **Related Topics:** [[Dependency-Inversion-Principle|Dependency Inversion Principle]], [[Clean Architecture|Clean Architecture]], [[Dependency-Injection|Dependency Injection]]
|
||||
- **Projects/Contexts:** Web Applications
|
||||
- **Contradictions/Notes:** 소스 간의 모순은 없으나, ASP.NET Core라는 루트 주제를 포괄적으로 설명하기에는 제공된 소스에 관련 정보가 부족합니다. 소스에서는 주로 소프트웨어 아키텍처 패턴의 유용한 적용 사례 중 하나로만 짧게 언급하고 있습니다.
|
||||
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-761015
|
||||
category: "[[10_Wiki/💡 Topics/Programming & Web]]"
|
||||
category: "10_Wiki/💡 Topics/Programming & Web"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch 2 - Wikified ASP.NET Core"
|
||||
---
|
||||
|
||||
# [[ASP.NET Core]]
|
||||
# [[ASP.NET Core|ASP.NET Core]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> ASP.NET Core는 내장된 의존성 주입(DI) 컨테이너를 제공하여 소프트웨어의 의존성 역전 원칙 구현을 돕는 프레임워크입니다 [1]. 웹 애플리케이션 개발 시 클린 아키텍처를 적용하여 비즈니스 로직을 프레임워크나 데이터베이스로부터 분리된 구조로 개발할 수 있게 해줍니다 [2]. 다만, 주제를 깊이 있게 다루기에는 소스에 관련 정보가 부족합니다.
|
||||
@@ -22,11 +22,11 @@ github_commit: "[P-Reinforce] Mega Batch 2 - Wikified ASP.NET Core"
|
||||
- **정책 변화:** Programming & Web 카테고리의 전문성 확보 및 링크 밀도 최적화.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[Dependency Inversion Principle]], [[Clean Architecture]], [[Dependency Injection]]
|
||||
- **Projects/Contexts:** [[Web Applications]]
|
||||
- **Related Topics:** [[Dependency-Inversion-Principle|Dependency Inversion Principle]], [[Clean Architecture|Clean Architecture]], [[Dependency-Injection|Dependency Injection]]
|
||||
- **Projects/Contexts:** Web Applications
|
||||
- **Contradictions/Notes:** 소스 간의 모순은 없으나, ASP.NET Core라는 루트 주제를 포괄적으로 설명하기에는 제공된 소스에 관련 정보가 부족합니다. 소스에서는 주로 소프트웨어 아키텍처 패턴의 유용한 적용 사례 중 하나로만 짧게 언급하고 있습니다.
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-18*
|
||||
- Raw Source: [[00_Raw/2026-04-20/ASP.NET Core.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/ASP.NET Core.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-7DEA60
|
||||
category: "[[10_Wiki/💡 Topics/Programming & Language]]"
|
||||
category: "10_Wiki/💡 Topics/Programming & Language"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - AST (추상 구문 트리)"
|
||||
---
|
||||
|
||||
# [[AST (추상 구문 트리)]]
|
||||
# [[AST (추상 구문 트리)|AST (추상 구문 트리)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> AST(추상 구문 트리)는 소스 코드를 파싱하여 얻어지는 코드의 추상적인 구문 및 문법적 구조를 표현하는 트리 형태의 데이터 구조입니다 [1, 2]. 이는 코드의 구문적 특성과 어휘적 특성을 보존하지만, 띄어쓰기나 들여쓰기와 같은 레이아웃(Layout) 특성은 캡처하지 못한다는 특징을 지닙니다 [2, 3]. AST는 코드 스타일을 분석하는 코드 문체론(Code Stylometry)이나 코드를 실행하지 않고 취약점을 탐지하는 정적 애플리케이션 보안 테스트(SAST) 등 다양한 소스 코드 분석 기술의 핵심적인 기반 모델로 활용됩니다 [2, 4].
|
||||
@@ -23,11 +23,11 @@ github_commit: "[P-Reinforce] Continuous Worker - AST (추상 구문 트리)"
|
||||
- **정책 변화:** Programming & Language 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[CST (구체 구문 트리)]], [[SAST (정적 애플리케이션 보안 테스트)]], [[Code Stylometry (코드 문체론)]]
|
||||
- **Projects/Contexts:** [[ESLint]], [[Joern]]
|
||||
- **Related Topics:** [[CST (구체 구문 트리)|CST (구체 구문 트리)]], [[SAST (정적 애플리케이션 보안 테스트)|SAST (정적 애플리케이션 보안 테스트)]], [[Code Stylometry (코드 문체론)|Code Stylometry (코드 문체론)]]
|
||||
- **Projects/Contexts:** [[ESLint|ESLint]], [[Joern|Joern]]
|
||||
- **Contradictions/Notes:** 소스에 따르면 코드 작성자 식별(Authorship Attribution) 작업 시 AST 모델만을 사용하면 들여쓰기나 공백 등 개인의 레이아웃 코딩 스타일이 캡처되지 않는 한계가 있습니다 [2]. 실제로 실험 결과, AST 기반 접근 방식보다 이러한 레이아웃 요소를 포함하는 CST(구체 구문 트리)를 사용할 때 작성자 식별 정확도가 눈에 띄게(약 17%) 향상되는 것으로 나타납니다 [8, 9].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-18*
|
||||
- Raw Source: [[00_Raw/2026-04-20/AST (추상 구문 트리).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AST (추상 구문 트리).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-C7BE0D
|
||||
category: "[[10_Wiki/💡 Topics/Programming & Language]]"
|
||||
category: "10_Wiki/💡 Topics/Programming & Language"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - AST(Abstract Syntax Tree)"
|
||||
---
|
||||
|
||||
# [[AST(Abstract Syntax Tree)]]
|
||||
# [[AST(Abstract Syntax Tree)|AST(Abstract Syntax Tree)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> AST(Abstract Syntax Tree, 추상 구문 트리)는 소스 코드를 파싱하여 프로그래밍 언어의 문법적 구조를 트리 형태로 표현한 데이터 구조입니다. 공백이나 들여쓰기 같은 표면적인 레이아웃 정보는 배제하고 본질적인 구문 특징과 알고리즘 구조만을 보존하는 것이 특징입니다 [1]. 주로 SAST(정적 애플리케이션 보안 테스트), 린팅(Linting), 그리고 코드 작성자를 식별하는 코드 스타일로메트리(Code Stylometry) 분야에서 코드를 분석하는 핵심 기반으로 사용됩니다 [1, 2].
|
||||
@@ -27,11 +27,11 @@ github_commit: "[P-Reinforce] Continuous Worker - AST(Abstract Syntax Tree)"
|
||||
- **정책 변화:** Programming & Language 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[CST(Concrete Syntax Tree)]], [[정적 애플리케이션 보안 테스트(SAST)]], [[코드 스타일로메트리(Code Stylometry)]], [[정적 분석(Static Analysis)]]
|
||||
- **Projects/Contexts:** [[기계학습 기반의 소스 코드 저자 식별 연구]], [[AI 기반 코드 복잡도 분석(카카오)]], [[정적 보안 취약점 스캐닝 파이프라인]]
|
||||
- **Related Topics:** CST(Concrete Syntax Tree), [[정적 애플리케이션 보안 테스트(SAST)|정적 애플리케이션 보안 테스트(SAST)]], [[코드 스타일로메트리 (Code Stylometry)|코드 스타일로메트리(Code Stylometry)]], [[정적 분석(Static Analysis)|정적 분석(Static Analysis)]]
|
||||
- **Projects/Contexts:** 기계학습 기반의 소스 코드 저자 식별 연구, AI 기반 코드 복잡도 분석(카카오), 정적 보안 취약점 스캐닝 파이프라인
|
||||
- **Contradictions/Notes:** AST 기반의 분석은 작성자의 본질적인 프로그래밍 구조를 파악하고 위조 공격에 강하다는 장점이 있지만, 공백이나 들여쓰기 등 개발자의 개성이 묻어나는 '레이아웃 특징'을 담지 못합니다. 이로 인해 소스 코드 작성자 식별 실험에서 AST 기반 모델(51.00%)은 레이아웃 정보까지 포함하는 CST 기반 모델(67.86%)에 비해 상대적으로 낮은 정확도를 보였습니다 [10, 11].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-19*
|
||||
- Raw Source: [[00_Raw/2026-04-20/AST(Abstract Syntax Tree).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AST(Abstract Syntax Tree).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-7C91FA
|
||||
category: "[[10_Wiki/💡 Topics/Design & Experience]]"
|
||||
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]]
|
||||
# [[AST-Manipulation-Techniques|AST-Manipulation-Techniques]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - AST-Manipulation-Techniques"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/AST-Manipulation-Techniques.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AST-Manipulation-Techniques.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-8D040C
|
||||
category: "[[10_Wiki/💡 Topics/Programming & Tools]]"
|
||||
category: "10_Wiki/💡 Topics/Programming & Tools"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch 2 - Wikified AST-based-Static-Analysis"
|
||||
---
|
||||
|
||||
# [[AST-based-Static-Analysis]]
|
||||
# [[AST-based-Static-Analysis|AST-based-Static-Analysis]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 작업 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Mega Batch 2 - Wikified AST-based-Static-Analysis"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/AST-based-Static-Analysis.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AST-based-Static-Analysis.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-CODING-001
|
||||
category: "[[10_Wiki/💡 Topics/Coding]]"
|
||||
category: "10_Wiki/💡 Topics/Coding"
|
||||
confidence_score: 0.92
|
||||
tags: [coding, ast, compiler]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "batch-reinforce-01"
|
||||
---
|
||||
|
||||
# [[Abstract Syntax Tree Traversal]]
|
||||
# [[Abstract-Syntax-Tree-Traversal|Abstract Syntax Tree Traversal]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 소스 코드의 추상적인 구조를 정의된 규칙에 따라 탐색하며 변환 및 분석의 기틀을 마련하는 컴파일러의 핵심 여정.
|
||||
@@ -24,6 +24,6 @@ github_commit: "batch-reinforce-01"
|
||||
- **정책 변화:** 코딩 표준(w1) 강화에 따라 AST 기반 자동 수정 가중치 상향.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Parent:** [[10_Wiki/💡 Topics/Coding]]
|
||||
- **Related:** [[CST]], [[Parser]], [[Visitor-Pattern]]
|
||||
- **Raw Source:** [[00_Raw/2026-04-20/Abstract-Syntax-Tree-Traversal.md]]
|
||||
- **Parent:** 10_Wiki/💡 Topics/Coding
|
||||
- **Related:** [[CST|CST]], [[Parser|Parser]], Visitor-Pattern
|
||||
- **Raw Source:** 00_Raw/2026-04-20/Abstract-Syntax-Tree-Traversal.md
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-1151FA
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - A_B-Testing-Platforms"
|
||||
---
|
||||
|
||||
# [[A_B-Testing-Platforms]]
|
||||
# [[A_B-Testing-Platforms|A_B-Testing-Platforms]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - A_B-Testing-Platforms"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/A_B-Testing-Platforms.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/A_B-Testing-Platforms.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AI-696634
|
||||
category: "[[10_Wiki/💡 Topics/Programming & Language]]"
|
||||
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)]]
|
||||
# [[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].
|
||||
@@ -27,11 +27,11 @@ github_commit: "[P-Reinforce] Batch 9 - Wikified Abstract Syntax Tree (AST)"
|
||||
- **정책 변화:** 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)]], [[코드 정적 분석 도구]]
|
||||
- **Related Topics:** [[Concrete Syntax Tree (CST)|Concrete Syntax Tree (CST)]], [[Static Application Security Testing (SAST)|Static Application Security Testing (SAST)]], [[Code Stylometry (코드 문체론)|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]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Abstract Syntax Tree (AST).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-E03D74
|
||||
category: "[[10_Wiki/💡 Topics/Design & Experience]]"
|
||||
category: "10_Wiki/💡 Topics/Design & Experience"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Abstract-Syntax-Tree-Transformation"
|
||||
---
|
||||
|
||||
# [[Abstract-Syntax-Tree-Transformation]]
|
||||
# [[Abstract-Syntax-Tree-Transformation|Abstract-Syntax-Tree-Transformation]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Abstract-Syntax-Tree-Transform
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Abstract-Syntax-Tree-Transformation.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Abstract-Syntax-Tree-Transformation.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-18B63D
|
||||
category: "[[10_Wiki/💡 Topics/Design & Experience]]"
|
||||
category: "10_Wiki/💡 Topics/Design & Experience"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Abstract-Syntax-Tree-Traversal"
|
||||
---
|
||||
|
||||
# [[Abstract-Syntax-Tree-Traversal]]
|
||||
# [[Abstract-Syntax-Tree-Traversal|Abstract-Syntax-Tree-Traversal]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Abstract-Syntax-Tree-Traversal
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Abstract-Syntax-Tree-Traversal.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Abstract-Syntax-Tree-Traversal.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AI-99D2E0
|
||||
category: "[[10_Wiki/💡 Topics/Design & Experience]]"
|
||||
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)]]
|
||||
# [[Accessibility (A11y)|Accessibility (A11y)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
>
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 9 - Wikified Accessibility (A11y)"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Accessibility (A11y).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Accessibility (A11y).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-EA31B2
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Accessibility-Compliance-Audit"
|
||||
---
|
||||
|
||||
# [[Accessibility-Compliance-Audit]]
|
||||
# [[Accessibility-Compliance-Audit|Accessibility-Compliance-Audit]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Accessibility-Compliance-Audit
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Accessibility-Compliance-Audit.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Accessibility-Compliance-Audit.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-2801A2
|
||||
category: "[[10_Wiki/💡 Topics/Design & Experience]]"
|
||||
category: "10_Wiki/💡 Topics/Design & Experience"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 10 - Wikified Accessibility-Compliance-WCAG"
|
||||
---
|
||||
|
||||
# [[Accessibility-Compliance-WCAG]]
|
||||
# [[Accessibility-Compliance-WCAG|Accessibility-Compliance-WCAG]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 내용 요약 예정
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 10 - Wikified Accessibility-Compliance-WCAG"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Accessibility-Compliance-WCAG.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Accessibility-Compliance-WCAG.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-DESIGN-001
|
||||
category: "[[10_Wiki/💡 Topics/Design]]"
|
||||
category: "10_Wiki/💡 Topics/Design"
|
||||
confidence_score: 0.94
|
||||
tags: [design, accessibility, a11y, ux]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "batch-reinforce-01"
|
||||
---
|
||||
|
||||
# [[Accessibility (A11y)]]
|
||||
# [[Accessibility (A11y)|Accessibility (A11y)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 기술적 장벽을 허물어 모든 사용자가 정보에 평등하게 접근할 수 있도록 보장하는 포괄적 설계의 핵심 원칙.
|
||||
@@ -24,6 +24,6 @@ github_commit: "batch-reinforce-01"
|
||||
- **정책 변화:** 사용자 만족도(w3)의 필수 지표로 접근성 점수를 채택.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Parent:** [[10_Wiki/💡 Topics/Design]]
|
||||
- **Related:** [[WCAG]], [[Inclusive-Design]], [[ARIA]]
|
||||
- **Raw Source:** [[00_Raw/2026-04-20/Accessibility (A11y).md]]
|
||||
- **Parent:** 10_Wiki/💡 Topics/Design
|
||||
- **Related:** WCAG, [[Inclusive_Design|Inclusive-Design]], ARIA
|
||||
- **Raw Source:** 00_Raw/2026-04-20/Accessibility (A11y).md
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-D19FE3
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Adaptive Compute (적응형 계산량 조절)"
|
||||
---
|
||||
|
||||
# [[Adaptive Compute (적응형 계산량 조절)]]
|
||||
# [[Adaptive Compute (적응형 계산량 조절)|Adaptive Compute (적응형 계산량 조절)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Adaptive Compute (적응형
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Adaptive Compute (적응형 계산량 조절).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Adaptive Compute (적응형 계산량 조절).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AI-A2C439
|
||||
category: "[[10_Wiki/💡 Topics/Education & AI]]"
|
||||
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]]
|
||||
# [[Adaptive-Learning-Systems|Adaptive-Learning-Systems]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
>
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 9 - Wikified Adaptive-Learning-Systems"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Adaptive-Learning-Systems.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Adaptive-Learning-Systems.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-EDUC-001
|
||||
category: "[[10_Wiki/💡 Topics/Education]]"
|
||||
category: "10_Wiki/💡 Topics/Education"
|
||||
confidence_score: 0.91
|
||||
tags: [education, ai, adaptive, learning]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "batch-reinforce-01"
|
||||
---
|
||||
|
||||
# [[Adaptive Learning Systems]]
|
||||
# [[Adaptive-Learning-Systems|Adaptive Learning Systems]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 학습자의 수준과 속도를 실시간으로 분석하여 개인별 최적의 학습 경로를 동적으로 제안하는 지능형 교수 시스템.
|
||||
@@ -24,6 +24,6 @@ github_commit: "batch-reinforce-01"
|
||||
- **정책 변화:** 사용자 만족도(w3) 피드백에 따라 학습자 이탈 방지 알고리즘 우선순위 상향.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Parent:** [[10_Wiki/💡 Topics/Education]]
|
||||
- **Related:** [[IRT]], [[Personalized-Learning]], [[Educational-AI]]
|
||||
- **Raw Source:** [[00_Raw/2026-04-20/Adaptive-Learning-Systems.md]]
|
||||
- **Parent:** 10_Wiki/💡 Topics/Education
|
||||
- **Related:** IRT, Personalized-Learning, Educational-AI
|
||||
- **Raw Source:** 00_Raw/2026-04-20/Adaptive-Learning-Systems.md
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AI-60E30A
|
||||
category: "[[10_Wiki/💡 Topics/Psychology & Behavior]]"
|
||||
category: "10_Wiki/💡 Topics/Psychology & Behavior"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 9 - Wikified Addiction Neuroscience"
|
||||
---
|
||||
|
||||
# [[Addiction Neuroscience]]
|
||||
# [[Addiction Neuroscience|Addiction Neuroscience]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
>
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 9 - Wikified Addiction Neuroscience"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Addiction Neuroscience.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Addiction Neuroscience.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-PSYCH-002
|
||||
category: "[[10_Wiki/💡 Topics/Psychology]]"
|
||||
category: "10_Wiki/💡 Topics/Psychology"
|
||||
confidence_score: 0.93
|
||||
tags: [psychology, neuroscience, addiction, brain]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "batch-reinforce-01"
|
||||
---
|
||||
|
||||
# [[Addiction Neuroscience]]
|
||||
# [[Addiction Neuroscience|Addiction Neuroscience]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 보상 중추와 전두엽의 균형 파괴를 통해 행동 통제력을 상실하게 만드는 뇌 회로의 만성적 변화 과정.
|
||||
@@ -24,6 +24,6 @@ github_commit: "batch-reinforce-01"
|
||||
- **정책 변화:** 지식 구조(w2) 관점에서 행동 심리학과 연계하여 중독 치료 경로 제안.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Parent:** [[10_Wiki/💡 Topics/Psychology]]
|
||||
- **Related:** [[Dopamine]], [[Prefrontal-Cortex]], [[Neuroplasticity]]
|
||||
- **Raw Source:** [[00_Raw/2026-04-20/Addiction Neuroscience.md]]
|
||||
- **Parent:** 10_Wiki/💡 Topics/Psychology
|
||||
- **Related:** [[Dopamine|Dopamine]], Prefrontal-Cortex, [[Neuroplasticity|Neuroplasticity]]
|
||||
- **Raw Source:** 00_Raw/2026-04-20/Addiction Neuroscience.md
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-E5F3BA
|
||||
category: "[[10_Wiki/💡 Topics/Design & Experience]]"
|
||||
category: "10_Wiki/💡 Topics/Design & Experience"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Additive-Type-Logic"
|
||||
---
|
||||
|
||||
# [[Additive-Type-Logic]]
|
||||
# [[Additive-Type-Logic|Additive-Type-Logic]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Additive-Type-Logic"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Additive-Type-Logic.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Additive-Type-Logic.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-82084D
|
||||
category: "[[10_Wiki/💡 Topics/Programming & Language]]"
|
||||
category: "10_Wiki/💡 Topics/Programming & Language"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 10 - Wikified Advanced-Design-Patterns-in-TypeScript"
|
||||
---
|
||||
|
||||
# [[Advanced-Design-Patterns-in-TypeScript]]
|
||||
# [[Advanced-Design-Patterns-in-TypeScript|Advanced-Design-Patterns-in-TypeScript]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 내용 요약 예정
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 10 - Wikified Advanced-Design-Patterns-in-Ty
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Advanced-Design-Patterns-in-TypeScript.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Advanced-Design-Patterns-in-TypeScript.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-D1E81B
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Advanced-Interface-Design"
|
||||
---
|
||||
|
||||
# [[Advanced-Interface-Design]]
|
||||
# [[Advanced-Interface-Design|Advanced-Interface-Design]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Advanced-Interface-Design"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Advanced-Interface-Design.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Advanced-Interface-Design.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AI-AFC0C0
|
||||
category: "[[10_Wiki/💡 Topics/Security & AI]]"
|
||||
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 (적대적 공격)]]
|
||||
# [[Adversarial Attack (적대적 공격)|Adversarial Attack (적대적 공격)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
>
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 9 - Wikified Adversarial Attack (적대적
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Adversarial Attack (적대적 공격).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Adversarial Attack (적대적 공격).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-36585B
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Adversarial Code Stylometry"
|
||||
---
|
||||
|
||||
# [[Adversarial Code Stylometry]]
|
||||
# [[Adversarial Code Stylometry|Adversarial Code Stylometry]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> Adversarial Code Stylometry(적대적 코드 문체론)는 프로그래머가 코드 문체 분석(Code Stylometry) 시스템의 추적을 우회하여 자신의 익명성을 보호하기 위해 의도적으로 코드를 변형하는 기법입니다 [1-3]. 주로 자신의 고유한 코딩 스타일을 숨기는 난독화(obfuscation)와 다른 프로그래머의 스타일을 흉내 내는 모방(mimicry) 기술을 사용합니다 [2-4]. 이는 감시와 검열에 맞서 프라이버시 향상 도구를 개발하는 오픈소스 기여자들이 신원 노출로 인한 탄압을 피하기 위한 핵심적인 방어 수단으로 연구되고 있습니다 [5-7].
|
||||
@@ -24,11 +24,11 @@ github_commit: "[P-Reinforce] Continuous Worker - Adversarial Code Stylometry"
|
||||
- **정책 변화:** AI 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[Code Stylometry]], [[Obfuscation]], [[Mimicry Attack]], [[StyleCounsel]]
|
||||
- **Projects/Contexts:** [[오픈소스 기여자 익명성 보장]], [[검열 우회 및 프라이버시 보호 도구 개발]]
|
||||
- **Related Topics:** [[Code Stylometry (코드 문체론)|Code Stylometry]], Obfuscation, Mimicry Attack, [[StyleCounsel|StyleCounsel]]
|
||||
- **Projects/Contexts:** 오픈소스 기여자 익명성 보장, 검열 우회 및 프라이버시 보호 도구 개발
|
||||
- **Contradictions/Notes:** Caliskan-Islam 등의 기존 연구에서는 'Stunnix'와 같은 상용 난독화 도구를 사용해도 분류기의 식별 정확도가 거의 떨어지지 않는다고 보고했습니다. 그러나 Simko 등의 적대적 연구에서는 실험 참가자들이 표면적인 수준의 변수명 교체나 국소적인 구조 변경 등 간단한 조작을 가하는 것만으로도 기계 학습 모델을 성공적으로 속일 수 있음을 입증하며 기존 분류 시스템의 취약성과 한계를 지적했습니다 [11, 20].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-19*
|
||||
- Raw Source: [[00_Raw/2026-04-20/Adversarial Code Stylometry.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Adversarial Code Stylometry.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-FE444C
|
||||
category: "[[10_Wiki/💡 Topics/Physics & Simulation]]"
|
||||
category: "10_Wiki/💡 Topics/Physics & Simulation"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 10 - Wikified Aerospace Flight Simulation"
|
||||
---
|
||||
|
||||
# [[Aerospace Flight Simulation]]
|
||||
# [[Aerospace Flight Simulation|Aerospace Flight Simulation]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 내용 요약 예정
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 10 - Wikified Aerospace Flight Simulation"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Aerospace Flight Simulation.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Aerospace Flight Simulation.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-E4FCEF
|
||||
category: "[[10_Wiki/💡 Topics/AI & Psychology]]"
|
||||
category: "10_Wiki/💡 Topics/AI & Psychology"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 10 - Wikified Affective Computing"
|
||||
---
|
||||
|
||||
# [[Affective Computing]]
|
||||
# [[Affective Computing|Affective Computing]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 내용 요약 예정
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 10 - Wikified Affective Computing"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Affective Computing.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Affective Computing.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-30D321
|
||||
category: "[[10_Wiki/💡 Topics/Design & Experience]]"
|
||||
category: "10_Wiki/💡 Topics/Design & Experience"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 10 - Wikified Affective User Interfaces (AUI)"
|
||||
---
|
||||
|
||||
# [[Affective User Interfaces (AUI)]]
|
||||
# [[Affective User Interfaces (AUI)|Affective User Interfaces (AUI)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 내용 요약 예정
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 10 - Wikified Affective User Interfaces (AUI
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Affective User Interfaces (AUI).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Affective User Interfaces (AUI).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-72AAF4
|
||||
category: "[[10_Wiki/💡 Topics/Game Design]]"
|
||||
category: "10_Wiki/💡 Topics/Game Design"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 10 - Wikified Agency and Player Autonomy"
|
||||
---
|
||||
|
||||
# [[Agency and Player Autonomy]]
|
||||
# [[Agency and Player Autonomy|Agency and Player Autonomy]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 내용 요약 예정
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 10 - Wikified Agency and Player Autonomy"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Agency and Player Autonomy.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Agency and Player Autonomy.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-2E74EC
|
||||
category: "[[10_Wiki/💡 Topics/Graphics & Performance]]"
|
||||
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]]
|
||||
# [[Agency-Narrative Integration|Agency-Narrative Integration]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Agency-Narrative Integration"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Agency-Narrative Integration.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Agency-Narrative Integration.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-0D4B33
|
||||
category: "[[10_Wiki/💡 Topics/Design & Experience]]"
|
||||
category: "10_Wiki/💡 Topics/Design & Experience"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Agency-in-Game-Design"
|
||||
---
|
||||
|
||||
# [[Agency-in-Game-Design]]
|
||||
# [[Agency-in-Game-Design|Agency-in-Game-Design]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Agency-in-Game-Design"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Agency-in-Game-Design.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Agency-in-Game-Design.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-9B328D
|
||||
category: "[[10_Wiki/💡 Topics/Design & Experience]]"
|
||||
category: "10_Wiki/💡 Topics/Design & Experience"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Agent Communication Protocol (에이전트 통신 규약)"
|
||||
---
|
||||
|
||||
# [[Agent Communication Protocol (에이전트 통신 규약)]]
|
||||
# [[Agent Communication Protocol (에이전트 통신 규약)|Agent Communication Protocol (에이전트 통신 규약)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Agent Communication Protocol (
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Agent Communication Protocol (에이전트 통신 규약).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Agent Communication Protocol (에이전트 통신 규약).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-50111B
|
||||
category: "[[10_Wiki/💡 Topics/Simulation & Math]]"
|
||||
category: "10_Wiki/💡 Topics/Simulation & Math"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 10 - Wikified Agent-Based Modeling (ABM)"
|
||||
---
|
||||
|
||||
# [[Agent-Based Modeling (ABM)]]
|
||||
# [[Agent-Based Modeling (ABM)|Agent-Based Modeling (ABM)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 내용 요약 예정
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 10 - Wikified Agent-Based Modeling (ABM)"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Agent-Based Modeling (ABM).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Agent-Based Modeling (ABM).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-64B5F2
|
||||
category: "[[10_Wiki/💡 Topics/Psychology & Behavior]]"
|
||||
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]]
|
||||
# [[Agent-Based Modeling|Agent-Based Modeling]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Agent-Based Modeling"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Agent-Based Modeling.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Agent-Based Modeling.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-419E37
|
||||
category: "[[10_Wiki/💡 Topics/Psychology & Behavior]]"
|
||||
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]]
|
||||
# [[Agent-Based-Modeling|Agent-Based-Modeling]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Agent-Based-Modeling"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Agent-Based-Modeling.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Agent-Based-Modeling.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-1363FF
|
||||
category: "[[10_Wiki/💡 Topics/Design & Experience]]"
|
||||
category: "10_Wiki/💡 Topics/Design & Experience"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 10 - Wikified Agile-UX-Integration"
|
||||
---
|
||||
|
||||
# [[Agile-UX-Integration]]
|
||||
# [[Agile-UX-Integration|Agile-UX-Integration]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 내용 요약 예정
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 10 - Wikified Agile-UX-Integration"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Agile-UX-Integration.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Agile-UX-Integration.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-750784
|
||||
category: "[[10_Wiki/💡 Topics/Game Design]]"
|
||||
category: "10_Wiki/💡 Topics/Game Design"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 11 - Wikified Albion Online (Full Loot/Player-Driven Production)"
|
||||
---
|
||||
|
||||
# [[Albion Online (Full Loot/Player-Driven Production)]]
|
||||
# [[Albion Online (Full LootPlayer-Driven Production)|Albion Online (Full Loot/Player-Driven Production)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 작업 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 11 - Wikified Albion Online (Full Loot/Playe
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Albion Online (Full Loot_Player-Driven Production).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Albion Online (Full Loot_Player-Driven Production).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-DCA70F
|
||||
category: "[[10_Wiki/💡 Topics/Programming & Language]]"
|
||||
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)]]
|
||||
# [[Albion Online (Full Loot_Player-Driven Production)|Albion Online (Full Loot_Player-Driven Production)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Albion Online (Full Loot_Playe
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Albion Online (Full Loot_Player-Driven Production).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Albion Online (Full Loot_Player-Driven Production).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-9FC7C3
|
||||
category: "[[10_Wiki/💡 Topics/Programming & Language]]"
|
||||
category: "10_Wiki/💡 Topics/Programming & Language"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 11 - Wikified Algebraic-Data-Types-in-TypeScript"
|
||||
---
|
||||
|
||||
# [[Algebraic-Data-Types-in-TypeScript]]
|
||||
# [[Algebraic-Data-Types-in-TypeScript|Algebraic-Data-Types-in-TypeScript]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 작업 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 11 - Wikified Algebraic-Data-Types-in-TypeSc
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Algebraic-Data-Types-in-TypeScript.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Algebraic-Data-Types-in-TypeScript.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-A4D1B5
|
||||
category: "[[10_Wiki/💡 Topics/Computer Science & Math]]"
|
||||
category: "10_Wiki/💡 Topics/Computer Science & Math"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 11 - Wikified Algebraic-Data-Types"
|
||||
---
|
||||
|
||||
# [[Algebraic-Data-Types]]
|
||||
# [[Algebraic-Data-Types|Algebraic-Data-Types]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 작업 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 11 - Wikified Algebraic-Data-Types"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Algebraic-Data-Types.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Algebraic-Data-Types.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-DEC2D9
|
||||
category: "[[10_Wiki/💡 Topics/AI & Ethics]]"
|
||||
category: "10_Wiki/💡 Topics/AI & Ethics"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 11 - Wikified Algorithmic Bias in Art"
|
||||
---
|
||||
|
||||
# [[Algorithmic Bias in Art]]
|
||||
# [[Algorithmic Bias in Art|Algorithmic Bias in Art]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 작업 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 11 - Wikified Algorithmic Bias in Art"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Algorithmic Bias in Art.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Algorithmic Bias in Art.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-E80494
|
||||
category: "[[10_Wiki/💡 Topics/AI & Ethics]]"
|
||||
category: "10_Wiki/💡 Topics/AI & Ethics"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 11 - Wikified Algorithmic Decision Making"
|
||||
---
|
||||
|
||||
# [[Algorithmic Decision Making]]
|
||||
# [[Algorithmic Decision Making|Algorithmic Decision Making]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 작업 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 11 - Wikified Algorithmic Decision Making"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Algorithmic Decision Making.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Algorithmic Decision Making.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-CD6723
|
||||
category: "[[10_Wiki/💡 Topics/Game Design & Math]]"
|
||||
category: "10_Wiki/💡 Topics/Game Design & Math"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 11 - Wikified Algorithmic Game Theory"
|
||||
---
|
||||
|
||||
# [[Algorithmic Game Theory]]
|
||||
# [[Algorithmic Game Theory|Algorithmic Game Theory]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 작업 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 11 - Wikified Algorithmic Game Theory"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Algorithmic Game Theory.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Algorithmic Game Theory.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-243848
|
||||
category: "[[10_Wiki/💡 Topics/Sociology & Tech]]"
|
||||
category: "10_Wiki/💡 Topics/Sociology & Tech"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 11 - Wikified Algorithmic Governance"
|
||||
---
|
||||
|
||||
# [[Algorithmic Governance]]
|
||||
# [[Algorithmic Governance|Algorithmic Governance]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 작업 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 11 - Wikified Algorithmic Governance"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Algorithmic Governance.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Algorithmic Governance.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-29EF85
|
||||
category: "[[10_Wiki/💡 Topics/Economics & Algorithms]]"
|
||||
category: "10_Wiki/💡 Topics/Economics & Algorithms"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 11 - Wikified Algorithmic Mechanism Design"
|
||||
---
|
||||
|
||||
# [[Algorithmic Mechanism Design]]
|
||||
# [[Algorithmic Mechanism Design|Algorithmic Mechanism Design]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 작업 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 11 - Wikified Algorithmic Mechanism Design"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Algorithmic Mechanism Design.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Algorithmic Mechanism Design.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-9E51FB
|
||||
category: "[[10_Wiki/💡 Topics/Communication & Tech]]"
|
||||
category: "10_Wiki/💡 Topics/Communication & Tech"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Batch 11 - Wikified Algorithmic Rhetoric"
|
||||
---
|
||||
|
||||
# [[Algorithmic Rhetoric]]
|
||||
# [[Algorithmic Rhetoric|Algorithmic Rhetoric]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 작업 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Batch 11 - Wikified Algorithmic Rhetoric"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Algorithmic Rhetoric.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Algorithmic Rhetoric.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-37F130
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Algorithmic-Biology"
|
||||
---
|
||||
|
||||
# [[Algorithmic-Biology]]
|
||||
# [[Algorithmic-Biology|Algorithmic-Biology]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Algorithmic-Biology"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Algorithmic-Biology.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Algorithmic-Biology.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-6BF52C
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Algorithmic-Game-Theory"
|
||||
---
|
||||
|
||||
# [[Algorithmic-Game-Theory]]
|
||||
# [[Algorithmic-Game-Theory|Algorithmic-Game-Theory]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Algorithmic-Game-Theory"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Algorithmic-Game-Theory.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Algorithmic-Game-Theory.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-DC50FE
|
||||
category: "[[10_Wiki/💡 Topics/Sociology & Tech]]"
|
||||
category: "10_Wiki/💡 Topics/Sociology & Tech"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch - Wikified Algorithmic-Governance"
|
||||
---
|
||||
|
||||
# [[Algorithmic-Governance]]
|
||||
# [[Algorithmic-Governance|Algorithmic-Governance]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 요약 작업 진행 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Mega Batch - Wikified Algorithmic-Governance"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Algorithmic-Governance.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Algorithmic-Governance.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-891010
|
||||
category: "[[10_Wiki/💡 Topics/Programming & Language]]"
|
||||
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(할당 타임라인)]]
|
||||
# [[Allocation Timeline(할당 타임라인)|Allocation Timeline(할당 타임라인)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> Allocation Timeline(할당 타임라인)은 Chrome 및 Edge DevTools에서 제공하는 프로파일링 도구로, 적절하게 가비지 컬렉션(Garbage Collection)되지 않고 메모리를 계속 점유하는 객체를 찾아 메모리 누수를 추적하는 데 사용됩니다 [1, 2]. 이 도구는 힙 프로파일러의 상세한 스냅샷 정보와 타임라인 패널의 점진적 추적 기능을 결합하여, 기록 중 발생하는 모든 메모리 할당을 스택 트레이스와 함께 기록합니다 [1-3]. 결과적으로 시각적인 막대(파란색 및 회색)를 통해 메모리에 남아있는 객체와 이미 수거된 객체를 구별하여 보여줍니다 [3-5].
|
||||
@@ -20,11 +20,11 @@ github_commit: "[P-Reinforce] Continuous Worker - Allocation Timeline(할당 타
|
||||
- **정책 변화:** Programming & Language 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[Garbage Collection]], [[Memory Leak]], [[Heap Snapshot]]
|
||||
- **Projects/Contexts:** [[Chrome DevTools]], [[V8 Engine]]
|
||||
- **Related Topics:** [[Garbage Collection|Garbage Collection]], [[Memory Leak|Memory Leak]], [[Heap Snapshot|Heap Snapshot]]
|
||||
- **Projects/Contexts:** [[Chrome DevTools|Chrome DevTools]], [[V8 Engine|V8 Engine]]
|
||||
- **Contradictions/Notes:** 소스에 관련 정보가 부족합니다.
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-19*
|
||||
- Raw Source: [[00_Raw/2026-04-20/Allocation Timeline(할당 타임라인).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Allocation Timeline(할당 타임라인).md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-B75DFC
|
||||
category: "[[10_Wiki/💡 Topics/Memory & Systems]]"
|
||||
category: "10_Wiki/💡 Topics/Memory & Systems"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch - Wikified Allocation Timeline"
|
||||
---
|
||||
|
||||
# [[Allocation Timeline]]
|
||||
# [[Allocation Timeline|Allocation Timeline]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> **Allocation Timeline**(또는 Allocation instrumentation on timeline)은 Chrome DevTools의 Memory 패널에서 제공하는 프로파일링 도구로, 시간 경과에 따른 메모리 할당을 기록하고 추적하여 애플리케이션의 메모리 누수를 진단하는 데 사용됩니다 [1-3]. 이 도구는 힙 프로파일러(Heap Profiler)의 상세한 스냅샷 정보와 타임라인 패널의 증분 업데이트 및 추적 기능을 결합하여 객체의 생성 위치와 유지 경로(retaining path)를 실시간으로 식별할 수 있게 해줍니다 [2, 4, 5].
|
||||
@@ -25,11 +25,11 @@ github_commit: "[P-Reinforce] Mega Batch - Wikified Allocation Timeline"
|
||||
- **정책 변화:** Memory & Systems 카테고리의 전문성 확보 및 링크 밀도 최적화.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[Heap Snapshot]], [[Garbage Collection]], [[Memory Leak]], [[Retaining Path]], [[V8 Heap Architecture]]
|
||||
- **Projects/Contexts:** [[Chrome DevTools]], [[V8 Engine]]
|
||||
- **Related Topics:** [[Heap Snapshot|Heap Snapshot]], [[Garbage Collection|Garbage Collection]], [[Memory Leak|Memory Leak]], [[Retaining Path|Retaining Path]], [[V8 Heap Architecture|V8 Heap Architecture]]
|
||||
- **Projects/Contexts:** [[Chrome DevTools|Chrome DevTools]], [[V8 Engine|V8 Engine]]
|
||||
- **Contradictions/Notes:** 소스 전반에 걸쳐 내용의 모순은 없습니다. 다양한 소스가 일관되게 Allocation Timeline의 파란색/회색 막대의 의미와 메모리 누수를 추적하기 위한 스택 트레이스 및 Retainer 분석의 유용성을 강조하고 있습니다.
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-19*
|
||||
- Raw Source: [[00_Raw/2026-04-20/Allocation Timeline.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Allocation Timeline.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-25F1DA
|
||||
category: "[[10_Wiki/💡 Topics/Graphics & Performance]]"
|
||||
category: "10_Wiki/💡 Topics/Graphics & Performance"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch - Wikified Alpha Blending"
|
||||
---
|
||||
|
||||
# [[Alpha Blending]]
|
||||
# [[Alpha Blending|Alpha Blending]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 투명하거나 반투명한 객체를 렌더링할 때 시각적 결함 없이 정확한 투명도를 표현하기 위한 렌더링 혼합 기법입니다 [1]. 올바른 알파 블렌딩 결과를 얻기 위해서는 반드시 객체를 '뒤에서 앞으로(Back-to-Front)' 순서로 정렬하여 그려야 한다는 제약이 있습니다 [1]. 그 외 알파 블렌딩의 구체적인 수학적 원리나 연산식에 대해서는 소스에 관련 정보가 부족합니다.
|
||||
@@ -22,11 +22,11 @@ github_commit: "[P-Reinforce] Mega Batch - Wikified Alpha Blending"
|
||||
- **정책 변화:** Graphics & Performance 카테고리의 전문성 확보 및 링크 밀도 최적화.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[Transparency Sorting]], [[InstancedMesh]], [[Overdraw]]
|
||||
- **Related Topics:** Transparency Sorting, [[InstancedMesh|InstancedMesh]], [[Overdraw|Overdraw]]
|
||||
- **Projects/Contexts:** 대규모 유리창 건물이나 투명한 숲 등 다수의 반투명 객체를 `InstancedMesh` 등을 사용하여 실시간으로 렌더링하고 최적화해야 하는 웹 그래픽스 및 게임 프로젝트 맥락 [1, 2].
|
||||
- **Contradictions/Notes:** 소스에 관련 정보가 부족합니다. (제공된 소스에서는 알파 블렌딩 자체의 개념보다는, 투명 객체 렌더링 정렬 문제의 원인으로서만 간략히 언급되고 있습니다.)
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-19*
|
||||
- Raw Source: [[00_Raw/2026-04-20/Alpha Blending.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Alpha Blending.md
|
||||
---
|
||||
|
||||
+3
-3
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-4BB54E
|
||||
category: "[[10_Wiki/💡 Topics/Software Architecture]]"
|
||||
category: "10_Wiki/💡 Topics/Software Architecture"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - AlphaGo (Monte Carlo Tree Search RL)] [Autonomous Driving Simulation] [Robotic Manipulation"
|
||||
---
|
||||
|
||||
# [[AlphaGo (Monte Carlo Tree Search RL)] [Autonomous Driving Simulation] [Robotic Manipulation]]
|
||||
# [[AlphaGo (Monte Carlo Tree Search RL)] [Autonomous Driving Simulation] [Robotic Manipulation|AlphaGo (Monte Carlo Tree Search RL)] [Autonomous Driving Simulation] [Robotic Manipulation]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - AlphaGo (Monte Carlo Tree Sear
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/AlphaGo (Monte Carlo Tree Search + RL)], [Autonomous Driving Simulation], [Robotic Manipulation.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AlphaGo (Monte Carlo Tree Search + RL)], [Autonomous Driving Simulation], [Robotic Manipulation.md
|
||||
---
|
||||
|
||||
+3
-3
@@ -1,4 +1,4 @@
|
||||
[[AlphaGo (Monte Carlo Tree Search + RL)], [Autonomous Driving Simulation], [Robotic Manipulation]]
|
||||
[[AlphaGo (Monte Carlo Tree Search + RL)], [Autonomous Driving Simulation], [Robotic Manipulation|AlphaGo (Monte Carlo Tree Search + RL)], [Autonomous Driving Simulation], [Robotic Manipulation]]
|
||||
|
||||
📌 Brief Summary
|
||||
This research intersection explores the convergence of decision-making architectures, specifically combining Monte Carlo Tree Search (MCTS) with Deep Reinforcement Learning (DRL), to solve high-dimensional sequential decision problems. The synthesis focuses on applying the strategic look-ahead capabilities of AlphaGo-style algorithms to the continuous state-action spaces found in autonomous vehicle trajectory planning and complex multi-degree-of-freedom robotic manipulation tasks within simulated environments.
|
||||
@@ -18,8 +18,8 @@ This research intersection explores the convergence of decision-making architect
|
||||
* The synthesis of these fields points toward a unified framework for "Model-Based Reinforcement Learning" (MBRL). In this paradigm, the agent learns a world model (the simulator) and uses MCTS to perform planning within that learned latent space. This reduces sample complexity and improves the safety guarantees required for both autonomous driving and human-collaborative robotics.
|
||||
|
||||
🔗 Knowledge Connections
|
||||
* Related Topics: [[Model-Based Reinforcement Learning (MBRL)]], [[Sim-to-Real Transfer]], [[Multi-Agent Reinforcement Learning (MARL)]], [[Differentiable Physics Engines]]
|
||||
* Projects/Contexts: [[DeepMind AlphaZero]], [[CARLA Simulator]], [[NVIDIA Isaac Gym]], [[OpenAI Gym/Gymnasium]]
|
||||
* Related Topics: Model-Based Reinforcement Learning (MBRL), Sim-to-Real Transfer, Multi-Agent Reinforcement Learning (MARL), Differentiable Physics Engines
|
||||
* Projects/Contexts: DeepMind AlphaZero, CARLA Simulator, NVIDIA Isaac Gym, OpenAI Gym/Gymnasium
|
||||
* Contradictions/Notes: A major ongoing debate in the field is the "Computational Bottleneck": while MCTS provides superior strategic foresight, the computational cost of running tree searches in real-time for high-frequency robotic control or high-speed autonomous driving remains a significant barrier to deployment compared to reactive, end-to-end neural policies.
|
||||
|
||||
Last updated: 2026-04-16
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-5267ED
|
||||
category: "[[10_Wiki/💡 Topics/AI & Games]]"
|
||||
category: "10_Wiki/💡 Topics/AI & Games"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch - Wikified AlphaZero Strategy"
|
||||
---
|
||||
|
||||
# [[AlphaZero Strategy]]
|
||||
# [[AlphaZero Strategy|AlphaZero Strategy]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 요약 작업 진행 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Mega Batch - Wikified AlphaZero Strategy"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/AlphaZero Strategy.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/AlphaZero Strategy.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-F8937D
|
||||
category: "[[10_Wiki/💡 Topics/Software Reliability]]"
|
||||
category: "10_Wiki/💡 Topics/Software Reliability"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch - Wikified Amazon-AWS-Formal-Verification"
|
||||
---
|
||||
|
||||
# [[Amazon-AWS-Formal-Verification]]
|
||||
# [[Amazon-AWS-Formal-Verification|Amazon-AWS-Formal-Verification]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 요약 작업 진행 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Mega Batch - Wikified Amazon-AWS-Formal-Verificati
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Amazon-AWS-Formal-Verification.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Amazon-AWS-Formal-Verification.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-138364
|
||||
category: "[[10_Wiki/💡 Topics/Programming & Language]]"
|
||||
category: "10_Wiki/💡 Topics/Programming & Language"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch - Wikified Ambient Contexts"
|
||||
---
|
||||
|
||||
# [[Ambient Contexts]]
|
||||
# [[Ambient Contexts|Ambient Contexts]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 요약 작업 진행 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Mega Batch - Wikified Ambient Contexts"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Ambient Contexts.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Ambient Contexts.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-F31A94
|
||||
category: "[[10_Wiki/💡 Topics/Programming & Language]]"
|
||||
category: "10_Wiki/💡 Topics/Programming & Language"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch - Wikified Ambient Declarations"
|
||||
---
|
||||
|
||||
# [[Ambient Declarations]]
|
||||
# [[Ambient Declarations|Ambient Declarations]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 핵심 요약 작업 진행 중
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Mega Batch - Wikified Ambient Declarations"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Ambient Declarations.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Ambient Declarations.md
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-956995
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Ambient-Declarations"
|
||||
---
|
||||
|
||||
# [[Ambient-Declarations]]
|
||||
# [[Ambient-Declarations|Ambient-Declarations]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Ambient-Declarations"
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Ambient-Declarations.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Ambient-Declarations.md
|
||||
---
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
[[Amdahl's Law (암달의 법칙, AI 성능의 병목)]]
|
||||
Amdahl's Law (암달의 법칙, AI 성능의 병목)
|
||||
|
||||
📌 Brief Summary
|
||||
|
||||
@@ -63,8 +63,8 @@ Amdahl's Law는 어떤 시스템의 일부 성능을 개선했을 때, 전체
|
||||
|
||||
🔗 Knowledge Connections
|
||||
|
||||
- [[Diminishing Returns (한계 수익 체감)]], [[Scaling Laws (스케일링 법칙)]], [[MoE (Mixture of Experts)]], [[Adaptive Compute (적응형 계산량 조절)]]
|
||||
- **Projects/Contexts:** [[AI 추론 가속화 및 하드웨어 최적화]]
|
||||
- [[Diminishing Returns (한계 수익 체감)|Diminishing Returns (한계 수익 체감)]], Scaling Laws (스케일링 법칙), MoE (Mixture of Experts), [[Adaptive Compute (적응형 계산량 조절)|Adaptive Compute (적응형 계산량 조절)]]
|
||||
- **Projects/Contexts:** AI 추론 가속화 및 하드웨어 최적화
|
||||
- **Contradictions/Notes:**
|
||||
- **Gustafson's Law**: 암달의 법칙이 고정된 작업량에 대한 효율을 따진다면, 구스타프슨의 법칙은 가용한 자원에 맞춰 작업량을 늘리면 성능 향상이 계속될 수 있음을 시사함.
|
||||
- **신규 키워드**: `Bottleneck`, `Memory Wall`, `Bandwidth`, `Serial Processing` → 탐색 큐 추가.
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-9C64B9
|
||||
category: "[[10_Wiki/💡 Topics/AI]]"
|
||||
category: "10_Wiki/💡 Topics/AI"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Amdahls Law (암달의 법칙)"
|
||||
---
|
||||
|
||||
# [[Amdahls Law (암달의 법칙)]]
|
||||
# [[Amdahls Law (암달의 법칙)|Amdahls Law (암달의 법칙)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
@@ -21,5 +21,5 @@ github_commit: "[P-Reinforce] Continuous Worker - Amdahls Law (암달의 법칙)
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Amdahl's Law (암달의 법칙).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Amdahl's Law (암달의 법칙).md
|
||||
---
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user