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 폴더 제거.
"매 falsified theory 의 rescue 의 위해 의 unprincipled patch". Ad-hoc hypothesis = 매 prediction 의 fail 후 의 theory 의 save 의 위해 의 added auxiliary assumption — 매 independent test 의 X + 매 explanatory power 의 add 의 X. Popper (1934, 1963) 의 매 demarcation line — 매 science 의 pseudoscience 의 separate. 매 ML/agent debugging 의 modern equivalent — 매 "magic constant + retry" 의 fix.
매 핵심
매 Popper 의 criterion
Bad ad-hoc: 매 theory 의 only refutation 의 block 의 위해 의 added — 매 new prediction 의 X.
Acceptable auxiliary: 매 independent testable consequence 의 generate.
매 example: Neptune 의 prediction (Le Verrier 1846) 의 acceptable — 매 independently observed.
매 example: Vulcan 의 prediction (Mercury orbit) 의 ad-hoc rescue — 매 GR 의 actually fix.
매 Lakatos 의 refinement
Progressive program: 매 auxiliary 의 novel fact 의 predict + corroborated.
Degenerative program: 매 auxiliary 의 only protect — 매 abandon.
매 modern science 의 example
Phlogiston + 매 negative mass 의 rescue (calx 의 weight gain).
Geocentric + 매 epicycle stack — 매 Copernicus 까지.
Cold fusion (Fleischmann-Pons 1989) + 매 unreproducibility excuse.
Bem's psi + 매 publication bias correction (Wiseman 의 critique).
String theory landscape (debated) + anthropic 의 multiverse 의 rescue.
매 ML / agent 의 modern parallel
Magic constant: temperature=0.7 의 work-when-it-works.
Retry-on-fail: 매 root cause 의 X.
Prompt patching: "you MUST X" 의 stack.
Eval cherry-pick: 매 fail case 의 carve out.
Benchmark contamination excuse: 매 leak 의 always blame.
Hyperparameter stew: 매 새 result 의 매 dataset-specific tweak.
매 응용 (red flag detection)
Code review — 매 sleep(n) workaround.
ML eval — 매 fail mode 의 selectively excluded.
Theory paper — 매 rebuttal 의 only auxiliary 의 add.
Agent debugging — 매 prompt 의 mystery instruction 의 keep accumulating.
Postmortem — 매 root cause 의 X — 매 monitoring patch only.
💻 패턴
Refactor pattern: ad-hoc → principled
# 매 ad-hoc — magic retrydefcall_api(x):for_inrange(3):try:returnapi(x)except:time.sleep(0.5)# 매 why 0.5? why 3?# 매 principled — explicit failure modeldefcall_api(x):returntenacity.retry(retry=retry_if_exception_type(httpx.TimeoutException),# 매 specificstop=stop_after_attempt(3),wait=wait_exponential_jitter(initial=0.5,max=8),reraise=True,)(api)(x)
Eval pattern: pre-register failure modes
# 매 ad-hoc anti — "we exclude the cases where it fails"# 매 principled — pre-register exclusion criteria BEFORE running evalexclusion:- reason:"image >10MB (out of context window)"expected_count:~3%- reason:"prompt 의 non-English (model 의 trained English-only)"expected_count:~5%# 매 post-hoc 의 add 의 X — 매 protocol violation 의 됨
Hypothesis-driven debug
1. Hypothesis: "X causes Y because Z"
2. Independent prediction: "if H true, then we'd see W"
3. Run test that COULD falsify H
4. If H survives + W observed → progressive
5. If H survives only by adding "...except in case Q" → ad-hoc, drop H
Prompt 의 ad-hoc accumulation 의 detect
# 매 prompt 의 length 의 grow + per-rule justification 의 missingSYSTEM="""You are an assistant. ...
- DO NOT use bullet points # added 2024-03 — 매 why?
- ALWAYS confirm before deleting # added 2024-05 — 매 specific incident?
- NEVER mention OpenAI # added 2024-08 — 매 still relevant?
- output JSON ONLY # added 2024-12 — 매 conflict 의 line 1?
"""# 매 audit 의 quarterly + 매 each rule 의 origin + still-needed 의 verify.
Falsifiability test (theory health check)
deffalsifiability_score(theory:str)->dict:return{"predictions":[...],# 매 list explicit"what_would_falsify":[...],# 매 must be non-empty"novel_predictions_made":int,# 매 progressive: >0"rescues_added":int,# 매 degenerative if >> novel}
매 결정 기준
상황
Action
Theory survives only by adding excuse
Drop theory or restructure
Auxiliary 의 independent test 의 generate
Acceptable, test it
ML model 의 fail case 의 patch 의 escalating
Rebuild architecture
Prompt 의 100+ rule
Audit + collapse + redesign
Postmortem "we'll add monitoring" only
Insufficient — 매 root cause 요구
Reviewer asks tough question
매 answer with new prediction, not new excuse
기본값: 매 each auxiliary 의 "what NEW would this predict?" 의 ask. 매 None — 매 ad-hoc.
언제: 매 prompt audit, 매 paper reviewer 의 ad-hoc rescue 의 detect, 매 debugging journal 의 retro.
언제 X: 매 LLM 의 ad-hoc judgment 의 alone trust — 매 human pre-reg + protocol 의 still required.
❌ 안티패턴
Save-the-theory-at-all-cost: 매 auxiliary 의 stack — 매 epicycle pattern.
Selective failure exclusion: 매 post-hoc 의 fail case 의 carve.
Magic-constant patching: 매 root cause 의 X.
Promise-then-defer: "we'll explain Q in future work" — 매 indefinite ad-hoc deferral.
Conspiracy-style rescue: 매 every counter-evidence 의 "the establishment 의 suppress" 의 attribute.
🧪 검증 / 중복
Verified (Popper Logic of Scientific Discovery 1934, Conjectures and Refutations 1963; Lakatos Methodology of Scientific Research Programmes 1978; Sober Core Questions in Philosophy).
신뢰도 A.
🕓 Changelog
날짜
변경
2026-05-08
Phase 1
2026-05-10
Manual cleanup — Popper/Lakatos + ML/agent modern parallel