9148c358d0
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
6.0 KiB
6.0 KiB
id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
| id | title | category | status | canonical_id | aliases | duplicate_of | source_trust_level | confidence_score | verification_status | tags | raw_sources | last_reinforced | github_commit | tech_stack | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| wiki-2026-0508-browser | Browser | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
Browser
매 한 줄
"매 browser = networking stack + parsing + rendering + JS engine + sandbox 의 거대한 OS-like 시스템.". 매 2026 현재 Chromium-derived (Chrome, Edge, Brave, Arc) 가 ~70% market share, Firefox/Gecko 와 Safari/WebKit 이 나머지. 매 process-per-site isolation, GPU-accelerated compositing, V8 의 Sparkplug+Maglev+TurboFan tier 가 modern baseline.
매 핵심
매 multi-process architecture
- Browser process: 매 UI, networking, IPC orchestration.
- Renderer process: 매 site-per-process — Blink + V8.
- GPU process: 매 compositing, WebGL/WebGPU.
- Network service: 매 별도 process — credential isolation.
- Utility processes: 매 audio, video decode, storage.
매 rendering pipeline
- Parse HTML → DOM.
- Parse CSS → CSSOM.
- Style — match rules → ComputedStyle.
- Layout — geometry computation.
- Paint — layer 별 display list.
- Composite — GPU 가 layer 합성.
매 JS engine tiers (V8)
- Ignition (interpreter) → Sparkplug (baseline JIT) → Maglev (mid-tier) → TurboFan (optimizing JIT).
- 매 hot function 만 점진적 promotion.
매 응용
- Web app development: 매 performance budgeting.
- Extension / DevTools: 매 internal API.
- Embedded webview: 매 Electron, Tauri, CEF.
- Headless: 매 Puppeteer, Playwright scraping/test.
💻 패턴
Performance: Critical Rendering Path
<!-- inline above-the-fold CSS, defer non-critical -->
<style>/* critical CSS here */</style>
<link rel="preload" href="/fonts/main.woff2" as="font" crossorigin>
<link rel="stylesheet" href="/non-critical.css" media="print" onload="this.media='all'">
<script type="module" src="/app.js" defer></script>
Avoid layout thrash
// BAD — read/write/read/write triggers sync layouts
boxes.forEach(b => {
const w = b.offsetWidth; // forces layout
b.style.width = (w * 2) + 'px'; // invalidates
});
// GOOD — batch reads then writes
const widths = boxes.map(b => b.offsetWidth);
boxes.forEach((b, i) => b.style.width = (widths[i] * 2) + 'px');
Service worker — offline + cache
// sw.js
self.addEventListener('install', e => {
e.waitUntil(caches.open('v1').then(c => c.addAll([
'/', '/app.js', '/styles.css'
])));
});
self.addEventListener('fetch', e => {
e.respondWith(
caches.match(e.request).then(r => r || fetch(e.request))
);
});
Intersection observer (lazy load)
const io = new IntersectionObserver(entries => {
for (const e of entries) {
if (e.isIntersecting) {
e.target.src = e.target.dataset.src;
io.unobserve(e.target);
}
}
}, { rootMargin: '200px' });
document.querySelectorAll('img[data-src]').forEach(img => io.observe(img));
Web Workers — off-main-thread
// main.js
const w = new Worker('worker.js', { type: 'module' });
w.postMessage({ buffer: bigArray }, [bigArray.buffer]); // transfer, not copy
w.onmessage = e => console.log(e.data);
// worker.js
onmessage = e => {
const result = heavyCompute(e.data.buffer);
postMessage(result);
};
Performance API — measure real users
new PerformanceObserver(list => {
for (const entry of list.getEntries()) {
if (entry.name === 'LCP') sendBeacon('lcp', entry.startTime);
if (entry.entryType === 'layout-shift') sendBeacon('cls', entry.value);
if (entry.entryType === 'event') sendBeacon('inp', entry.duration);
}
}).observe({ type: 'largest-contentful-paint', buffered: true });
CSP header
Content-Security-Policy: default-src 'self'; script-src 'self' 'sha256-AbCd...';
style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; frame-ancestors 'none';
WebGPU compute (modern)
const adapter = await navigator.gpu.requestAdapter();
const device = await adapter.requestDevice();
const shader = device.createShaderModule({ code: `
@group(0) @binding(0) var<storage, read_write> v: array<f32>;
@compute @workgroup_size(64) fn main(@builtin(global_invocation_id) g: vec3u) {
v[g.x] = v[g.x] * 2.0;
}`});
// ... pipeline + dispatch
매 결정 기준
| 상황 | Approach |
|---|---|
| Hydration TTI 느림 | islands / partial hydration (Astro, Qwik) |
| Heavy compute on UI thread | Web Worker / WebAssembly |
| Repeated tiny renders | requestAnimationFrame batch |
| Need GPU for ML inference | WebGPU + ONNX Runtime Web |
| Cross-origin embed | iframe + CSP frame-ancestors |
기본값: HTTP/3 + service worker cache + defer non-critical JS + Web Vitals monitoring.
🔗 Graph
- 변형: Chromium · WebKit
- 응용: Single_Page_Application · PWA · Electron
- Adjacent: V8 · WebAssembly · WebGPU · Service_Worker
🤖 LLM 활용
언제: web perf 최적화, browser API 선택, rendering pipeline 디버깅. 언제 X: server-side rendering 내부 (Node/Bun 영역).
❌ 안티패턴
- document.write: 매 parser blocking — 절대 X.
- Synchronous XHR: 매 main thread freeze — deprecated.
- Layout thrash loop: 매 read-write 교차 → forced sync layouts.
- Massive bundle (>1MB JS): 매 mobile TTI 폭망 — code splitting 필수.
- Too many compositor layers: 매 will-change 남발 → GPU memory exhaustion.
🧪 검증 / 중복
- Verified (web.dev/architecture, Chromium design docs 2024, V8 blog 2025).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — multi-process arch, rendering pipeline, modern web APIs |