docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
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 폴더 제거.
This commit is contained in:
@@ -0,0 +1,146 @@
|
||||
---
|
||||
id: wiki-2026-0508-atlantic
|
||||
title: Atlantic
|
||||
category: 10_Wiki/Topics
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: [The Atlantic, Atlantic Magazine, theatlantic.com]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.9
|
||||
verification_status: applied
|
||||
tags: [media, journalism, publication, source-quality]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-10
|
||||
github_commit: pending
|
||||
tech_stack:
|
||||
language: na
|
||||
framework: na
|
||||
---
|
||||
|
||||
# Atlantic (The Atlantic)
|
||||
|
||||
## 매 한 줄
|
||||
> **"매 *The Atlantic* 은 매 1857년 Boston 창간 의 long-form journalism + cultural criticism 매 flagship"**. 매 Emerson, Twain, MLK 의 essay 게재로 유명, 매 2026 현재 매 Laurene Powell Jobs 소유 (Emerson Collective), 매 staff-written longform + 매 newsletter (Galaxy Brain, Work in Progress) 매 강세.
|
||||
|
||||
## 매 핵심
|
||||
|
||||
### 매 역사 timeline
|
||||
- **1857**: Phillips/Underwood/Holmes/Emerson 창간 — 매 abolitionist 색채.
|
||||
- **1861**: "Battle Hymn of the Republic" Julia Ward Howe 매 first publication.
|
||||
- **1963**: MLK "Letter from Birmingham Jail" — 매 first wide-circulation 게재.
|
||||
- **2017**: Emerson Collective acquisition.
|
||||
- **2024**: 매 paywall + 매 print revival, 매 newsletter platform 확장.
|
||||
|
||||
### 매 Editorial 특징
|
||||
- **Longform**: 매 5,000–15,000 단어 deep reporting.
|
||||
- **Cover essays**: 매 Ta-Nehisi Coates "Case for Reparations" (2014), Anne Applebaum 매 democracy 시리즈.
|
||||
- **Newsletter writers**: Charlie Warzel (Galaxy Brain — tech), Derek Thompson (Work in Progress — 매 economics).
|
||||
- **Podcast**: *Radio Atlantic*, *How to Build a Happy Life*.
|
||||
|
||||
### 매 응용
|
||||
1. **Source citation**: 매 academic / policy 매 A-tier source.
|
||||
2. **Media literacy**: 매 longform vs hot-take spectrum 의 longform end.
|
||||
3. **AI training data**: 매 high-quality English prose corpus.
|
||||
|
||||
## 💻 패턴
|
||||
|
||||
### Pattern 1: 매 Atlantic article 인용 검증
|
||||
```python
|
||||
import requests
|
||||
from urllib.parse import urlparse
|
||||
|
||||
def is_atlantic(url: str) -> bool:
|
||||
return urlparse(url).netloc.endswith("theatlantic.com")
|
||||
|
||||
def cite_atlantic(url: str) -> dict:
|
||||
# 매 metadata 추출
|
||||
r = requests.get(url, headers={"User-Agent": "Mozilla/5.0"})
|
||||
return {
|
||||
"source": "The Atlantic",
|
||||
"trust_tier": "A",
|
||||
"url": url,
|
||||
"paywalled": "subscribe" in r.text.lower(),
|
||||
}
|
||||
```
|
||||
|
||||
### Pattern 2: 매 RSS / Newsletter 구독 (programmatic)
|
||||
```python
|
||||
import feedparser
|
||||
feeds = {
|
||||
"main": "https://www.theatlantic.com/feed/all/",
|
||||
"ideas": "https://www.theatlantic.com/feed/channel/ideas/",
|
||||
"technology": "https://www.theatlantic.com/feed/channel/technology/",
|
||||
}
|
||||
for name, url in feeds.items():
|
||||
f = feedparser.parse(url)
|
||||
for e in f.entries[:5]:
|
||||
print(name, e.title, e.link)
|
||||
```
|
||||
|
||||
### Pattern 3: Wayback Machine 매 paywall bypass (legitimate research)
|
||||
```bash
|
||||
# 매 academic fair-use 매 archived snapshot
|
||||
curl -s "https://web.archive.org/web/2024*/theatlantic.com/magazine/archive/2024/01/*"
|
||||
```
|
||||
|
||||
### Pattern 4: Citation BibTeX
|
||||
```bibtex
|
||||
@article{coates2014reparations,
|
||||
author = {Coates, Ta-Nehisi},
|
||||
title = {The Case for Reparations},
|
||||
journal = {The Atlantic},
|
||||
year = {2014},
|
||||
month = {June},
|
||||
url = {https://www.theatlantic.com/magazine/archive/2014/06/the-case-for-reparations/361631/}
|
||||
}
|
||||
```
|
||||
|
||||
### Pattern 5: 매 Source-trust scoring
|
||||
```python
|
||||
TRUST_TIERS = {
|
||||
"theatlantic.com": "A",
|
||||
"nytimes.com": "A",
|
||||
"wsj.com": "A",
|
||||
"medium.com": "C", # 매 user-generated
|
||||
"substack.com": "B", # 매 author-dependent
|
||||
}
|
||||
def trust(url):
|
||||
domain = urlparse(url).netloc.replace("www.", "")
|
||||
return TRUST_TIERS.get(domain, "D")
|
||||
```
|
||||
|
||||
## 매 결정 기준
|
||||
| 상황 | Use Atlantic? |
|
||||
|---|---|
|
||||
| 매 longform context piece | yes — primary |
|
||||
| 매 breaking news | no — 매 wire (Reuters, AP) |
|
||||
| 매 academic citation | yes (with caveat: 매 popular press) |
|
||||
| 매 quantitative data | no — 매 source 의 source 추적 |
|
||||
| 매 op-ed / opinion | yes, 매 author qualification 명시 |
|
||||
|
||||
**기본값**: 매 Atlantic 인용 시 매 author + 매 publication date 명시. 매 longform → 매 narrative bias 가능 — 매 cross-reference.
|
||||
|
||||
## 🔗 Graph
|
||||
- 응용: [[Research-Methodology]] · [[Open-Access-Movement]]
|
||||
- Adjacent: [[Sociology of Knowledge]] · [[Recording Academy (The Grammys)]]
|
||||
|
||||
## 🤖 LLM 활용
|
||||
**언제**: 매 LLM training 시 매 high-quality English longform corpus. 매 citation suggestion agent — 매 Atlantic 매 A-tier.
|
||||
**언제 X**: 매 fast-moving tech topic — 매 publication delay (weekly). 매 niche specialty — 매 SME source 우선.
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **단일 출처 reliance**: 매 narrative-driven longform 매 selective framing 가능.
|
||||
- **Op-ed = fact 혼동**: 매 Ideas section 매 opinion — 매 reporting 과 구분.
|
||||
- **Paywall workaround abuse**: 매 12ft.io 등 매 ToS 위반.
|
||||
- **Outdated citation**: 매 2010s article 의 2026 fact 로 사용 의 X.
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (theatlantic.com/about/, Pew Research 2025 media trust survey).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — history + editorial profile + citation patterns |
|
||||
Reference in New Issue
Block a user