f8b21af4be
10_Wiki/Topics 대규모 정리: - 오류 캡처/미완성 stub 문서 227개 제거 - 교차폴더 중복 43클러스터 병합 (63파일 → redirect) - 링크명 정규화: 깨진 링크 수정·redirect 직결·개념 매핑 ~2,400건 - 카테고리 MOC 6개 신규 생성 - Graph 섹션 미해결 related-keyword 링크 10,058건 제거 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
147 lines
5.1 KiB
Markdown
147 lines
5.1 KiB
Markdown
---
|
||
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 |
|