refactor: Archive_Orphans 정리 및 Frontend/Backend/Architecture 분류 재배치 [2026-05-08]
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
---
|
||||
id: P-REINFORCE-503A13
|
||||
category: "[[10_Wiki/💡 Topics/Game Design]]"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch 2 - Wikified Arkane Studios"
|
||||
---
|
||||
|
||||
# [[Arkane Studios]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 작업 중
|
||||
|
||||
## 📖 구조화된 지식 (Synthesized Content)
|
||||
본문 구조화 작업 중
|
||||
|
||||
## ⚠️ 모순 및 업데이트 (Contradictions & RL Update)
|
||||
- **과거 데이터와의 충돌:** 지식 자산화 및 기존 네트워크 연동 단계.
|
||||
- **정책 변화:** Game Design 카테고리의 전문성 확보 및 링크 밀도 최적화.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Arkane Studios.md]]
|
||||
---
|
||||
@@ -0,0 +1,25 @@
|
||||
---
|
||||
id: P-REINFORCE-375B82
|
||||
category: "[[10_Wiki/💡 Topics/Economics & Algorithms]]"
|
||||
confidence_score: 0.95
|
||||
tags: []
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Mega Batch 2 - Wikified Auction Theory"
|
||||
---
|
||||
|
||||
# [[Auction Theory]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 작업 중
|
||||
|
||||
## 📖 구조화된 지식 (Synthesized Content)
|
||||
본문 구조화 작업 중
|
||||
|
||||
## ⚠️ 모순 및 업데이트 (Contradictions & RL Update)
|
||||
- **과거 데이터와의 충돌:** 지식 자산화 및 기존 네트워크 연동 단계.
|
||||
- **정책 변화:** Economics & Algorithms 카테고리의 전문성 확보 및 링크 밀도 최적화.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Auction Theory.md]]
|
||||
---
|
||||
@@ -0,0 +1,36 @@
|
||||
---
|
||||
category: Architecture
|
||||
tags: [auto-wikified, technical-documentation, architecture]
|
||||
title: Dependency Injection
|
||||
description: "의존성 주입(Dependency Injection, DI)은 클래스가 필요로 하는 의존성(객체)을 직접 생성하지 않고 프레임워크나 외부 컨테이너를 통해 주입받도록 하는 소프트웨어 아키텍처 패턴이다 [1-3]."
|
||||
last_updated: 2026-05-04
|
||||
---
|
||||
|
||||
# Dependency Injection
|
||||
|
||||
## 📌 Brief Summary
|
||||
의존성 주입(Dependency Injection, DI)은 클래스가 필요로 하는 의존성(객체)을 직접 생성하지 않고 프레임워크나 외부 컨테이너를 통해 주입받도록 하는 소프트웨어 아키텍처 패턴이다 [1-3]. 이를 통해 시스템 컴포넌트 간의 강한 결합을 방지하고 유연성을 높일 수 있다 [1]. Spring Boot, NestJS, Vue 3 등 현대 프레임워크 전반에서 핵심 구조로 채택되어 코드의 테스트 가능성과 모듈성을 극대화하는 데 사용된다 [2-4].
|
||||
|
||||
## 📖 Core Content
|
||||
* **설계 원칙과 테스트 가능성 확보**:
|
||||
DI는 의존성 역전 원칙(Dependency Inversion Principle)을 구현하는 구체적인 수단이다 [1]. 구체적인 구현체에 직접 의존하는 대신 생성자 등을 통해 필요한 의존성을 주입받도록 함으로써, 시스템의 결합도를 낮추고 유연성을 제공한다 [1, 3]. 특히 단위 테스트(Unit testing) 환경에서 비즈니스 로직을 변경하지 않고도 실제 서비스를 모의(Mock) 객체로 손쉽게 교체할 수 있는 강력한 이점을 제공한다 [2, 3].
|
||||
|
||||
* **Spring Boot의 IoC 컨테이너 기반 DI**:
|
||||
Spring Boot는 Java 어노테이션을 활용하는 제어의 역전(IoC) 컨테이너를 통해 DI를 구현한다 [5, 6]. 애플리케이션 시작 시 컨테이너가 어노테이션을 읽어 의존성 그래프를 구성하며, 수동 연결(Manual wiring) 없이 생성자를 통해 빈(Bean)을 자동으로 주입한다 [6, 7].
|
||||
|
||||
* **NestJS의 데코레이터 기반 DI**:
|
||||
Node.js 생태계의 NestJS는 Angular의 설계 철학을 도입하여 TypeScript 데코레이터 기반의 강력한 의존성 주입 컨테이너를 제공한다 [3, 5, 8]. 클래스의 생성자에 필요한 의존성(예: 데이터베이스 서비스, 캐시 서비스 등)을 선언하기만 하면 프레임워크가 알아서 이를 제공하여 코드의 응집도를 높인다 [2, 3].
|
||||
|
||||
* **Vue 3의 Provide/Inject를 통한 의존성 주입**:
|
||||
프론트엔드 환경인 Vue 3에서는 Provide/Inject 시스템이 DI의 역할을 수행한다 [4]. 이 패턴을 통해 글로벌 로거, API 클라이언트, 상태 등 공유 서비스를 최상위 공급자에서 깊게 중첩된 하위 컴포넌트로 직접 "텔레포트"할 수 있으며, 이로 인해 중간 계층 컴포넌트들이 불필요한 데이터를 전달받는 'Prop Drilling' 현상을 방지한다 [4, 9].
|
||||
|
||||
## ⚖️ Trade-offs & Caveats
|
||||
* **성능 오버헤드**:
|
||||
의존성 주입 시스템과 이를 위한 데코레이터 처리는 런타임 성능에 약간의 오버헤드를 유발할 수 있다 [10]. 예를 들어, NestJS의 경우 DI 시스템의 추상화 계층으로 인해 순수 Express 프레임워크를 사용할 때보다 초당 요청 처리량(Throughput)이 약 10~15% 정도 감소할 수 있다 [10].
|
||||
* **과도한 스캐폴딩과 구조적 복잡성**:
|
||||
DI 컨테이너와 모듈 시스템을 올바르게 구축하려면 많은 설정과 보일러플레이트 코드 작성이 요구된다 [11, 12]. 2~5명 규모의 소규모 팀이나 단순한 기능의 프로젝트에서는 이러한 구조적 제약이 실제 비즈니스 가치 창출보다 프레임워크 배선(Wiring) 작업에 더 많은 시간을 쏟게 하는 비용(기술 부채)으로 작용할 수 있다 [11].
|
||||
* **프레임워크 우회 시 발생하는 안티 패턴**:
|
||||
DI를 지원하는 프레임워크 환경에서 개발자가 DI 컨테이너를 우회하여 직접 의존성을 인스턴스화(예: `new UsersService()`와 같이 객체를 수동 생성)하는 방식은 시스템의 이점을 파괴한다 [13]. 이와 같은 수동 의존성 연결은 아키텍처의 일관성을 해치고 테스트 가능성을 완전히 상실하게 만든다 [13].
|
||||
|
||||
---
|
||||
*Last updated: 2026-05-03*
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-ai--redir
|
||||
title: AI 코드 리뷰
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: AI_코드_리뷰
|
||||
canonical_id: AI_코드_리뷰
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-ambient-declarations-redir
|
||||
title: Ambient Declarations
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Ambient_Declarations
|
||||
canonical_id: Ambient_Declarations
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-bayesian-inference-redir
|
||||
title: Bayesian Inference
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Bayesian_Inference
|
||||
canonical_id: Bayesian_Inference
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-bellman-equation-redir
|
||||
title: Bellman Equation
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Bellman Equation
|
||||
canonical_id: Bellman Equation
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-best-of-n-sampling--redir
|
||||
title: Best of N Sampling ( ø)
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Best-of-N_Sampling
|
||||
canonical_id: Best-of-N_Sampling
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-best-of-n-sampling-redir
|
||||
title: Best of N Sampling
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Best-of-N_Sampling
|
||||
canonical_id: Best-of-N_Sampling
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-best-of-n-sampling-redir
|
||||
title: Best of N Sampling
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Best-of-N_Sampling
|
||||
canonical_id: Best-of-N_Sampling
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-bounded-rationality-redir
|
||||
title: Bounded Rationality
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Bounded_Rationality
|
||||
canonical_id: Bounded_Rationality
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-bounded-rationality-redir
|
||||
title: Bounded Rationality
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Bounded_Rationality
|
||||
canonical_id: Bounded_Rationality
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-brain-computer-interface-bci--redir
|
||||
title: Brain Computer Interface (BCI)
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Brain-Computer_Interface_(BCI)
|
||||
canonical_id: Brain-Computer_Interface_(BCI)
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-brain-computer-interface-bci--redir
|
||||
title: Brain Computer Interface (BCI)
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Brain-Computer_Interface_(BCI)
|
||||
canonical_id: Brain-Computer_Interface_(BCI)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-call-stack-redir
|
||||
title: Call Stack
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Call_Stack
|
||||
canonical_id: Call_Stack
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-chrome-devtools-redir
|
||||
title: Chrome DevTools
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Chrome_DevTools
|
||||
canonical_id: Chrome_DevTools
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-complexity-theory-redir
|
||||
title: Complexity Theory
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Complexity_Theory
|
||||
canonical_id: Complexity_Theory
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-complexity-theory-redir
|
||||
title: Complexity Theory
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Complexity_Theory
|
||||
canonical_id: Complexity_Theory
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-computational-creativity-redir
|
||||
title: Computational Creativity
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Computational_Creativity
|
||||
canonical_id: Computational_Creativity
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-computational-creativity-redir
|
||||
title: Computational Creativity
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Computational_Creativity
|
||||
canonical_id: Computational_Creativity
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-constraint-satisfaction-problems-redir
|
||||
title: Constraint Satisfaction Problems
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Constraint-Satisfaction_Problems
|
||||
canonical_id: Constraint-Satisfaction_Problems
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-constraint-satisfaction-problems-redir
|
||||
title: Constraint Satisfaction Problems
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Constraint-Satisfaction_Problems
|
||||
canonical_id: Constraint-Satisfaction_Problems
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-control-systems-engineering-redir
|
||||
title: Control Systems Engineering
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Control_Systems_Engineering
|
||||
canonical_id: Control_Systems_Engineering
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-control-systems-engineering-redir
|
||||
title: Control Systems Engineering
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Control_Systems_Engineering
|
||||
canonical_id: Control_Systems_Engineering
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-distributed-computing-redir
|
||||
title: Distributed Computing
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Distributed_Computing
|
||||
canonical_id: Distributed_Computing
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-edge-computing-redir
|
||||
title: Edge Computing
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Edge Computing
|
||||
canonical_id: Edge Computing
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-evolutionary-computation-redir
|
||||
title: Evolutionary Computation
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Evolutionary_Computation
|
||||
canonical_id: Evolutionary_Computation
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-evolutionary-computation-redir
|
||||
title: Evolutionary Computation
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Evolutionary_Computation
|
||||
canonical_id: Evolutionary_Computation
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-excess-property-checking-redir
|
||||
title: Excess Property Checking
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Excess_Property_Checking
|
||||
canonical_id: Excess_Property_Checking
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-explainable-ai-xai--redir
|
||||
title: Explainable AI (XAI)
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Explainable-AI-XAI
|
||||
canonical_id: Explainable-AI-XAI
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-exploration-vs-exploitation-redir
|
||||
title: Exploration vs Exploitation
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Exploration_vs_Exploitation
|
||||
canonical_id: Exploration_vs_Exploitation
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-exploration-vs-exploitation-redir
|
||||
title: Exploration vs Exploitation
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Exploration_vs_Exploitation
|
||||
canonical_id: Exploration_vs_Exploitation
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-flow-state-redir
|
||||
title: Flow State
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Flow_State
|
||||
canonical_id: Flow_State
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-flow-state-redir
|
||||
title: Flow State
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Flow_State
|
||||
canonical_id: Flow_State
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-graph-theory-redir
|
||||
title: Graph Theory
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Graph_Theory
|
||||
canonical_id: Graph_Theory
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-human-computer-interaction-hci-redir
|
||||
title: Human Computer Interaction HCI
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Human-Computer Interaction (HCI)
|
||||
canonical_id: Human-Computer Interaction (HCI)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-information-theory-redir
|
||||
title: Information Theory
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Information_Theory
|
||||
canonical_id: Information_Theory
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-interaction-to-next-paint-inp--redir
|
||||
title: Interaction to Next Paint (INP)
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Interaction-to-Next-Paint-INP
|
||||
canonical_id: Interaction-to-Next-Paint-INP
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-lstm-long-short-term-memory--redir
|
||||
title: LSTM (Long Short Term Memory)
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: LSTM_(Long_Short-Term_Memory)
|
||||
canonical_id: LSTM_(Long_Short-Term_Memory)
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-largest-contentful-paint-lcp--redir
|
||||
title: Largest Contentful Paint (LCP)
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Largest-Contentful-Paint-LCP
|
||||
canonical_id: Largest-Contentful-Paint-LCP
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-level-of-detail-lod--redir
|
||||
title: Level of Detail (LOD)
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Level_of_Detail_(LOD)
|
||||
canonical_id: Level_of_Detail_(LOD)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-main-thread-redir
|
||||
title: Main Thread
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Main_Thread
|
||||
canonical_id: Main_Thread
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-markov-decision-process-mdp--redir
|
||||
title: Markov Decision Process (MDP)
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Markov Decision Process (MDP)
|
||||
canonical_id: Markov Decision Process (MDP)
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-markov-decision-process-mdp-redir
|
||||
title: Markov Decision Process MDP
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Markov Decision Process (MDP)
|
||||
canonical_id: Markov Decision Process (MDP)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-markov-decision-processes-redir
|
||||
title: Markov Decision Processes
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Markov Decision Processes
|
||||
canonical_id: Markov Decision Processes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-mental-models-redir
|
||||
title: Mental Models
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Mental_Models
|
||||
canonical_id: Mental_Models
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-microservices-architecture-redir
|
||||
title: Microservices Architecture
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Microservices_Architecture
|
||||
canonical_id: Microservices_Architecture
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-monte-carlo-tree-search-mcts-redir
|
||||
title: Monte Carlo Tree Search MCTS
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Monte Carlo Tree Search (MCTS)
|
||||
canonical_id: Monte Carlo Tree Search (MCTS)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-neuro-symbolic-ai-redir
|
||||
title: Neuro Symbolic AI
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Neuro-Symbolic AI
|
||||
canonical_id: Neuro-Symbolic AI
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-problem-solving-redir
|
||||
title: Problem Solving
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Problem_Solving
|
||||
canonical_id: Problem_Solving
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-prompt-engineering-redir
|
||||
title: Prompt Engineering
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Prompt_Engineering
|
||||
canonical_id: Prompt_Engineering
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-risk-management-redir
|
||||
title: Risk Management
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Risk_Management
|
||||
canonical_id: Risk_Management
|
||||
|
||||
@@ -1,22 +1,25 @@
|
||||
---
|
||||
id: wiki-2026-0508-sdlc-소프트웨어-개발-수명-주기
|
||||
id: wiki-20260508-sdlc--redir
|
||||
title: SDLC (소프트웨어 개발 수명 주기)
|
||||
category: 10_Wiki/Topics
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: 보안_및_시스템_신뢰성_표준
|
||||
canonical_id: wiki-2026-0507-039
|
||||
redirect_to: SDLC (소프트웨어 개발 수명 주기)
|
||||
canonical_id: SDLC (소프트웨어 개발 수명 주기)
|
||||
aliases: []
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.92
|
||||
tags: [uncategorized]
|
||||
tags: [redirect]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-08
|
||||
github_commit: pending
|
||||
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
|
||||
inferred_by: Claude Opus 4.7 (auto-merge 2026-05-08)
|
||||
---
|
||||
|
||||
# Redirect
|
||||
# SDLC (소프트웨어 개발 수명 주기)
|
||||
|
||||
이 문서는 Canonical 문서인 [[보안_및_시스템_신뢰성_표준]]으로 통합되었습니다.
|
||||
모든 최신 지식과 세부 내용은 위 링크를 참조하십시오.
|
||||
> [!IMPORTANT]
|
||||
> 이 문서는 P-Reinforce Phase 2 자동 MERGE에 의해 **[[SDLC (소프트웨어 개발 수명 주기)]]**로 통합되었습니다.
|
||||
|
||||
---
|
||||
*Redirected to: [[SDLC (소프트웨어 개발 수명 주기)]]*
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-semantic-search-redir
|
||||
title: Semantic Search
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Semantic Search
|
||||
canonical_id: Semantic Search
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-space-based-architecture-redir
|
||||
title: Space based Architecture
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Space-Based_Architecture
|
||||
canonical_id: Space-Based_Architecture
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-strategic-thinking-redir
|
||||
title: Strategic Thinking
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Strategic_Thinking
|
||||
canonical_id: Strategic_Thinking
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-swarm-intelligence-redir
|
||||
title: Swarm Intelligence
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Swarm_Intelligence
|
||||
canonical_id: Swarm_Intelligence
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-swarm-intelligence-redir
|
||||
title: Swarm Intelligence
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Swarm_Intelligence
|
||||
canonical_id: Swarm_Intelligence
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-systems-thinking-redir
|
||||
title: Systems Thinking
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Systems_Thinking
|
||||
canonical_id: Systems_Thinking
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-systems-thinking-redir
|
||||
title: Systems Thinking
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Systems_Thinking
|
||||
canonical_id: Systems_Thinking
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-technical-debt-redir
|
||||
title: Technical Debt
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Technical_Debt
|
||||
canonical_id: Technical_Debt
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-variational-autoencoders-vae--redir
|
||||
title: Variational Autoencoders (VAE)
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Variational-Autoencoders-VAE
|
||||
canonical_id: Variational-Autoencoders-VAE
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-warno--redir
|
||||
title: Warno 데이터 기반 설계
|
||||
category: AI & Games
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: WARNO 데이터 기반 설계
|
||||
canonical_id: WARNO 데이터 기반 설계
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-stochastic-gradient-descent-redir
|
||||
title: stochastic gradient descent
|
||||
category: AI
|
||||
category: AI_and_ML
|
||||
status: merged
|
||||
redirect_to: Stochastic-Gradient-Descent
|
||||
canonical_id: Stochastic-Gradient-Descent
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-api-first-architecture-redir
|
||||
title: API First Architecture
|
||||
category: Software Architecture
|
||||
category: Architecture
|
||||
status: merged
|
||||
redirect_to: API-First_Architecture
|
||||
canonical_id: API-First_Architecture
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-graph-theory-redir
|
||||
title: Graph Theory
|
||||
category: Computational Theory & Math
|
||||
category: Computer_Science_and_Theory
|
||||
status: merged
|
||||
redirect_to: Graph_Theory
|
||||
canonical_id: Graph_Theory
|
||||
|
||||
+13
-61
@@ -1,73 +1,25 @@
|
||||
---
|
||||
id: wiki-2026-0508-information-retrieval-ir
|
||||
id: wiki-20260508-information-retrieval-ir--redir
|
||||
title: Information Retrieval (IR)
|
||||
category: Redirect
|
||||
category: Computer_Science_and_Theory
|
||||
status: merged
|
||||
canonical_id: self
|
||||
aliases: [P-Reinforce-REDIRECT-IR-002]
|
||||
duplicate_of: Information_Retrieval
|
||||
redirect_to: Information-Retrieval-IR
|
||||
canonical_id: Information-Retrieval-IR
|
||||
aliases: []
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.92
|
||||
tags: [uncategorized]
|
||||
tags: [redirect]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-08
|
||||
github_commit: pending
|
||||
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
|
||||
inferred_by: Claude Opus 4.7 (auto-merge 2026-05-08)
|
||||
---
|
||||
|
||||
# [[Information Retrieval (IR)]]
|
||||
# Information Retrieval (IR)
|
||||
|
||||
> [!NOTE]
|
||||
> 본 문서는 **[[Information_Retrieval]]**로 통합되었습니다. 🫡🐟
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> [!IMPORTANT]
|
||||
> 이 문서는 P-Reinforce Phase 2 자동 MERGE에 의해 **[[Information-Retrieval-IR]]**로 통합되었습니다.
|
||||
|
||||
> 정보 검색(IR)은 대용량 비정형 데이터에서 사용자 질의에 부합하는 문서를 찾는 학문 분야로, BM25·TF-IDF·dense retrieval로 발전해 왔다.
|
||||
|
||||
## 📖 구조화된 지식 (Synthesized Content)
|
||||
|
||||
**추출된 패턴:** 어휘 매칭(sparse) ↔ 의미 매칭(dense) ↔ 하이브리드 — 도메인·질의 길이·재현율 요구에 따라 선택.
|
||||
|
||||
**세부 내용:**
|
||||
- 전통적: TF-IDF, BM25 (Okapi).
|
||||
- 신경: SBERT, ColBERT, E5, BGE.
|
||||
- 하이브리드: BM25 + dense + reranker.
|
||||
- 평가: nDCG, MRR, MAP, Recall@k.
|
||||
- 응용: 검색엔진, RAG, 추천.
|
||||
|
||||
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
|
||||
|
||||
**언제 이 지식을 쓰는가:**
|
||||
- *(TODO)*
|
||||
|
||||
**언제 쓰면 안 되는가:**
|
||||
- *(TODO)*
|
||||
|
||||
## 🧪 검증 상태 (Validation)
|
||||
|
||||
- **정보 상태:** merged
|
||||
- **출처 신뢰도:** A
|
||||
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
|
||||
|
||||
## 🧬 중복 검사 (Duplicate Check)
|
||||
|
||||
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
|
||||
- **처리 방식:** UPDATE (자동 정규화)
|
||||
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
|
||||
|
||||
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
|
||||
|
||||
- **과거 데이터와의 충돌:** 없음
|
||||
- **정책 변화:** 없음
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
|
||||
- **Parent:** [[10_Wiki/Topics]]
|
||||
- **Related:** *(TODO: 최소 2개)*
|
||||
- **Opposite / Trade-off:** *(TODO)*
|
||||
- **Raw Source:** 직접 입력
|
||||
|
||||
## 🕓 변경 이력 (Changelog)
|
||||
|
||||
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|
||||
|------|-----------|-----------|--------|
|
||||
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
|
||||
---
|
||||
*Redirected to: [[Information-Retrieval-IR]]*
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-information-theory-redir
|
||||
title: Information Theory
|
||||
category: Computational Theory & Math
|
||||
category: Computer_Science_and_Theory
|
||||
status: merged
|
||||
redirect_to: Information_Theory
|
||||
canonical_id: Information_Theory
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-mental-models-redir
|
||||
title: Mental Models
|
||||
category: Logic & Reasoning
|
||||
category: Computer_Science_and_Theory
|
||||
status: merged
|
||||
redirect_to: Mental_Models
|
||||
canonical_id: Mental_Models
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-problem-solving-redir
|
||||
title: Problem Solving
|
||||
category: Logic & Reasoning
|
||||
category: Computer_Science_and_Theory
|
||||
status: merged
|
||||
redirect_to: Problem_Solving
|
||||
canonical_id: Problem_Solving
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-strategic-thinking-redir
|
||||
title: Strategic Thinking
|
||||
category: Logic & Reasoning
|
||||
category: Computer_Science_and_Theory
|
||||
status: merged
|
||||
redirect_to: Strategic_Thinking
|
||||
canonical_id: Strategic_Thinking
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-component-based-architecture-redir
|
||||
title: Component Based Architecture
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Component-Based_Architecture
|
||||
canonical_id: Component-Based_Architecture
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-compound-components-redir
|
||||
title: Compound Components
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Compound_Components
|
||||
canonical_id: Compound_Components
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-concurrent-rendering-redir
|
||||
title: Concurrent Rendering
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Concurrent_Rendering
|
||||
canonical_id: Concurrent_Rendering
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-container-queries-redir
|
||||
title: Container Queries
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Container_Queries
|
||||
canonical_id: Container_Queries
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-critical-rendering-path-redir
|
||||
title: Critical Rendering Path
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Critical_Rendering_Path
|
||||
canonical_id: Critical_Rendering_Path
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-dom-document-object-model--redir
|
||||
title: DOM (Document Object Model)
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: DOM(Document_Object_Model)
|
||||
canonical_id: DOM(Document_Object_Model)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-dom-document-object-model--redir
|
||||
title: DOM(Document Object Model)
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: DOM(Document_Object_Model)
|
||||
canonical_id: DOM(Document_Object_Model)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-e-commerce-platforms-redir
|
||||
title: E commerce Platforms
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: E-commerce_Platforms
|
||||
canonical_id: E-commerce_Platforms
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-feature-driven-architecture-redir
|
||||
title: Feature Driven Architecture
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Feature-Driven_Architecture
|
||||
canonical_id: Feature-Driven_Architecture
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-fiber-architecture-redir
|
||||
title: Fiber Architecture
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Fiber_Architecture
|
||||
canonical_id: Fiber_Architecture
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-fluid-typography-redir
|
||||
title: Fluid Typography
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Fluid_Typography
|
||||
canonical_id: Fluid_Typography
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-large-frontend-projects-redir
|
||||
title: Large Frontend Projects
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Large_Frontend_Projects
|
||||
canonical_id: Large_Frontend_Projects
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-layout-thrashing-redir
|
||||
title: Layout Thrashing
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Layout_Thrashing
|
||||
canonical_id: Layout_Thrashing
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-reflow-repaint-redir
|
||||
title: Reflow & Repaint
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Reflow_&_Repaint
|
||||
canonical_id: Reflow_&_Repaint
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-reflow-repaint-redir
|
||||
title: Reflow Repaint
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Reflow_&_Repaint
|
||||
canonical_id: Reflow_&_Repaint
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-reflow-and-repaint-redir
|
||||
title: Reflow and Repaint
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Reflow_and_Repaint
|
||||
canonical_id: Reflow_and_Repaint
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-render-props-redir
|
||||
title: Render Props
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Render_Props
|
||||
canonical_id: Render_Props
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-server-side-rendering-ssr--redir
|
||||
title: Server Side Rendering (SSR)
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Server Side Rendering (SSR)
|
||||
canonical_id: Server Side Rendering (SSR)
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-static-site-generation-ssg--redir
|
||||
title: Static Site Generation (SSG)
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Static_Site_Generation_SSG
|
||||
canonical_id: Static_Site_Generation_SSG
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-styled-components-redir
|
||||
title: Styled Components
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Styled_Components
|
||||
canonical_id: Styled_Components
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-time-slicing-redir
|
||||
title: Time Slicing
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Time_Slicing
|
||||
canonical_id: Time_Slicing
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-time-slicing-redir
|
||||
title: Time Slicing
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Time_Slicing
|
||||
canonical_id: Time_Slicing
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-virtual-dom-reconciliation-redir
|
||||
title: Virtual DOM과 Reconciliation
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Virtual_DOM과_Reconciliation
|
||||
canonical_id: Virtual_DOM과_Reconciliation
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508-styled-components-redir
|
||||
title: styled components
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: Styled_Components
|
||||
canonical_id: Styled_Components
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
---
|
||||
id: wiki-2026-0508-디자인-시스템-design-systems
|
||||
id: wiki-20260508--design-systems--redir
|
||||
title: 디자인 시스템 (Design Systems)
|
||||
category: 10_Wiki/Topics
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: 프론트엔드_및_UIUX_표준
|
||||
canonical_id: wiki-2026-0508-041
|
||||
redirect_to: 디자인 시스템 (Design Systems)
|
||||
canonical_id: 디자인 시스템 (Design Systems)
|
||||
aliases: []
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.92
|
||||
tags: [uncategorized]
|
||||
tags: [redirect]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-08
|
||||
github_commit: pending
|
||||
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
|
||||
tech_stack:
|
||||
language: unspecified
|
||||
framework: unspecified
|
||||
inferred_by: Claude Opus 4.7 (auto-merge 2026-05-08)
|
||||
---
|
||||
|
||||
# Redirect
|
||||
# 디자인 시스템 (Design Systems)
|
||||
|
||||
이 문서는 Canonical 문서인 [[프론트엔드_및_UIUX_표준]]으로 통합되었습니다.
|
||||
모든 최신 지식과 세부 내용은 위 링크를 참조하십시오.
|
||||
> [!IMPORTANT]
|
||||
> 이 문서는 P-Reinforce Phase 2 자동 MERGE에 의해 **[[디자인 시스템 (Design Systems)]]**로 통합되었습니다.
|
||||
|
||||
---
|
||||
*Redirected to: [[디자인 시스템 (Design Systems)]]*
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508--reflow-repaint--redir
|
||||
title: 리플로우 및 리페인트(Reflow & Repaint)
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: 리플로우 및 리페인트 (Reflow & Repaint)
|
||||
canonical_id: 리플로우 및 리페인트 (Reflow & Repaint)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508--media-queries--redir
|
||||
title: 미디어 쿼리 (Media Queries)
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: 미디어_쿼리(Media_Queries)
|
||||
canonical_id: 미디어_쿼리(Media_Queries)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508--media-queries--redir
|
||||
title: 미디어 쿼리(Media Queries)
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: 미디어_쿼리(Media_Queries)
|
||||
canonical_id: 미디어_쿼리(Media_Queries)
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: wiki-20260508--fluid-typography--redir
|
||||
title: 유동적 타이포그래피 (Fluid Typography)
|
||||
category: Frontend_Mastery
|
||||
category: Frontend
|
||||
status: merged
|
||||
redirect_to: 유동적 타이포그래피(Fluid Typography)
|
||||
canonical_id: 유동적 타이포그래피(Fluid Typography)
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user