From 71196c8b4bdb5afab7c3df25e420aaa768e788dc Mon Sep 17 00:00:00 2001 From: Alexander Bocken Date: Tue, 28 Apr 2026 20:42:08 +0200 Subject: [PATCH] feat(faith/apologetik): add apologetics route MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds the entire //{apologetik,apologetics} section: - Landing page introducing the contra/pro split with shield/flame cards. - Contra (objections): 23 objections, each answered by multiple archetype voices (Aquinas, Pascal, Augustine, Lewis, Chesterton, plus Logician, Mystic, Scientist, Pastor archetypes); index + per-argument detail pages with archetype filter and inter-argument navigation. - Pro (positive case): 12 arguments across three layers (supernatural, theism, christianity) voiced by Habermas, Polkinghorne, Newman, Hart, Lewis, Wright, Hahn, Plantinga, Eliade, Feser, Chesterton, Guénon; cumulative-case visual + per-argument detail pages. - DE/EN content via per-language data modules; LA stub layout 307-redirects to English. - Per-language slug via apologetikSlug matcher; canonical-slug enforcement redirects mismatches. - Shared ApologetikToc component (also reused on zehn-gebote katechese). - CaseTabs component for contra/pro switching. - DeepL translation script for regenerating DE data from EN source. - Server-side scripture lookup helper. --- package.json | 2 +- scripts/translate-apologetik.ts | 337 +++ src/lib/components/faith/ApologetikToc.svelte | 151 + src/lib/components/faith/CaseTabs.svelte | 98 + src/lib/data/apologetik.de.ts | 2304 ++++++++++++++++ src/lib/data/apologetik.ts | 2447 +++++++++++++++++ src/lib/server/scriptureLookup.ts | 115 + src/params/apologetikSlug.ts | 5 + .../[faithLang=faithLang]/+layout.svelte | 3 + src/routes/[faithLang=faithLang]/+page.svelte | 6 + .../+layout.server.ts | 22 + .../+page.svelte | 241 ++ .../contra/+page.svelte | 553 ++++ .../contra/+page.ts | 8 + .../contra/[argId]/+page.svelte | 516 ++++ .../contra/[argId]/+page.ts | 16 + .../pro/+page.server.ts | 30 + .../pro/+page.svelte | 643 +++++ .../pro/[posArgId]/+page.server.ts | 44 + .../pro/[posArgId]/+page.svelte | 561 ++++ .../katechese/zehn-gebote/+page.svelte | 98 +- 21 files changed, 8147 insertions(+), 53 deletions(-) create mode 100644 scripts/translate-apologetik.ts create mode 100644 src/lib/components/faith/ApologetikToc.svelte create mode 100644 src/lib/components/faith/CaseTabs.svelte create mode 100644 src/lib/data/apologetik.de.ts create mode 100644 src/lib/data/apologetik.ts create mode 100644 src/lib/server/scriptureLookup.ts create mode 100644 src/params/apologetikSlug.ts create mode 100644 src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/+layout.server.ts create mode 100644 src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/+page.svelte create mode 100644 src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/+page.svelte create mode 100644 src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/+page.ts create mode 100644 src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/[argId]/+page.svelte create mode 100644 src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/[argId]/+page.ts create mode 100644 src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/+page.server.ts create mode 100644 src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/+page.svelte create mode 100644 src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/[posArgId]/+page.server.ts create mode 100644 src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/[posArgId]/+page.svelte diff --git a/package.json b/package.json index d3ba008d..cabb1186 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "homepage", - "version": "1.48.1", + "version": "1.49.0", "private": true, "type": "module", "scripts": { diff --git a/scripts/translate-apologetik.ts b/scripts/translate-apologetik.ts new file mode 100644 index 00000000..be4945b5 --- /dev/null +++ b/scripts/translate-apologetik.ts @@ -0,0 +1,337 @@ +/** + * Translates apologetik English data → target language via DeepL. + * + * Usage: + * pnpm exec vite-node scripts/translate-apologetik.ts # default DE + * pnpm exec vite-node scripts/translate-apologetik.ts -- --lang=DE + * + * Reads: src/lib/data/apologetik.ts (English source of truth) + * Writes: src/lib/data/apologetik..ts + * + * Note: DeepL does not support Latin. For LA, translate manually or wire a + * different provider. + */ + +import { writeFileSync, readFileSync } from 'fs'; +import { resolve } from 'path'; + +// Minimal .env loader — avoid extra deps. +function loadEnv() { + try { + const raw = readFileSync(resolve(process.cwd(), '.env'), 'utf8'); + for (const line of raw.split('\n')) { + const trimmed = line.trim(); + if (!trimmed || trimmed.startsWith('#')) continue; + const eq = trimmed.indexOf('='); + if (eq < 0) continue; + const key = trimmed.slice(0, eq).trim(); + let value = trimmed.slice(eq + 1).trim(); + if ( + (value.startsWith('"') && value.endsWith('"')) || + (value.startsWith("'") && value.endsWith("'")) + ) { + value = value.slice(1, -1); + } + if (!(key in process.env)) process.env[key] = value; + } + } catch { + // no .env — fine, rely on process env + } +} +loadEnv(); + +import { + ARCHETYPES, + ARGUMENTS, + POS_VOICES, + POS_LAYERS, + POS_ARGUMENTS, + type Archetype, + type Argument, + type Counter, + type PosVoice, + type PosLayer, + type PosArgument, + type PosCounter +} from '../src/lib/data/apologetik'; + +const DEEPL_API_KEY = process.env.DEEPL_API_KEY; +const DEEPL_API_URL = process.env.DEEPL_API_URL || 'https://api-free.deepl.com/v2/translate'; + +if (!DEEPL_API_KEY) { + console.error('DEEPL_API_KEY missing from .env'); + process.exit(1); +} + +const argLang = process.argv.find((a) => a.startsWith('--lang='))?.split('=')[1]; +const TARGET_LANG = (argLang ?? 'DE').toUpperCase(); +const FILE_LANG = TARGET_LANG.toLowerCase(); + +const BATCH_SIZE = 50; +const cache = new Map(); + +// Manual overrides applied after DeepL translation, keyed by English source. +// Use for cases where DeepL produces a wrong / inconsistent German rendering +// that should survive regeneration. +const OVERRIDES: Record> = { + DE: { + // generic-masculine for archetype role names + 'The Scientist': 'Der Wissenschaftler' + } +}; + +async function translateBatch(texts: string[]): Promise { + const out: string[] = []; + const toFetch: { idx: number; text: string }[] = []; + for (let i = 0; i < texts.length; i++) { + const cached = cache.get(texts[i]); + if (cached !== undefined) out[i] = cached; + else toFetch.push({ idx: i, text: texts[i] }); + } + for (let i = 0; i < toFetch.length; i += BATCH_SIZE) { + const chunk = toFetch.slice(i, i + BATCH_SIZE); + const body = { + text: chunk.map((c) => c.text), + source_lang: 'EN', + target_lang: TARGET_LANG, + preserve_formatting: true, + formality: 'prefer_more' + }; + const resp = await fetch(DEEPL_API_URL, { + method: 'POST', + headers: { + Authorization: `DeepL-Auth-Key ${DEEPL_API_KEY}`, + 'Content-Type': 'application/json' + }, + body: JSON.stringify(body) + }); + if (!resp.ok) { + const t = await resp.text(); + throw new Error(`DeepL ${resp.status}: ${t}`); + } + const data = (await resp.json()) as { translations: { text: string }[] }; + data.translations.forEach((tr, j) => { + const slot = chunk[j]; + out[slot.idx] = tr.text; + cache.set(slot.text, tr.text); + }); + process.stdout.write(` · translated ${Math.min(i + BATCH_SIZE, toFetch.length)}/${toFetch.length}\n`); + } + return out; +} + +// Helper: collect translatable strings from an object's selected fields, +// queue them, and return a setter that applies the translations back. +type Job = { + get: () => string; + set: (v: string) => void; +}; + +const jobs: Job[] = []; + +function field(obj: T, key: K) { + if (typeof obj[key] !== 'string') return; + jobs.push({ + get: () => obj[key] as unknown as string, + set: (v) => { + (obj as any)[key] = v; + } + }); +} + +function arrayField(arr: T[], key: keyof T) { + for (const item of arr) field(item as any, key as any); +} + +function stringArray(arr: string[]) { + for (let i = 0; i < arr.length; i++) { + const idx = i; + jobs.push({ + get: () => arr[idx], + set: (v) => { + arr[idx] = v; + } + }); + } +} + +// ---------- clone source data ---------- +function cloneArchetype(a: Archetype): Archetype { + return { ...a }; +} +function cloneCounter(c: Counter): Counter { + return { ...c, body: [...c.body], cites: [...c.cites] }; +} +function cloneArgument(a: Argument): Argument { + const counters: Record = {}; + for (const [k, v] of Object.entries(a.counters)) counters[k] = cloneCounter(v); + return { ...a, related: [...a.related], counters }; +} +function clonePosVoice(v: PosVoice): PosVoice { + return { ...v }; +} +function clonePosLayer(l: PosLayer): PosLayer { + return { ...l }; +} +function clonePosCounter(c: PosCounter): PosCounter { + return { ...c, body: [...c.body], cites: [...c.cites] }; +} +function clonePosArgument(a: PosArgument): PosArgument { + const voices: Record = {}; + for (const [k, v] of Object.entries(a.voices)) voices[k] = clonePosCounter(v); + return { + ...a, + related: [...a.related], + voices, + scripture: { ...a.scripture } + }; +} + +const archetypesOut: Record = {}; +for (const [k, v] of Object.entries(ARCHETYPES)) archetypesOut[k] = cloneArchetype(v); +const argumentsOut: Argument[] = ARGUMENTS.map(cloneArgument); +const posVoicesOut: Record = {}; +for (const [k, v] of Object.entries(POS_VOICES)) posVoicesOut[k] = clonePosVoice(v); +const posLayersOut: PosLayer[] = POS_LAYERS.map(clonePosLayer); +const posArgsOut: PosArgument[] = POS_ARGUMENTS.map(clonePosArgument); + +// ---------- queue translation jobs ---------- +// +// What we DON'T translate: +// - id, n, related (cross-link keys) +// - color, colorSoft, colorHex, glyph, font (visual) +// - era (numeric / dates) +// - cites (bibliographic — keep canonical English) +// - scripture.ref (book chapter:verse) +// - layer (enum key) +// - strength (number) + +// archetypes — translate name + sub. DeepL leaves canonical proper nouns alone +// (e.g. "Pascal") and localizes ones with established forms ("Thomas von Aquin", +// "Franz von Assisi", "Augustinus"). Role names ("The Logician") get translated +// idiomatically. +for (const a of Object.values(archetypesOut)) { + field(a, 'name'); + field(a, 'sub'); +} + +// arguments +for (const a of argumentsOut) { + field(a, 'title'); + field(a, 'short'); + field(a, 'steel'); + field(a, 'quote'); + field(a, 'quoteBy'); + field(a, 'pub'); + for (const c of Object.values(a.counters)) { + field(c, 'lede'); + stringArray(c.body); + } +} + +// pos voices — translate name + sub (same rationale as archetypes). +for (const v of Object.values(posVoicesOut)) { + field(v, 'name'); + field(v, 'sub'); +} + +// pos layers +for (const l of posLayersOut) { + field(l, 'title'); + field(l, 'sub'); +} + +// pos arguments +for (const a of posArgsOut) { + field(a, 'title'); + field(a, 'claim'); + field(a, 'thesis'); + if (a.note) field(a, 'note'); + field(a.scripture, 'text'); + for (const c of Object.values(a.voices)) { + field(c, 'lede'); + stringArray(c.body); + } +} + +console.log(`Queued ${jobs.length} translation jobs · target ${TARGET_LANG}`); + +// Site is Swiss High German — no ß. Bible quotes are sourced from Allioli at +// runtime and untouched by this pass, so this only affects translated prose. +function postProcess(s: string): string { + if (TARGET_LANG === 'DE') return s.replace(/ß/g, 'ss'); + return s; +} + +// ---------- run translations ---------- +const inputs = jobs.map((j) => j.get()); +const outputs = await translateBatch(inputs); +const overrides = OVERRIDES[TARGET_LANG] ?? {}; +let overrideHits = 0; +jobs.forEach((j, i) => { + const en = inputs[i]; + if (overrides[en] !== undefined) { + j.set(postProcess(overrides[en])); + overrideHits++; + } else { + j.set(postProcess(outputs[i])); + } +}); +if (overrideHits) console.log(`Applied ${overrideHits} manual override(s)`); + +console.log(`Done · cache hits saved ${jobs.length - cache.size} duplicate calls`); + +// ---------- emit file ---------- +function ts(value: unknown, indent = 0): string { + const pad = '\t'.repeat(indent); + if (value === null) return 'null'; + if (typeof value === 'string') return JSON.stringify(value); + if (typeof value === 'number' || typeof value === 'boolean') return String(value); + if (Array.isArray(value)) { + if (value.length === 0) return '[]'; + const inner = value.map((v) => `${pad}\t${ts(v, indent + 1)}`).join(',\n'); + return `[\n${inner}\n${pad}]`; + } + if (typeof value === 'object') { + const entries = Object.entries(value as object); + if (entries.length === 0) return '{}'; + const inner = entries + .map(([k, v]) => `${pad}\t${JSON.stringify(k)}: ${ts(v, indent + 1)}`) + .join(',\n'); + return `{\n${inner}\n${pad}}`; + } + return JSON.stringify(value); +} + +const header = `// AUTO-GENERATED by scripts/translate-apologetik.ts — DO NOT EDIT BY HAND. +// Source: src/lib/data/apologetik.ts (EN) · Target: ${TARGET_LANG} · Generated ${new Date().toISOString()} +// +// To regenerate: pnpm exec vite-node scripts/translate-apologetik.ts -- --lang=${TARGET_LANG} + +import type { +\tArchetype, +\tArgument, +\tPosArgument, +\tPosLayer, +\tPosVoice +} from './apologetik'; + +`; + +const content = [ + header, + `export const ARCHETYPES_${TARGET_LANG}: Record = ${ts(archetypesOut)};`, + '', + `export const ARGUMENTS_${TARGET_LANG}: Argument[] = ${ts(argumentsOut)};`, + '', + `export const POS_VOICES_${TARGET_LANG}: Record = ${ts(posVoicesOut)};`, + '', + `export const POS_LAYERS_${TARGET_LANG}: PosLayer[] = ${ts(posLayersOut)};`, + '', + `export const POS_ARGUMENTS_${TARGET_LANG}: PosArgument[] = ${ts(posArgsOut)};`, + '' +].join('\n'); + +const outPath = resolve(process.cwd(), `src/lib/data/apologetik.${FILE_LANG}.ts`); +writeFileSync(outPath, content, 'utf8'); +console.log(`✓ Wrote ${outPath}`); diff --git a/src/lib/components/faith/ApologetikToc.svelte b/src/lib/components/faith/ApologetikToc.svelte new file mode 100644 index 00000000..255b8bc6 --- /dev/null +++ b/src/lib/components/faith/ApologetikToc.svelte @@ -0,0 +1,151 @@ + + + + + diff --git a/src/lib/components/faith/CaseTabs.svelte b/src/lib/components/faith/CaseTabs.svelte new file mode 100644 index 00000000..b2030f0f --- /dev/null +++ b/src/lib/components/faith/CaseTabs.svelte @@ -0,0 +1,98 @@ + + + + + diff --git a/src/lib/data/apologetik.de.ts b/src/lib/data/apologetik.de.ts new file mode 100644 index 00000000..c65cf225 --- /dev/null +++ b/src/lib/data/apologetik.de.ts @@ -0,0 +1,2304 @@ +// AUTO-GENERATED by scripts/translate-apologetik.ts — DO NOT EDIT BY HAND. +// Source: src/lib/data/apologetik.ts (EN) · Target: DE · Generated 2026-04-28T11:09:52.089Z +// +// To regenerate: pnpm exec vite-node scripts/translate-apologetik.ts -- --lang=DE + +import type { + Archetype, + Argument, + PosArgument, + PosLayer, + PosVoice, +} from "./apologetik"; + +export const ARCHETYPES_DE: Record = { + logician: { + id: "logician", + name: "Der Logiker", + sub: "kalte Vernunft, Syllogismus", + color: "var(--nord3)", + colorSoft: "rgba(76,86,106,0.12)", + colorHex: "#4C566A", + glyph: "∴", + font: '"JetBrains Mono", ui-monospace, Menlo, Consolas, monospace', + era: "—", + }, + aquinas: { + id: "aquinas", + name: "Thomas von Aquin", + sub: "scholastic, die Fünf Wege", + color: "var(--nord10)", + colorSoft: "rgba(94,129,172,0.14)", + colorHex: "#5E81AC", + glyph: "✠", + font: '"Cormorant Garamond", "EB Garamond", Georgia, serif', + era: "1225–1274", + }, + francis: { + id: "francis", + name: "Franz von Assisi", + sub: "poetisch, Bruder Sonne", + color: "var(--nord14)", + colorSoft: "rgba(163,190,140,0.18)", + colorHex: "#A3BE8C", + glyph: "☼", + font: '"Spectral", "Lora", Georgia, serif', + era: "1181–1226", + }, + augustine: { + id: "augustine", + name: "Augustinus", + sub: "introspektiv, konfessionell", + color: "var(--nord15)", + colorSoft: "rgba(180,142,173,0.18)", + colorHex: "#B48EAD", + glyph: "❦", + font: '"Cormorant Garamond", Georgia, serif', + era: "354–430", + }, + chesterton: { + id: "chesterton", + name: "G.K. Chesterton", + sub: "paradox, witzig", + color: "var(--nord12)", + colorSoft: "rgba(208,135,112,0.18)", + colorHex: "#D08770", + glyph: "⁂", + font: '"Inter", Helvetica, Arial, sans-serif', + era: "1874–1936", + }, + mystic: { + id: "mystic", + name: "Der Mystiker", + sub: "apophatisch, die Wolke", + color: "var(--nord9)", + colorSoft: "rgba(129,161,193,0.18)", + colorHex: "#81A1C1", + glyph: "◯", + font: '"Cormorant Garamond", Georgia, serif', + era: "—", + }, + scientist: { + id: "scientist", + name: "Der Wissenschaftler", + sub: "natürliche Theologie", + color: "var(--nord7)", + colorSoft: "rgba(143,188,187,0.20)", + colorHex: "#8FBCBB", + glyph: "△", + font: '"IBM Plex Mono", ui-monospace, Menlo, monospace', + era: "—", + }, + pastor: { + id: "pastor", + name: "Der Pfarrer", + sub: "gelebte Erfahrung", + color: "var(--nord11)", + colorSoft: "rgba(191,97,106,0.16)", + colorHex: "#BF616A", + glyph: "✚", + font: 'Helvetica, Arial, "Noto Sans", sans-serif', + era: "—", + }, + pascal: { + id: "pascal", + name: "Blaise Pascal", + sub: "mathematiker, die Wette", + color: "var(--nord13)", + colorSoft: "rgba(235,203,139,0.22)", + colorHex: "#EBCB8B", + glyph: "½", + font: '"IBM Plex Mono", ui-monospace, Menlo, monospace', + era: "1623–1662", + }, + lewis: { + id: "lewis", + name: "C.S. Lewis", + sub: "literarischer Apologet", + color: "var(--nord8)", + colorSoft: "rgba(136,192,208,0.20)", + colorHex: "#88C0D0", + glyph: "❧", + font: '"Spectral", "Lora", Georgia, serif', + era: "1898–1963", + }, + newman: { + id: "newman", + name: "John Henry Newman", + sub: "theologe des Gewissens", + color: "#6B3942", + colorSoft: "rgba(107,57,66,0.16)", + colorHex: "#6B3942", + glyph: "☩", + font: '"Cormorant Garamond", Georgia, serif', + era: "1801–1890", + }, + justin: { + id: "justin", + name: "Justin Märtyrer", + sub: "philosoph und Märtyrer", + color: "#A6845F", + colorSoft: "rgba(166,132,95,0.18)", + colorHex: "#A6845F", + glyph: "※", + font: '"Cormorant Garamond", Georgia, serif', + era: "c.100–165", + }, + catechism: { + id: "catechism", + name: "Der Katechismus", + sub: "das Kompendium der Kirche", + color: "#7A8290", + colorSoft: "rgba(122,130,144,0.18)", + colorHex: "#7A8290", + glyph: "☧", + font: '"Cormorant Garamond", Georgia, serif', + era: "promulgated 1992", + }, + historian: { + id: "historian", + name: "Der Historiker", + sub: "altphilologe", + color: "#4A6741", + colorSoft: "rgba(74,103,65,0.18)", + colorHex: "#4A6741", + glyph: "✦", + font: '"Cormorant Garamond", Georgia, serif', + era: "—", + }, +}; + +export const ARGUMENTS_DE: Argument[] = [ + { + id: "evil", + n: 1, + title: "Wenn Gott existiert, warum gibt es dann das Böse?", + short: "Das Problem des Bösen", + steel: + "Ein allmächtiger, allwissender, vollkommen guter Gott könnte Leid verhindern und würde dies auch wollen. Doch Erdbeben machen Städte platt, Kinder sterben an Krebs und der Holocaust ist geschehen. Entweder kann Gott nicht, will nicht oder ist nicht da.", + quote: + "Ist Gott willens, das Böse zu verhindern, aber nicht in der Lage? Dann ist er nicht omnipotent. Ist er fähig, aber nicht willens? Dann ist er böswillig. Ist er sowohl fähig als auch willig? Woher kommt dann das Böse?", + quoteBy: "Epikur, wie von Hume paraphrasiert", + pub: "Wenn Gott so gut ist, warum ist dann mein Hund gestorben?", + related: ["hiddenness", "hell", "natural-evil"], + counters: { + logician: { + lede: 'Das Argument ist zweideutig, wenn es um "gut" geht', + body: [ + "Prämisse 1 geht davon aus, dass ein vollkommen gutes Wesen das Leiden immer beseitigen würde. Aber das vermengt das Wohl eines einzelnen Moments mit dem Wohl eines Ganzen.", + "Ein Chirurg verursacht Schmerzen, um zu heilen. Ein Elternteil lässt einen Sturz zu, um das Gleichgewicht zu lehren. Die Handlung wird durch das Leid, das sie verursacht, nicht zum Übel, wenn ein ausreichendes Gegengewicht nicht anders zu erreichen ist.", + "Die deduktive Form des Problems (Mackie, 1955) wurde sogar von atheistischen Philosophen nach Plantingas Verteidigung des freien Willens aufgegeben. Was bleibt, ist die beweiskräftige Form - und beweiskräftige Argumente führen nicht zu Gewissheit, sondern nur zu Wahrscheinlichkeiten, die durch Prioritäten gewichtet werden. Der Prior des Theisten ist nicht irrational.", + ], + cites: [ + "Plantinga, God, Freedom, and Evil (1974)", + 'Mackie, "Evil and Omnipotence" (1955)', + ], + }, + aquinas: { + lede: "Das Böse ist keine Sache. Es ist eine Entbehrung.", + body: [ + "Was auch immer existiert, ist gut, insofern es existiert. Das Böse ist die Abwesenheit eines Gutes, das vorhanden sein sollte - Blindheit in einem Auge, Grausamkeit in einem Willen. Gott ist die Ursache des Seins, nicht die Ursache für diese Abwesenheiten.", + "Gott lässt das Böse nur insofern zu, als er ein grösseres Gut daraus ziehen kann. Die Kreuzigung Christi ist das beste Beispiel dafür: Die schlimmste Tat der Geschichte wurde zum Instrument der Erlösung.", + "Daraus folgt nicht, dass wir immer das Gute sehen müssen. Der Fehler liegt nicht in der Ordnung der Vorsehung, sondern in der Begrenztheit unseres Blickwinkels.", + ], + cites: ["Summa Theologiae I, q.49", "Contra Gentiles III, c.71"], + }, + francis: { + lede: "Der Wolf von Gubbio fiel mir in die Hände.", + body: [ + "Bruder, Sie fragen, warum Sie leiden. Ich bin unter Aussätzigen gewandelt und habe sie umarmt und Christus in ihren Wunden gefunden. Die Welt seufzt, aber sie seufzt nach etwas.", + "Als der Wolf das Dorf zerriss, habe ich den Wolf nicht verflucht. Ich ging hinaus und nannte ihn Bruder und er legte sich hin. Das Böse wird nicht durch Argumente widerlegt, sondern durch die Liebe, die ihm begegnet.", + "Schwester Tod selbst ist ein Geschenk, wenn man sie gut grüsst. Gelobt sei der Herr für unsere Schwester, den leibhaftigen Tod, dem kein lebender Mensch entkommen kann.", + ], + cites: ["Canticle of the Creatures", "Fioretti, ch. 21"], + }, + lewis: { + lede: "Schmerz ist das Megaphon Gottes.", + body: [ + "Wir können sogar die Freude ignorieren. Aber der Schmerz besteht darauf, beachtet zu werden. Gott flüstert uns in unseren Vergnügungen zu, spricht in unserem Gewissen, aber schreit in unseren Schmerzen.", + 'Wenn das Universum so schlecht ist, wie um alles in der Welt sind die Menschen dann dazu gekommen, es dem Wirken eines weisen und guten Schöpfers zuzuschreiben? Die Idee des "Bösen" selbst ist einer realen Notwendigkeit entlehnt, von der wir wissen, dass sie uns fehlt.', + "Wenn Sie gegen Gott wegen Ungerechtigkeit argumentieren, gehen Sie von einem echten Massstab für Gerechtigkeit aus. Woher kommt dieser Massstab?", + ], + cites: [ + "The Problem of Pain (1940)", + "Mere Christianity, Bk. I, ch. 1", + ], + }, + }, + }, + { + id: "evidence", + n: 2, + title: "Es gibt keine Beweise für Gott.", + short: "Die Forderung nach Beweisen", + steel: + "Aussergewöhnliche Behauptungen erfordern aussergewöhnliche Beweise. Wir akzeptieren Zeus, Thor oder Russells Teekanne nicht aus Überzeugung. Die Gotteshypothese besteht den gleichen Test nicht: keine von Experten begutachtete Beobachtung, keine falsifizierbare Vorhersage, nichts.", + quote: + "Was ohne Beweise behauptet werden kann, kann auch ohne Beweise verworfen werden.", + quoteBy: "Christopher Hitchens", + pub: "Zeigen Sie mir ein Wunder vor der Kamera und ich werde es glauben.", + related: ["science", "design", "miracles"], + counters: { + logician: { + lede: 'die "Beweise" machen bei diesem Argument die ganze Arbeit.', + body: [ + 'Wenn Sie mit "Beweisen" nur wiederholbare Laborbeobachtungen meinen, ist die Forderung fragwürdig: Sie setzt den Naturalismus voraus (nur physische Dinge sind real) und beschwert sich dann, dass kein physischer Detektor eine nicht-physische Ursache aufspürt.', + "Historische Beweise, Zeugenaussagen, philosophische Beweise und persönliche Erfahrungen gelten in jedem anderen Bereich als Beweise - vor Gericht, in der Geschichte, in der Ethik. Sie nur dann auszuschliessen, wenn es um Gott geht, ist eine spezielle Argumentation.", + "Russells Teekanne versagt als Analogie: Nichts in der Struktur der Realität verlangt nach einer Teekanne. Viele Dinge in der Struktur der Realität (Kontingenz, Feinabstimmung, Bewusstsein, moralische Verpflichtung) erfordern eine Erklärung.", + ], + cites: ["Plantinga, Warranted Christian Belief (2000)"], + }, + scientist: { + lede: "Die Feinabstimmung der Konstanten ist der Beweis.", + body: [ + "Ändern Sie die kosmologische Konstante um einen Teil von 10^120 und es bilden sich keine Galaxien. Ändern Sie die starke Kernkraft um 2% und es gibt keinen Kohlenstoff. Die Menge der Universen, die Beobachter zulassen, ist ein verschwindend kleiner Ausschnitt.", + "Es gibt drei Erklärungen: die nackte Tatsache (ein 10^-N-Zufall, den wir nicht bemerkenswert finden dürfen), ein Multiversum (die Annahme von ~10^500 unbeobachtbaren Universen, um eines zu erklären) oder Design.", + "Das Multiversum ist kein sparsamer Naturalismus. Es ist ein metaphysischer Standpunkt, der mindestens so ehrgeizig ist wie der Theismus, mit einer schlechteren Erklärungskraft.", + ], + cites: [ + "Penrose, The Road to Reality (2004), §27.13", + 'Collins, "The Teleological Argument" (2009)', + ], + }, + aquinas: { + lede: "Es gibt fünf Beweise.", + body: [ + "Von der Bewegung: Dinge, die sich verändern, erfordern einen Veränderer; die Kette kann nicht unendlich zurückgehen; daher ein unbewegter Beweger.", + "Von der Verursachung: nichts verursacht sich selbst; ein unendlicher Regress von Ursachen kommt nie in Gang; daher eine erste Ursache.", + "Von der Kontingenz, von der Abstufung, von der Teleologie - jede zieht eine Linie von einem Merkmal der Welt, das wir bereits akzeptieren, zu einem Wesen, dessen Existenz diese Merkmale erfordern. Dies ist kein blinder Glaube. Es sind Argumente. Lassen Sie sich auf sie ein oder nicht, aber sagen Sie nicht, es gäbe nichts, worauf man sich einlassen könnte.", + ], + cites: ["Summa Theologiae I, q.2, a.3"], + }, + pascal: { + lede: "Versteckt genug, um abgelehnt zu werden. Sichtbar genug, um gesucht zu werden.", + body: [ + "Wenn Gott unbestreitbare Beweise liefern würde, wäre kein Glaube erforderlich und keine Liebe frei gegeben. Wenn er nichts geben würde, könnte kein ehrlicher Sucher ihn finden. Er hat sich für die Mitte entschieden: ausreichende Zeichen für diejenigen, die ihn wollen, und kein Zwang für diejenigen, die ihn nicht wollen.", + "Es gibt genug Licht für diejenigen, die nur sehen wollen, und genug Dunkelheit für diejenigen, die eine gegenteilige Veranlagung haben.", + "Das Herz hat seine Gründe, von denen die Vernunft nichts weiss. Wir spüren es in tausend Dingen. Es ist das Herz, das Gott wahrnimmt, nicht die Vernunft.", + ], + cites: ["Pensées, §149, §424"], + }, + mystic: { + lede: "Er ist kein Objekt, das Sie im Universum finden können.", + body: [ + "Sie suchen nach Gott, so wie Sie nach einem Planeten suchen würden - irgendwo im Inventar der Dinge. Aber das Inventar der Dinge ist genau das, in dem Gott nicht vorkommt. Gott ist der Grund, warum es überhaupt ein Inventar gibt.", + "Die Wolke der Unwissenheit steht zwischen uns und ihm. Nicht weil er sich versteckt, sondern weil endliche Augen das unendliche Licht nicht sehen können.", + "Seien Sie still. Der Beweis liegt nicht hinter einem Teleskop. Es ist die Stille, nachdem Sie aufgehört haben zu reden.", + ], + cites: [ + "The Cloud of Unknowing (14th c.)", + "Pseudo-Dionysius, Mystical Theology", + ], + }, + }, + }, + { + id: "science", + n: 3, + title: + "Die Wissenschaft hat alles erklärt, was die Religion früher nicht konnte.", + short: "Gott der Lücken", + steel: + "Blitze waren Zeus, dann war es Elektrizität. Krankheiten waren Dämonen, dann waren es Keime. Die Geschichte der Religion ist die Geschichte des Rückzugs aus Erklärungen, wenn die Wissenschaft auftaucht. Gott ist das, was in den Lücken übrig bleibt, und die Lücken schliessen sich.", + quote: + "Die Religion war der erste Versuch der menschlichen Ethnie, zu erklären, was vor sich ging. Wir können es jetzt besser machen.", + quoteBy: "Bertrand Russell, paraphrasiert", + pub: "Wir brauchen Gott nicht mehr - wir haben die Physik.", + related: ["evidence", "design", "morality"], + counters: { + scientist: { + lede: "Die moderne Wissenschaft ist aus der Theologie entstanden, nicht trotz ihr.", + body: [ + "Die Überzeugung, dass die Natur gesetzmässig und verständlich ist - dass die Realität auf die Mathematik antwortet - ist ein theologisches Erbe. Newton, Kepler, Mendel, Lemaître, Faraday: keine Versäumnisse, sondern die Begründer.", + "Die Wissenschaft erklärt, wie ein Teekessel kocht. Sie kann nicht erklären, warum es einen Wasserkocher gibt oder warum die Gesetze, die das Kochen regeln, existieren oder warum es einen Geist gibt, der sie kennen kann. Dies sind keine Lücken in unserem Wissen. Es sind kategorisch unterschiedliche Fragen.", + "Der Urknall selbst wurde von atheistischen Physikern jahrzehntelang bekämpft, weil er einen Anfang suggerierte. Das Modell, das sich durchsetzte, war das von Lemaître, einem katholischen Priester, vorgeschlagene.", + ], + cites: [ + "Hannam, God's Philosophers (2009)", + "Lemaître, Annales de Bruxelles (1927)", + ], + }, + logician: { + lede: "Kategorie-Fehler.", + body: [ + '"Wie"-Fragen und "Warum"-Fragen stehen nicht in Konkurrenz zueinander. Der Mechanismus, durch den ein Kessel kocht, eliminiert nicht das Gasunternehmen.', + '"Gott der Lücken" ist ein Vorwurf gegen schlechte Theologie, nicht gegen die Theologie. Aquin hat nicht aus Unwissenheit argumentiert. Er argumentierte mit Merkmalen der Realität (Bewegung, Kausalität), die die Physik voraussetzt und nicht erklärt.', + "Wenn die nächste physikalische Theorie gefunden wird, wird auch sie auf einem metaphysischen Boden stehen - die Existenz von Gesetzen, die Rationalität der Realität, das Warum-überhaupt. Dieser Boden ist der Name Gottes.", + ], + cites: ['Sober, "Empiricism" (2008)'], + }, + chesterton: { + lede: "Es ist der Materialist, der das kleine Universum hat.", + body: [ + "Der Christ glaubt, dass die Welt eine Geschichte ist; der Materialist glaubt, dass sie ein Ausdruck ist. Die Geschichte hat mehr Platz für Dinge als der Ausdruck für Fakten.", + "Es ist absurd, sich darüber zu beschweren, dass das Übernatürliche nicht durch das Natürliche geprüft werden kann. Genauso gut könnten Sie sich beschweren, dass die Liebe Ihrer Frau nicht gewogen werden kann.", + "Das Problem ist nicht, dass der Materialist mit dieser oder jener Tatsache im Unrecht ist. Das Problem ist, dass er auf seine kleine Art und Weise Recht hatte und seinen Weg zur Grösse der Welt gemacht hat.", + ], + cites: ["Orthodoxy, ch. 2"], + }, + lewis: { + lede: "Sie schauen entlang des Balkens, nicht auf ihn.", + body: [ + "Wenn ein Mann verliebt ist, kann er aus dem Erlebnis heraustreten und es wissenschaftlich betrachten - Hormone, evolutionäre Paarbindung. Der Blick von aussen ist wahr. Aber sie ist auch unsagbar dünn.", + "Die Wissenschaft ist die Sicht von aussen, die auf den Sonnenstrahl blickt. Religion ist der Blick aus dem Inneren des Strahls, der auf das schaut, was der Strahl enthüllt.", + "Beide sind gültig. Keines ersetzt das andere. Zu sagen, die Wissenschaft habe die Religion verdrängt, ist wie zu sagen, das Diagramm der Liebe habe den Liebhaber verdrängt.", + ], + cites: ['"Meditation in a Toolshed" (1945)'], + }, + }, + }, + { + id: "morality", + n: 4, + title: "Wir brauchen Gott nicht, um gut zu sein.", + short: "Weltliche Ethik", + steel: + "Säkulare Gesellschaften (Schweden, Dänemark, Japan) schneiden bei jeder Messung des menschlichen Wohlbefindens besser ab als religiöse Gesellschaften. Empathie, evolutionäre Verwandtschaft, Gesellschaftsvertrag - all das erklärt die Moral ohne göttliches Gebot. Viele religiöse Menschen verhalten sich furchtbar, viele Atheisten sind freundlich.", + quote: "Ich glaube nicht an Gott und ich bin kein Mörder. Das war's.", + quoteBy: "gemeinsame Formulierung", + pub: "Ich bin ein guter Mensch ohne Religion. Ende der Geschichte.", + related: ["evidence", "evil", "religion-violence"], + counters: { + logician: { + lede: "Das Verhalten ist nicht die Frage. Sondern Erdung.", + body: [ + 'Niemand bestreitet, dass Atheisten oft moralisch vorbildlich sind. Die Frage ist nicht, wer sich moralisch verhält. Die Frage ist, was "moralisch" bedeutet - ob moralische Fakten real sind oder lediglich nützliche Fiktionen der Evolutionspsychologie.', + 'Wenn Moral eine Überlebensheuristik ist, hat sie nicht mehr Autorität über Sie als eine Heuristik über Nahrungsvorlieben. aus "Sie sollten Kinder nicht zum Spass quälen" wird "Primaten Ihrer Abstammung neigen dazu, dies nicht zu tun"', + "Die meisten säkularen Ethiker räumen dies ein und beissen entweder in die nihilistische Kugel (Mackie, Irrtumstheorie) oder schmuggeln eine nicht-natürliche Tatsache ein (Parfit, über die Ordnung des Seins). Die eingeschmuggelte Tatsache ist das Interessante daran.", + ], + cites: [ + "Mackie, Ethics: Inventing Right and Wrong (1977)", + "Parfit, On What Matters (2011)", + ], + }, + augustine: { + lede: "Ich wusste, was richtig war und habe trotzdem das Falsche getan.", + body: [ + "Ich habe die Birnen nicht gestohlen, weil ich hungrig war - wir haben sie den Schweinen vorgeworfen. Ich habe sie gestohlen, weil mich der Diebstahl selbst erfreute. Die atheistische Erklärung der Moral kann nicht erklären, warum ich selbst während der Tat wusste, dass ich etwas in mir zerriss.", + "Unsere Herzen sind unruhig. Wir müssen nicht darüber belehrt werden, dass wir versagt haben; wir werden nur über den Namen dessen belehrt, gegen den wir versagt haben.", + "Du hast uns für dich geschaffen, oh Herr, und unser Herz ist unruhig, bis es in dir ruht.", + ], + cites: ["Confessions II.4, I.1"], + }, + lewis: { + lede: "Das Tao wird nicht erfunden, es wird erkannt.", + body: [ + "Jede Kultur, ob isoliert oder nicht, verurteilt Feigheit, Verrat und Grausamkeit gegenüber den Schwachen. Sie unterscheiden sich in den Details - wer als Angehöriger zählt - aber sie stimmen in der Form überein. So würde eine entwickelte Heuristik nicht aussehen, sondern ein anerkanntes Gesetz.", + 'Wenn Sie sagen "das ist nicht fair", berufen Sie sich auf etwas, das keiner von uns erfunden hat und an das wir beide gebunden sind. Woher kommt das?', + "Wenn es kein wirkliches Recht gibt, ist Ihre Empörung über Ungerechtigkeit ein chemischer Vorgang. Wenn es sie gibt, haben Sie bereits mehr zugegeben, als der Naturalismus ausgleichen kann.", + ], + cites: ["The Abolition of Man (1943)", "Mere Christianity, Bk. I"], + }, + pastor: { + lede: "Ich habe gute Atheisten begraben.", + body: [ + "Verstehen Sie mich nicht falsch. Ich habe Atheisten gekannt, die freundlicher waren als die meisten Christen. Die Frage ist für mich nicht, wer gut ist - das weiss Gott und ich nicht.", + 'Die Frage ist, was man der Frau sagt, deren Kind gestorben ist, oder dem Süchtigen bei seinem achten Rückfall, oder dem sterbenden Mann, der sich fragt, ob das alles von Bedeutung ist. "Seien Sie gut und die Spezies wird davon profitieren" ist nichts, was man jemandem sagt, der im Dunkeln tappt.', + "Das Evangelium ist nicht in erster Linie eine Ethik. Es ist eine Nachricht für die Menschen, die die Ethik nicht erreichen kann.", + ], + cites: [], + }, + }, + }, + { + id: "religion-violence", + n: 5, + title: "Religion ist die Ursache für die meiste Gewalt in der Geschichte.", + short: "Kreuzzüge, Inquisition, Dschihad", + steel: + "Kreuzzüge, Inquisition, Hexenprozesse, Sektiererkriege, 9/11, die Unruhen. Die Religion vergiftet alles, indem sie den Menschen die Lizenz zum Töten im Namen der Gewissheit gibt. Eine Welt ohne Religion wäre messbar weniger gewalttätig.", + quote: "Religion vergiftet alles.", + quoteBy: "Christopher Hitchens", + pub: "Im Namen Gottes sind mehr Menschen getötet worden als durch irgendetwas anderes.", + related: ["morality", "evil"], + counters: { + logician: { + lede: "Überprüfen Sie die Anzahl der Leichen.", + body: [ + "Das 20. Jahrhundert, das eindeutig säkularste Jahrhundert der Geschichte, hat mehr Menschen aus ideologischen Gründen getötet als alle vorherigen Jahrhunderte zusammen. Die Sowjetunion, das maoistische China, die Roten Khmer, Nordkorea - atheistische Regime, wie sie sich selbst beschreiben.", + 'Das Argument muss die Form haben: "X verursacht Y" Aber die Vergleichsklasse für X (mit Religion) umfasst den grössten Teil der Menschheitsgeschichte; die Vergleichsklasse für Nicht-X (offiziell ohne Religion) ist klein, jung und blutig.', + "Stammesdenken, Knappheit und Machtstreben verursachen Gewalt. Religion kann sie rekrutieren. Ebenso wie Nationalismus, Ethnizität, Ideologie und Fussball.", + ], + cites: [ + "Pinker, Better Angels (2011), table on 20th c. democide", + "Rummel, Death by Government (1994)", + ], + }, + chesterton: { + lede: "Wenn Sie die Kirche entfernen, erhalten Sie keine Vernunft. Sie bekommen die nächste Kirche.", + body: [ + "Die Männer, die das Kreuz abnahmen, stellten die Guillotine auf, dann das Hakenkreuz, dann den roten Stern. Der Thron bleibt nicht leer. Irgendetwas regiert immer.", + "Eine gute Religion zeichnet sich dadurch aus, dass man über sie scherzen kann. Es ist der Test einer schlechten Ideologie, dass Sie das nicht können.", + "Ein Mensch, der sich weigert, an Gott zu glauben, wird an alles glauben. Er hat nicht aufgehört, leichtgläubig zu sein; er hat nur aufgehört, zu unterscheiden.", + ], + cites: ["The Thing (1929), ch. 25"], + }, + augustine: { + lede: "Die Stadt Gottes ist nicht die Stadt irgendeiner Flagge.", + body: [ + "Ich habe gesehen, wie Rom fiel und die Christen dafür verantwortlich gemacht wurden. Ich habe auch Christen gesehen, die die Schuld verdient haben. Beide sind Teil einer Geschichte: Die sichtbare Kirche ist ein gemischter Leib, Weizen und Unkraut zusammen, und wird es bis zur Ernte sein.", + "Das Schwert, das im Namen Christi eingesetzt wurde, wurde immer gegen den Namen Christi eingesetzt. Der Kreuzritter, der den Juden von Mainz abschlachtete, wurde nicht gehorsamer gegenüber der Bergpredigt. Er wurde weniger.", + "Lieben Sie, und tun Sie, was Sie wollen. Aber beachten Sie: Liebe. Nicht Eifer. Nicht Gewissheit. Liebe.", + ], + cites: ["City of God I.1; Tractates on John 7.8"], + }, + pastor: { + lede: "Die Menschen, die ich begrabe, wurden nicht durch die Religion getötet.", + body: [ + 'Ich habe zwei Kirchengemeinden gedient. In keiner von beiden wurde in der Kaffeestunde die Frage gestellt: "Sollen wir jemanden umbringen". Die Dramen sind: eine gescheiterte Ehe, ein Teenager in Schwierigkeiten, ein alter Mann, der einsam stirbt, ein Süchtiger, der es wieder versucht.', + "Was auch immer die Religion auf der Weltbühne tut, auf der kleinen Bühne, auf der sich das meiste Leben abspielt, sitzt sie bei den Sterbenden, gibt den Hungrigen zu essen, heiratet die Liebenden, gibt den Kindern einen Namen und beerdigt die Toten. Die Buchhaltung muss auch diese Seite des Buches berücksichtigen.", + "Wir sind nicht tadellos. Wir waren schon schlimmer als schuldlos. Aber wir sind immer noch hier und machen diese Arbeit, oft, wenn es sonst niemand tut.", + ], + cites: [], + }, + }, + }, + { + id: "design", + n: 6, + title: "Die Evolution erklärt Design ohne einen Designer.", + short: "Darwins blinder Uhrmacher", + steel: + "Die Uhr von Paley war das stärkste Argument vor Darwin. Darwin hat es entsorgt. Zufällige Mutation plus nicht-zufällige Selektion erzeugt den Anschein von Design von unten. Wir brauchen keinen Designer für das Auge, die Hand oder den Menschen.", + quote: + "Die Biologie ist das Studium komplizierter Dinge, die den Anschein erwecken, für einen bestimmten Zweck geschaffen worden zu sein.", + quoteBy: "Richard Dawkins", + pub: "Die Evolution hat Gott getötet.", + related: ["science", "evidence"], + counters: { + scientist: { + lede: "Die Evolution erklärt die Uhr. Sie erklärt nicht die Werkzeuge des Uhrmachers.", + body: [ + "Selbst wenn Sie die volle Darwinsche Geschichte für biologische Formen zugestehen, sind Sie nicht darauf eingegangen, warum die Gesetze der Physik die Chemie zulassen, warum die Konstanten stabile Materie zulassen, warum das Universum überhaupt entstanden ist, warum die Mathematik es beschreibt und warum es Menschen gibt, die diese Wissenschaft betreiben können.", + 'Das teleologische Argument ist der Biologie schon lange vorgelagert. Die Frage ist nicht, "wer das Auge entworfen hat", sondern "wer die Bühne geschaffen hat, auf der Design-by-Selection stattfinden kann"', + "Und die moderne Literatur zur Feinabstimmung - Penrose, Rees, Carter - ist keine theologische Propaganda. Es ist Mainstream-Kosmologie, die dieselbe Frage stellt wie Aquin, nur mit grösseren Zahlen.", + ], + cites: [ + "Rees, Just Six Numbers (1999)", + "Penrose, Cycles of Time (2010)", + ], + }, + francis: { + lede: "Ich habe mit Bruder Wolf und Schwester Moon gesprochen.", + body: [ + "Sie geben mir einen Mechanismus und nennen ihn eine Erklärung. Aber der Mechanismus ist selbst ein Wunder. Selektion erfordert Fortpflanzung; Fortpflanzung erfordert ein Selbst, das versagen kann; ein Selbst, das versagen kann, ist bereits ein Wunder.", + "Gepriesen sei mein Herr mit all seinen Geschöpfen, besonders Herr Bruder Sonne, der der Tag ist, durch den Du uns Licht schenkst. Ob in sechs Tagen oder in sechs Milliarden Jahren, der Gesang ist unverändert.", + "Die Evolution zieht das Lob nicht ab. Sie sagt uns, mit wie vielen Mitteln Gott das Gänseblümchen aus dem Staub holt.", + ], + cites: ["Canticle of the Creatures"], + }, + aquinas: { + lede: "Der fünfte Weg hängt nicht vom biologischen Design ab.", + body: [ + "Ich habe mit der Regelmässigkeit natürlicher Agenten argumentiert - die Art und Weise, wie ein Pfeil auf das Ziel fliegt, muss von einem Geist gelenkt werden, der nicht denkt. Die Auswahl ist eine Regelmässigkeit. Die Regelmässigkeit selbst ist das, was erklärt werden muss.", + "Sekundäre Ursachen sind real und wirken durch ihre eigene Natur. Gott wirkt durch sie, wie der Zimmermann durch die Säge wirkt. Zu sagen, die Säge schneidet, ist wahr; zu sagen, der Zimmermann tut es nicht, ist falsch.", + "Dass ein Prozess Ordnung schafft, ist nicht weniger bemerkenswert als das, was ein Handwerker tut. Es ist bemerkenswerter, weil der Prozess zuerst entworfen werden muss.", + ], + cites: ["Summa Theologiae I, q.2, a.3 (Fifth Way); q.103, a.6"], + }, + chesterton: { + lede: "Die Evolution ist eine Beschreibung, keine Erklärung.", + body: [ + "Wenn Evolution einfach nur bedeutet, dass sich ein positives Ding namens Affe langsam in ein positives Ding namens Mensch verwandelt hat, dann ist sie für die meisten Orthodoxen stumpfsinnig, denn ein persönlicher Gott könnte die Dinge genauso gut langsam wie schnell tun.", + "Aber wenn es bedeutet, dass es so etwas wie einen Affen oder einen Menschen nicht gibt - nur einen endlosen Fleck des Werdens - dann ist das ein viel gewagteres Dogma als jedes der Glaubensbekenntnisse.", + "Mir ist aufgefallen, dass Männer, die sagen, die Evolution mache Gott überflüssig, meist meinen, die Evolution mache die Moral überflüssig. Sie haben die Tür hinter sich offen gelassen.", + ], + cites: ["The Everlasting Man (1925), Pt. I"], + }, + }, + }, + { + id: "miracles", + n: 7, + title: "Wunder gibt es nicht.", + short: "Humes Argument", + steel: + "Ein Wunder ist per Definition ein Verstoss gegen das Naturgesetz. Unser Beweis für das Naturgesetz ist die einheitliche Erfahrung eines jeden Beobachters, immer. Unsere Beweise für ein bestimmtes Wunder sind höchstens einige wenige Zeugnisse, die oft Jahrhunderte alt sind und von religiösen Gemeinschaften überliefert werden, die motiviert sind, sie zu bewahren. Die Bayes'sche Arithmetik erledigt den Rest.", + quote: + "Kein Zeugnis reicht aus, um ein Wunder zu beweisen, es sei denn, das Zeugnis ist so beschaffen, dass seine Unwahrheit ein grösseres Wunder wäre als die Tatsache, die es zu beweisen versucht.", + quoteBy: "David Hume", + pub: "Niemand steht von den Toten auf. Punkt.", + related: ["evidence", "science"], + counters: { + logician: { + lede: "Hume nahm seine Schlussfolgerung an.", + body: [ + 'Das Argument: Wunder sind sehr unwahrscheinlich; Zeugnisse über Wunder sind wahrscheinlicher falsch als das Wunder wahr ist; deshalb lehnen Sie alle Wunderberichte ab. Aber "Wunder sind sehr unwahrscheinlich" ist eine Wahrscheinlichkeit, die voraussetzt, dass es keinen Gott gibt. Das ganze Argument ist von der Schlussfolgerung abhängig.', + "Wenn man davon ausgeht, dass es einen Gott gibt, der in der Geschichte handelt, ist die Zahl der Wunder im Zusammenhang mit dieser Geschichte nicht verschwindend gering. Es ist genau das, was Sie erwarten würden.", + "Die Frage reduziert sich also auf: Gibt es einen Gott? Hume hat nicht bewiesen, dass es keinen gibt. Er hat nur gezeigt, dass, wenn es keinen Gott gibt, auch keine Wunder geschehen.", + ], + cites: [ + "Earman, Hume's Abject Failure (2000)", + "Swinburne, The Resurrection of God Incarnate (2003)", + ], + }, + pastor: { + lede: "Ich habe gesehen, was ich gesehen habe.", + body: [ + "Ich diente in einer Gemeinde, in der eine Frau, die an Bauchspeicheldrüsenkrebs im vierten Stadium starb, uns bat, zu beten. Wir taten es. Sie ist am Leben. Die Ärzte wissen nicht, warum.", + "Ich bitte Sie nicht, mir zu glauben. Ich bitte Sie, die Menschen in meiner Gemeinde, die einen normalen Job haben und keinen Anreiz zum Lügen, zu fragen, was sie gesehen haben.", + "Wunder sind keine statistischen Ereignisse. Es sind Personen, die angesprochen werden. Die Geschichte hat immer ein Gesicht.", + ], + cites: ["Keener, Miracles (2011), 2 vols."], + }, + lewis: { + lede: "Wenn Sie sie bereits ausgeschlossen haben, finden Sie natürlich keine.", + body: [ + "Wenn die Existenz Gottes anerkannt wird, sind Wunder ganz natürlich. Wird sie nicht anerkannt, sind Wunder völlig unmöglich. Die Frage ist geklärt, bevor die Beweise untersucht werden.", + "Humes Prinzip würde Sie, wenn Sie es ernst nehmen, dazu bringen, jedes hinreichend ungewöhnliche Ereignis abzulehnen - die Entdeckung der Relativitätstheorie, das Überleben eines Mannes, der von einem Zug erfasst wurde. Er wendet es nur gegen Wunder an, weil er es will.", + "Das grosse Wunder ist die Inkarnation. Wenn sie stattgefunden hat, sind die kleineren Wunder Fussnoten. Wenn nicht, sind sie nur Lärm.", + ], + cites: ["Miracles (1947), ch. 8, ch. 14"], + }, + pascal: { + lede: "Wetteinsatz.", + body: [ + "Wenn nie ein Wunder geschieht, verlieren Sie nichts, wenn Sie den Fall auf ein bestimmtes untersuchen. Wenn auch nur eines geschieht, haben Sie alles verloren, weil Sie sich weigern, danach zu suchen.", + "Der erwartete Wert der Untersuchung ist bei jeder Priorität über Null positiv. Humes Priorität ist genau Null, was keine Wahrscheinlichkeitszuweisung ist, sondern eine Weigerung zu spielen.", + "Ich bitte Sie nicht zu glauben. Ich bitte Sie, die Wette abzuwägen.", + ], + cites: ["Pensées, §233 (Wager)"], + }, + }, + }, + { + id: "hiddenness", + n: 8, + title: "Warum ist Gott so verborgen?", + short: "Göttliche Verborgenheit", + steel: + "Wenn ein liebender Gott eine Beziehung zu uns wollte, könnte er unmissverständlich erscheinen. Das tut er aber nicht. Wer aufrichtig sucht, findet ihn nicht. Ganze Kulturen lebten und starben, ohne jemals seinen Namen zu hören. Ein Gott, der sich versteckt, während er Glauben fordert, ist entweder nicht interessiert, nicht existent oder grausam.", + quote: + "Es gibt einen begründeten Unglauben, also gibt es auch keinen vollkommen liebenden Gott.", + quoteBy: "J.L. Schellenberg, paraphrasiert", + pub: "Wenn Gott will, dass ich glaube, warum taucht er dann nicht einfach auf?", + related: ["evidence", "evil"], + counters: { + mystic: { + lede: "Er ist nicht versteckt. Sie sind nicht still.", + body: [ + "Der Fisch fragt, wo der Ozean ist. Er ist nicht in Abwesenheit verborgen. Er ist in der Nähe verborgen - zu nah, zu konstant, zu sehr im Medium Ihres Sehens aufgelöst, als dass Sie ihn als ein Ding unter anderen Dingen wahrnehmen könnten.", + "Seien Sie eine Stunde lang still, allein, ohne Eingabe, ohne Bildschirm. Wenn Sie am Ende der Stunde immer noch sagen können, dass er versteckt ist, sagen Sie es noch einmal und versuchen Sie eine weitere Stunde.", + "Verborgenheit ist keine Eigenschaft von Gott. Sie ist eine Eigenschaft Ihrer Aufmerksamkeit.", + ], + cites: [ + "The Cloud of Unknowing", + "Brother Lawrence, Practice of the Presence (1692)", + ], + }, + pascal: { + lede: "Verborgenheit ist eine Eigenschaft, kein Fehler.", + body: [ + "Wäre er unverhüllt, könnte ihn niemand ablehnen; kein Glaube wäre frei; keine Liebe wäre ein Geschenk. Er hat sich dafür entschieden, Zeichen zu geben, die für die Suchenden ausreichen, und für die, die nicht suchen, zu verbergen.", + "Es gibt genug Licht für diejenigen, die nur sehen wollen, und genug Dunkelheit für diejenigen, die eine gegenteilige Veranlagung haben.", + "Ihre Forderung, dass er sich unwiderstehlich beweisen soll, ist die Forderung, gezwungen zu werden. Er wird sich nicht zwingen lassen. Das ist es, was Liebe in seinem Fall bedeutet.", + ], + cites: ["Pensées, §149"], + }, + augustine: { + lede: "Lange habe ich Sie geliebt. Sie waren innen, ich war aussen.", + body: [ + "Ich suchte Gott in Büchern, in Städten und im Streit. Er war die ganze Zeit über im Inneren der Suche. Der Hunger, den ich bei all diesen anderen Namen nannte, war er.", + "Schönheit, so alt und so neu, spät habe ich dich geliebt! Und siehe, du warst in mir, und ich war draussen. Und dort suchte ich dich, und auf die schönen Dinge, die du gemacht hast, stürzte ich mich, verunstaltet.", + "Verborgenheit ist ein Name, den wir für unsere eigene Ablenkung verwenden.", + ], + cites: ["Confessions X.27"], + }, + lewis: { + lede: "Wir können die Gegenwart Gottes ignorieren, aber wir können uns ihr nicht entziehen.", + body: [ + "Ein unverhüllter Gott wäre kein Gott, den Sie ablehnen könnten. Wir wollen keinen Gott, den wir nicht ablehnen können - wir wollen einen Gott, den wir wählen können. Er hat den hohen Preis dafür gezahlt, dass wir wählen dürfen.", + "Das Versteck liegt nicht in den Sternen oder in der Stille. Es liegt im menschlichen Herzen, das die aussergewöhnliche Fähigkeit besitzt, eine Sache direkt anzuschauen und sie nicht zu sehen.", + "Aslan ist kein zahmer Löwe. Er zeigt sich, wenn er es will, nicht wenn er gerufen wird.", + ], + cites: [ + "The Lion, the Witch and the Wardrobe (1950)", + "The Problem of Pain", + ], + }, + }, + }, + { + id: "hell", + n: 9, + title: "Eine ewige Hölle ist ungerecht.", + short: "Unendliche Strafe für endliche Sünde", + steel: + "Selbst der schlimmste Sünder - Hitler, Stalin, der Kindermörder - hat höchstens ein paar Jahrzehnte lang endliches Unrecht begangen. Ein begrenztes Unrecht mit unendlichen Qualen zu bestrafen, ist eine moralische Ungeheuerlichkeit. Kein menschliches Gericht würde dies tun. Ein Gott, der das tun würde, ist moralisch unter unserer Würde.", + quote: + "Die Hölle ist mir lieber als der Himmel eines Gottes, der die Toten foltert.", + quoteBy: "gemeinsame Formulierung; vgl. Bertrand Russell", + pub: "Ich bin ein anständiger Mensch und Ihr Gott würde mich trotzdem für immer ins Feuer schicken?", + related: ["evil", "morality"], + counters: { + aquinas: { + lede: "Die Schwere der Sünde wird daran gemessen, was sie verletzt, nicht daran, wie lange sie dauert.", + body: [ + "Eine Ohrfeige ist eine kleine Beleidigung für einen Gleichaltrigen, eine grosse Beleidigung für einen Elternteil, eine schwere Beleidigung für einen König und eine schwere Beleidigung für die göttliche Majestät. Die Handlung dauert denselben Augenblick; ihr Gewicht wird durch ihren Gegenstand bestimmt.", + "Die Hölle bedeutet nicht, dass Gott Geschöpfe quält, die seine Gegenwart vorziehen würden. Sie ist die ewige Bestätigung eines Willens, der sich ihm endgültig und freiwillig verweigert hat. Einen solchen Willen in die Gemeinschaft zu zwingen, hiesse, ihn abzuschaffen.", + "Das Feuer ist echt. Es ist auch nicht das Schlimmste. Der schlimmste Teil ist der Verlust.", + ], + cites: ["Summa Theologiae, Suppl., q.99", "Contra Gentiles III, c.144"], + }, + lewis: { + lede: "Die Türen der Hölle sind von innen verschlossen.", + body: [ + 'Am Ende gibt es nur zwei Arten von Menschen: diejenigen, die zu Gott sagen: "Dein Wille geschehe", und diejenigen, zu denen Gott am Ende sagt: "Dein Wille geschehe" Alle, die in der Hölle sind, wählen sie. Ohne diese Selbstwahl könnte es keine Hölle geben.', + "Ich bin bereit zu glauben, dass die Verdammten in gewisser Weise erfolgreich sind, dass sie bis zum Ende rebellieren und dass die Türen der Hölle von innen verschlossen sind.", + "Die Hölle ist nicht das Versagen Gottes, zu vergeben. Es ist der Erfolg der Seele, die sich weigert.", + ], + cites: ["The Great Divorce (1945)", "The Problem of Pain, ch. 8"], + }, + mystic: { + lede: "Die Hölle ist die Erfahrung Gottes für jemanden, der ihn abgelehnt hat.", + body: [ + "Dasselbe Feuer, das den Liebenden wärmt, verbrennt denjenigen, der das Licht hasst. Das Feuer ist nicht anders. Die Herzen sind es.", + "Gott wird beim Gericht nicht zu zwei Dingen. Er bleibt die eine Liebe, die er immer war. Der Himmel ist die Begegnung der offenen Seele mit dieser Liebe. Die Hölle ist die Begegnung der verschlossenen Seele mit der gleichen Liebe.", + "Den Verdammten fehlt es nicht an Gottes Liebe. Ihnen fehlt die Fähigkeit, sie zu empfangen.", + ], + cites: [ + "Isaac of Nineveh, Ascetical Homilies", + "Maximus the Confessor, Ambigua", + ], + }, + augustine: { + lede: "Ich fürchtete die Hölle, weil ich meine Sünde liebte.", + body: [ + "Als ich noch nicht bekehrt war, erschien mir die Lehre von der Hölle als eine Obszönität. Nach meiner Bekehrung verstand ich: Die Obszönität war das, was ich getan hatte, nicht das, was mir angedroht worden war.", + "Wir verstehen die Hölle nicht, weil wir nicht verstehen, wie schwer es ist, Liebe abzulehnen. Das Hochzeitsmahl ist vorbereitet, der Bräutigam wartet, und die einzige Möglichkeit, draussen zu sein, ist, hinauszugehen.", + "Es ist eine Gnade, dass er uns warnt. Die Drohung ist der Klang der Tür, die er offen hält.", + ], + cites: ["Confessions VIII; Enchiridion 112"], + }, + }, + }, + { + id: "birth", + n: 10, + title: "Religiöser Glaube folgt der Geographie, nicht der Wahrheit.", + short: "Der Zufall der Geburt", + steel: + 'Wären Sie in Riad geboren, würden Sie den Islam mit der gleichen Überzeugung verteidigen, mit der Sie jetzt das Christentum verteidigen. Lhasa, den Buddhismus. Das antike Athen, die Olympier. Der überwältigende Prädiktor für den "rettenden Glauben" eines Menschen ist der Breiten- und Längengrad seiner Wiege. Eine so wichtige Wahrheit sollte nicht von einer Postleitzahl abhängen.', + quote: + "Wenn wir ein schlagendes Argument haben, das die anderen nicht haben können, dann ist es seltsam, dass fast niemand es findet, ausser durch einen Geburtsfehler.", + quoteBy: "John Hick, paraphrasiert", + pub: 'Wäre ich in Pakistan geboren, wäre ich ein Muslim. Inwiefern ist mein Glaube also "wahr"?', + related: ["evidence", "hiddenness", "morality"], + counters: { + lewis: { + lede: "Der Einwand geht in beide Richtungen.", + body: [ + "Wenn die Geographie über die Religion entscheidet, entscheidet sie auch über den Atheismus. Der moderne Engländer, der Gott ablehnt, ist in einer Kultur aufgewachsen, die ihn das gelehrt hat. Das sowjetische Kind, das im militanten Atheismus aufwuchs, war in seinem Unglauben nicht freier als das tibetische Kind in seinem Buddhismus. Das Argument, wenn es ehrlich vorgetragen wird, löst jede Überzeugung auf, die jemand jemals hatte - einschliesslich der Überzeugung, dass die Geographie über Überzeugungen entscheidet.", + "Was das Argument wirklich zeigt, ist, dass die Menschen ihre Ausgangspunkte von ihren Kulturen erhalten. Das gilt auch für Mathematik, Ethik und Sprache. Daraus folgt nicht, dass es keine Mathematik, keine Ethik, keine Wahrheit in der Sprache gibt. Es folgt nur, dass wir irgendwo anfangen und von dort aus argumentieren müssen.", + "Ich war ein Atheist, der durch Argumente und gegen meinen Willen Christ wurde. Die These vom Unfall bei der Geburt kann weder für mich noch für den Muslim, der Christ wird, oder den Christen, der Buddhist wird, gelten. Menschen ändern sich.", + ], + cites: ["Mere Christianity (1952), Bk. II", "Surprised by Joy (1955)"], + }, + aquinas: { + lede: "Gott ist nicht ungerecht gegenüber denen, die nie gehört haben.", + body: [ + "Der Einwand geht davon aus, dass der ausdrückliche christliche Glaube der einzige Weg zu Gott ist und dass diejenigen, die ausserhalb der Hörweite des Evangeliums geboren werden, zufällig verdammt sind. Die Kirche hat dies nie gelehrt. Diejenigen, die ohne eigenes Verschulden Christus nicht kennen, aber Gott mit aufrichtigem Herzen suchen und versuchen, seinen Willen so zu tun, wie ihr Gewissen ihn offenbart, können das Heil erlangen.", + "Was universell ist, ist nicht der Name Christi, sondern das natürliche Gesetz, das auf dem Herzen geschrieben steht, und das natürliche Wissen über Gott, das der Vernunft aus der Schöpfung zur Verfügung steht. Der Athener und der Brahmane hatten Zugang zu diesen Erkenntnissen. Wenn sie mit Recht auf das Eine schlossen, schlossen sie auf denselben Gott, den die Christen verehren - auch wenn sie ihn nur unvollkommen kannten.", + "Der Zufall der Geburt bestimmt, was einem beigebracht wird. Er bestimmt nicht, was man durch das Licht der Vernunft, das jeder Mensch teilt, zu wissen vermag.", + ], + cites: [ + "Summa Theologiae I.2.3 (the natural knowledge of God)", + "ST I-II.94 (natural law)", + "Lumen Gentium 16", + ], + }, + justin: { + lede: "Die Samen des Wortes waren überall.", + body: [ + "Ich war Platonist, bevor ich Christ wurde, und ich bereue nicht, Platon gelesen zu haben. Was auch immer von irgendeinem Denker - ob Grieche oder Barbar, ob vor oder nach Christus - richtig gesagt wurde, gehört zu uns Christen. Denn das Wort, das in Jesus Fleisch geworden ist, ist dasselbe Wort, das von Anfang an die Samen der Wahrheit über die Menschheit verstreut hat.", + "Als Sokrates von Gerechtigkeit sprach, als die Stoiker vom Logos sprachen, als die Hindu-Weisen nach Brahman tasteten - sie lagen nicht alle einfach falsch. Sie waren unvollständig. Sie enthielten Fragmente der Wahrheit, die in Christus vollendet wurde.", + 'Die Frage lautet also nicht: "Warum wurde ich dort geboren, wo ich geboren wurde?", sondern: "Welche Fragmente enthielt meine Tradition, und wohin weisen sie?" Jede ehrliche Religion weist bei genauer Betrachtung über sich selbst hinaus.', + ], + cites: ["First Apology 46", "Second Apology 10, 13"], + }, + newman: { + lede: "Wahrscheinliche Argumente konvergieren zur Gewissheit.", + body: [ + "Der Glaube wird nicht durch einen einzigen entscheidenden Beweis erreicht, wie eine geometrische Demonstration. Er wird durch die Konvergenz vieler unabhängiger Wahrscheinlichkeiten erreicht - das Zeugnis des Gewissens, die historischen Beweise für Christus, das Zeugnis der Heiligen, die Erfahrung der Gnade, die Kohärenz der Lehre mit dem, was man bereits von der Welt weiss. Was ich den illativen Sinn nenne, ist die Fähigkeit des Verstandes, diese Dinge gegeneinander abzuwägen.", + "Der Einwand der zufälligen Geburt behandelt den Glauben wie das Werfen einer Münze - Kopf Christentum, Zahl Islam, entschieden durch den Spielraum. Aber ein ernsthafter erwachsener Konvertit wirft keine Münze. Er wägt die Beweise ab, von denen ihm die Kultur, in der er aufgewachsen ist, viele nicht gegeben hat und von denen sie einige aktiv verdrängt hat.", + "Dass ein Kind glaubt, was ihm erzählt wird, ist kein Skandal. Auf diese Weise lernen Kinder überhaupt etwas. Die Frage ist, was ein Erwachsener mit dem Erbe macht - es prüfen oder es einfach wiederholen. Das Christentum lädt mehr als jeder andere Konkurrent dazu ein, es zu prüfen.", + ], + cites: ["An Essay in Aid of a Grammar of Assent (1870), ch. 8–9"], + }, + }, + }, + { + id: "bible", + n: 11, + title: "Die Heilige Schrift befiehlt und duldet das Unverzeihliche.", + short: "Die Probleme der Bibel", + steel: + "Die Sklaverei wurde eher reguliert als abgeschafft (Lev. 25, Eph. 6). Der Krieg gegen die Heremiten in Josua. Das Massaker an den Midianitern (Num. 31). Bären, die Kinder zerfleischen, weil sie einen Propheten verspottet haben. Widersprüche zwischen den Berichten der Evangelien über die Auferstehung am Morgen, die Genealogien, den Tod von Judas. Wenn es sich um ein göttlich verfasstes Buch handelt, hat der Autor eine Menge zu verantworten; wenn nicht, fällt der Fall in sich zusammen.", + quote: + "Der Gott des Alten Testaments ist wohl die unangenehmste Figur in der gesamten Belletristik.", + quoteBy: "Richard Dawkins", + pub: "Die Bibel sagt einige ziemlich schreckliche Dinge. Wie kann sie das Wort eines guten Gottes sein?", + related: ["hell", "evil", "religion-violence"], + counters: { + augustine: { + lede: "Wenn eine Passage der Nächstenliebe zu widersprechen scheint, haben Sie sie falsch gelesen.", + body: [ + "Ich sage das in aller Deutlichkeit, weil es die Regel ist, nach der ich die Heilige Schrift lese und nach der ich jeden Christen auffordere, sie zu lesen: Wer den göttlichen Schriften einen Sinn entnimmt, der die Gottes- und Nächstenliebe aufbaut, ist noch nicht getäuscht worden, auch wenn seine Interpretation nicht dem entspricht, was der menschliche Autor beabsichtigt hat. Aber wer eine Bedeutung annimmt, die der Nächstenliebe widerspricht, hat etwas falsch verstanden, egal wie wörtlich er liest.", + "Die harten Passagen - die Eroberungen, die Verwünschungen, die Gesetze, die wir heute als barbarisch empfinden - wurden einem bestimmten Volk in einem bestimmten Stadium der moralischen Bildung eingeprägt. Gott passt sich den Fähigkeiten seiner Zuhörer an, so wie ein Vater zu einem Kind anders spricht als zu einem Mann. Wenn man diese Passagen pauschal liest, als wären sie zeitlose Gebote und nicht Schritte in einer langen Pädagogik, dann liest man sie so, wie sie sowohl von Literalisten als auch von Atheisten gelesen werden: schlecht.", + "Der Weg der Heiligen Schrift führt vom Ketzer zur Bergpredigt. Der Atheist, der Zahlen gegen das Evangelium zitiert, muss erklären, warum sich die Schrift selbst in die Richtung bewegt, in die sie sich bewegt.", + ], + cites: ["De Doctrina Christiana I.36.40", "Confessions III.5–7"], + }, + aquinas: { + lede: "Die Schrift hat vier Bedeutungen, und die wörtliche ist nur eine davon.", + body: [ + "Der wörtliche Sinn ist die Grundlage, aber er ist nicht das Ganze. Darüber stehen das Allegorische (was der Text über Christus und die Kirche aussagt), das Moralische (was er uns über unser Leben lehrt) und das Anagogische (worauf er uns am Ende hinweist). Eine Passage kann buchstäblich von einem kanaanäischen Krieg und allegorisch vom Kampf der Seele gegen das Laster handeln. Wenn man nur die Oberfläche liest, ist man wie ein Mann, der sich über die Rechtschreibung beschwert, wenn er ein Gedicht sieht.", + "Wenn der wörtliche Sinn etwas zu verlangen scheint, das der Vernunft oder der göttlichen Güte widerspricht, ist dies ein Zeichen dafür, dass das Wörtliche bildhaft ist - dass der menschliche Autor mit göttlicher Billigung die Sprache seiner Zeit verwendet hat. Die Vernunft und die Heilige Schrift haben einen Autor und können sich nicht wirklich widersprechen.", + "Die Kirche hat immer gelehrt, dass die Heilige Schrift in der Tradition, mit den Vätern, unter dem Lehramt zu lesen ist. Die von den Atheisten bevorzugte Lesart - flach, isoliert, modern - ist eine Methode, die die Kirche nie gebilligt hat und nie billigen wird.", + ], + cites: ["Summa Theologiae I.1.10", "Quodlibet VII.6.14–16"], + }, + newman: { + lede: "Die Lehre entwickelt sich; Schwierigkeiten zerstören nicht.", + body: [ + "Tausend Schwierigkeiten lassen einen nicht zweifeln. Der ehrliche Leser der Heiligen Schrift findet Passagen, die er sich nicht erklären kann, Episoden, die ihn beunruhigen, Gebote, die zu einem anderen moralischen Universum zu gehören scheinen. Das tue ich auch. Das tat jeder Kirchenvater. Das Vorhandensein von Schwierigkeiten ist nicht gleichbedeutend mit dem Vorhandensein eines Widerspruchs.", + "Was die Kirche anbietet, ist kein platter Text, der von Ihnen verlangt, jede Zeile als freistehendes moralisches Gebot zu akzeptieren, sondern eine lebendige Tradition, die seit zwei Jahrtausenden mit diesen Passagen gerungen hat. Die Entwicklung der Lehre - die langsame Entfaltung dessen, was im Glaubensgut enthalten war - hat im Laufe der Jahrhunderte die Bedeutung der schwierigeren Texte herausgearbeitet und sie in ihre Schranken verwiesen.", + "Der Atheist liest die Bibel so, wie er ein Memo seines Arbeitgebers lesen würde: wörtlich, isoliert, jede Zeile gleich gewichtet. Das ist das falsche Genre. Die Heilige Schrift ist der Bericht darüber, wie Gott ein Volk formt, mit all der Struktur und Besonderheit, die das mit sich bringt.", + ], + cites: [ + "An Essay on the Development of Christian Doctrine (1845)", + "Apologia Pro Vita Sua (1864)", + ], + }, + pastor: { + lede: "Die harten Passagen sind der Ort, an dem die Arbeit getan wird.", + body: [ + "Ich habe diese Passagen vor den Menschen gelesen, die ich liebe und denen ich diene. Ich habe Josua in einer Bibelstunde vorgelesen, die Verwünschungspsalmen bei Beerdigungen und Paulus über die Sklaverei vor einer Gemeinde, in der Nachkommen von Sklaven leben. Ich werde nicht so tun, als wäre die Schwierigkeit nicht da, und ich werde nicht so tun, als würde eine kluge Fussnote sie auflösen.", + "Aber ich werde Ihnen sagen, was ich gesehen habe. Die Menschen, die sich mit diesen Texten auseinandersetzen - die sich sowohl der Ablehnung der Atheisten als auch der Verflachung durch die Fundamentalisten widersetzen - kommen mit einem tieferen Glauben heraus, nicht mit einem flacheren. Sie stellen fest, dass der Gott des Ketzers auch der Gott ist, der über Jerusalem weint. Sie stellen fest, dass die Heilige Schrift in Bezug auf Gewalt so ehrlich ist, dass sie auch in Bezug auf ihre eigene Gewalt ehrlich sein können.", + "Ein Buch, das uns nur schmeichelt, wäre für uns nutzlos. Die Bereitschaft der Schrift, aufzuzeichnen, was Menschen tatsächlich getan haben, einschliesslich der Teile, die in Gottes Namen getan wurden, verleiht ihr die Autorität, uns anzuklagen.", + ], + cites: [ + "pastoral experience", + "cf. Walter Brueggemann on the imprecatory psalms", + ], + }, + }, + }, + { + id: "scale", + n: 12, + title: "Das Universum scheint nicht für uns gemacht zu sein.", + short: "Das Argument der Grösse", + steel: + "Dreizehn Komma acht Milliarden Jahre. Hundert Milliarden Galaxien, jede mit hundert Milliarden Sternen. Und das kosmische Drama soll von einer einzigen Affenart auf einem einzigen Felsen in den letzten zweitausend Jahren abhängen? Die Proportionen sind absurd. Ein für die Menschheit geschaffenes Universum würde die Menschheit nicht unter so viel irrelevanter Materie begraben.", + quote: "Die ewige Stille dieser unendlichen Räume macht mir Angst.", + quoteBy: "Blaise Pascal (zitiert gegen den Gläubigen)", + pub: "Das Universum ist riesig und wir sind winzig. Warum sollte Gott sich um uns kümmern?", + related: ["evidence", "science", "hiddenness"], + counters: { + pascal: { + lede: "Der Mensch ist ein Schilfrohr, aber ein denkendes Schilfrohr.", + body: [ + "Die ewige Stille der unendlichen Räume macht auch mir Angst. Ich habe durch dasselbe Teleskop geschaut wie der Atheist und denselben Schwindel verspürt. Zwischen den beiden Unendlichkeiten - der Unermesslichkeit des Kosmos und dem Abgrund des Atoms - ist der Mensch ein Nichts, ein Mittelpunkt, verloren.", + "Und doch. Das Universum weiss nicht, dass es riesig ist. Die Galaxien wissen nicht, dass sie Galaxien sind. Nur dieses kleine denkende Schilfrohr, das auf seinem Felsen thront, kennt die Grösse dessen, was es zerdrücken würde. Durch den Raum umfasst das Universum mich, durch die Gedanken umfasse ich das Universum. Der Geist, der den Kosmos begreift, ist die seltsamste Tatsache im Kosmos.", + "Dass der ewige Gott sich einem solchen Geschöpf beugen sollte, ist erstaunlich. Aber wenn Sie zugeben, dass er das denkende Schilfrohr erschaffen hat, haben Sie bereits das Schwierigste zugegeben. Das Ausmass des Restes ist Dekoration.", + ], + cites: ["Pensées §72, §347 (Brunschvicg numbering)"], + }, + chesterton: { + lede: "Kleinheit ist der Stolz der Christen, nicht die Entdeckung der Atheisten.", + body: [ + "Der Atheist verkündet, als ob er es entdeckt hätte, dass der Mensch in einem riesigen Universum klein ist. Er hat nichts entdeckt. Das Christentum sagt das schon seit zweitausend Jahren, das Judentum noch länger. Was ist der Mensch, dass du seiner gedenkst? Der Psalmist ist dem Astronomen um drei Jahrtausende zuvorgekommen.", + "Das Neue ist nicht die Kleinheit, sondern die Schlussfolgerung, die daraus gezogen wird. Der Gläubige sagt: Angesichts dieser Kleinheit ist die göttliche Aufmerksamkeit die aussergewöhnlichste Tatsache, die man sich vorstellen kann. Der Atheist sagt: Angesichts dieser Kleinheit ist die göttliche Aufmerksamkeit unmöglich. Aber die Daten sind dieselben. Das Argument der Grösse ist kein Argument, sondern eine Stimmung.", + "Und es ist eine Stimmung, die seltsamerweise genau von der christlichen Intuition abhängt, die sie zu widerlegen vorgibt - der Intuition, dass der Mensch wichtig ist und dass es ein Skandal wäre, ihn zu übersehen. Ein konsequenter Materialist sollte sich nicht durch kosmische Gleichgültigkeit beleidigt fühlen. Er sollte sie erwarten und mit den Schultern zucken.", + ], + cites: [ + 'Orthodoxy (1908), ch. 2 ("The Maniac"), ch. 4 ("The Ethics of Elfland")', + ], + }, + lewis: { + lede: "Die Grösse des Universums war für jeden, der nach oben blickte, keine Neuigkeit.", + body: [ + "Ptolemäus wusste, dass die Erde im Vergleich zum Himmel ein Punkt ist. Augustinus wusste es. Die mittelalterlichen Menschen, die wir karikieren, weil sie den Kosmos für eine gemütliche Kiste hielten, stellten sich in Wirklichkeit ein Universum vor, dessen Weite sie mehr erschreckte als uns - weil sie es mit Intelligenzen bevölkerten. Die Entdeckung von mehr Raum hat nicht das moderne Unbehagen ausgelöst. Es war der Verlust der Bedeutung.", + "Das Argument der Grösse ist rhetorisch, nicht logisch. Ein Floh ist klein; das beweist nicht, dass der Floh für seinen Hund unwichtig ist. Eine Galaxie ist gross, aber das beweist nicht, dass sie für irgendetwas wichtig ist. Bedeutung wird nicht in kubischen Lichtjahren gemessen.", + "Wenn die Inkarnation wahr ist, dann ist Gott in den kleinstmöglichen Punkt seiner eigenen Schöpfung eingetreten - einen bestimmten jüdischen Zimmermann, in einem bestimmten Jahr. Der Skandal des Christentums war nie, dass es zu viel aus dem Menschen macht. Es ist, dass es zu viel aus einem Menschen macht.", + ], + cites: [ + 'Miracles (1947), ch. 7 ("A Chapter of Red Herrings")', + "The Discarded Image (1964)", + ], + }, + mystic: { + lede: "Der Tropfen enthält nicht den Ozean. Der Ozean enthält den Tropfen.", + body: [ + "Sie sprechen vom Massstab, als wäre Gott ein grosses Objekt unter anderen Objekten, das mit Galaxien um Platz konkurriert. Das ist er nicht. Er ist der Boden, auf dem Galaxien und Atome gleichermassen ruhen. Die hundert Milliarden Galaxien machen Gott nicht winzig. Sie werden Augenblick für Augenblick von demselben Akt des Seins getragen, der auch den Sperling trägt.", + "Wenn die Kontemplative von Gottes Aufmerksamkeit für die Seele spricht, meint sie damit nicht, dass Gott aufgehört hat, sich um die Supernovae zu kümmern, um sich um sie zu kümmern. Sie meint, dass die göttliche Gegenwart ungeteilt, vollständig und gleichzeitig ist - dass dieselbe Liebe, die den Kosmos im Sein hält, auch sie mit derselben Fülle im Sein hält.", + "Die Weite, die Sie bedrückend finden, empfindet die Heilige als befreiend. Es gibt keine Ecke des Universums, in die sie fliehen könnte, in der sie mehr oder weniger gehalten wäre als jetzt.", + ], + cites: [ + "Meister Eckhart, Sermons", + "Julian of Norwich, Revelations of Divine Love ch. 5 (the hazelnut)", + ], + }, + }, + }, + { + id: "natural-evil", + n: 13, + title: "Erdbeben haben keinen freien Willen.", + short: "Das natürliche Übel", + steel: + "Die Verteidigung des freien Willens, selbst wenn sie gewährt wird, deckt nur das moralisch Böse ab - das, was Menschen einander antun. Sie sagt nichts über den Tsunami, die Krebszelle, das Kind, das mit einer genetischen Krankheit geboren wird, die es mit vier Jahren tötet. Niemand hat sich diese Dinge ausgesucht. Sie sind in die Struktur der Welt eingebaut, die ein allmächtiger, allwissender, vollkommen guter Schöpfer geschaffen hat.", + quote: + "Wenn ein guter Gott die Welt geschaffen hat, warum ist sie dann schiefgegangen?", + quoteBy: "C.S. Lewis (zitiert den Einwender, bevor er antwortet)", + pub: "Erdbeben und Krebs sind nicht die Schuld von irgendjemandem. Warum also lässt Gott sie zu?", + related: ["evil", "hell", "hiddenness"], + counters: { + aquinas: { + lede: "Das Böse ist keine Sache. Es ist die Abwesenheit eines Gutes, das da sein sollte.", + body: [ + 'Blindheit ist kein Wesen, das mit der Sehkraft konkurriert; sie ist das Fehlen der Sehkraft bei etwas, das zum Sehen geschaffen ist. Krebs ist kein Lebewesen, sondern eine Unordnung von Zellen, die für die Ordnung geschaffen wurden. Wenn wir fragen: "Warum hat Gott dieses Übel geschaffen?", haben wir die Frage bereits falsch formuliert. Gott schafft das Sein, und das Sein ist gut. Das Böse ist das, was passiert, wenn das Sein hinter sich selbst zurückbleibt.', + "Warum lässt Gott ein solches Versagen der natürlichen Ordnung zu? Weil er eine Welt mit sekundären Ursachen geschaffen hat - eine Welt, in der Feuer wirklich brennt, Platten sich wirklich verschieben und Zellen sich wirklich teilen - und nicht eine Welt, in der ständig auf wundersame Weise eingegriffen wird. Ein Universum mit stabilen Ursachen ist die Voraussetzung für jegliches Handeln der Geschöpfe. Entfernen Sie die Stabilität, und Sie entfernen die Kreatur.", + "Das macht das Leiden nicht kleiner. Es verortet es. Das natürliche Übel ist der Preis für eine Welt, in der endliche Wesen wirklich handeln. Die Alternative ist nicht eine bessere Welt, sondern keine Welt.", + ], + cites: [ + "Summa Theologiae I.48–49 (on evil as privation)", + "Summa Contra Gentiles III.71", + ], + }, + lewis: { + lede: "Eine Welt, die sich meinem Willen beugt, hätte keinen anderen Willen mehr.", + body: [ + "Wenn die Materie weich genug wäre, um uns jeden Schmerz zu ersparen, wäre sie auch weich genug, um uns jede Handlung zu ersparen. Die gleiche Härte des Holzes, die mich einen Nagel einschlagen lässt, lässt den Nagel durch meine Hand gehen. Die gleiche Schwerkraft, die mich an meinem Stuhl festhält, zieht den Kletterer von der Klippe. Die Forderung nach einem Universum mit allen Vorzügen der stabilen Natur und keiner ihrer Gefahren ist die Forderung nach einem Universum, das sich selbst widerspricht.", + "Das beantwortet nicht, warum das Kind diesen Krebs bekommt. Ich weiss es nicht. Keiner weiss es. Aber es beantwortet eine andere Frage - warum ein guter Gott eine Welt schaffen könnte, in der solche Dinge möglich sind. Die Möglichkeit ist der Preis für eine Welt, die wirklich anders ist als Gott, mit ihrer eigenen kausalen Integrität.", + "Schmerz, wenn er kommt, ist Gottes Megaphon für eine taube Welt. Ich sage das nicht leichtfertig. Ich habe meine Frau durch Krebs verloren und ich habe aufgeschrieben, was es mich gekostet hat. Aber ich werde es nicht ungesagt lassen. Das Universum, das uns verletzt, ist das gleiche Universum, das uns einander lieben lässt. Sie können nicht das eine behalten und das andere verlieren.", + ], + cites: [ + "The Problem of Pain (1940), ch. 2, 6", + "A Grief Observed (1961)", + ], + }, + augustine: { + lede: "Die Schöpfung seufzt, weil die Schöpfung gefallen ist.", + body: [ + "Die Welt, wie sie ist, ist nicht die Welt, wie sie geschaffen wurde. Das Zeugnis der Schrift ist konsistent: Die Unordnung, die wir in der Natur beobachten - der Raubbau, die Krankheiten, die seismische Gewalt - ist nicht die ursprüngliche Schöpfung, sondern die gefallene. Die Schöpfung selbst wird von ihrer Knechtschaft der Verderbnis befreit werden, sagt Paulus; sie ist jetzt in Knechtschaft, war es aber nicht immer.", + "Wie ein moralischer Sündenfall zu einer physischen Störung geführt hat, ist rätselhaft, und ich werde nicht so tun, als würde ich es erklären. Aber die Intuition, dass mit der Welt etwas nicht stimmt, ist kein Argument gegen Gott. Es ist die grundlegendste christliche Behauptung. Die Klage des Atheisten - dass die Welt kaputt ist - ist genau das, was wir ihm seit zweitausend Jahren sagen.", + "Die Frage ist nicht, ob die Welt kaputt ist. Die Frage ist, ob sie geheilt werden kann, und von wem.", + ], + cites: ["City of God XXII.22–24", "Romans 8:19–23"], + }, + francis: { + lede: "Bruder Feuer brennt, und ist immer noch unser Bruder.", + body: [ + "Ich habe die Sonne meinen Bruder genannt und den Mond meine Schwester. Ich habe den Tod selbst meine Schwester genannt. Die Welt, die uns verletzt, ist dieselbe Welt, die uns ernährt, und die Kreatur verflucht das Feld nicht, weil es Steine enthält.", + "Als der Wolf nach Gubbio kam und das Vieh der Menschen frass, habe ich den Wolf nicht verflucht. Ich ging hin und sprach mit ihm und schloss Frieden, denn der Wolf war hungrig und die Menschen hatten Angst, und beides gehörte Gott. Die Welt ist nicht für unseren Komfort eingerichtet. Sie ist für ein tieferes Gut als Komfort eingerichtet, und wir sind ein Teil davon, nicht der Mittelpunkt.", + "Der Krebs ist real, und das Erdbeben ist real, und ich werde die Leidenden nicht beleidigen, indem ich sie klein nenne. Aber derselbe Herr, der den Regen auf die Gerechten und die Ungerechten fallen lässt, schenkt uns einander, um Wunden zu verbinden, Tote zu begraben und in der Dunkelheit zu singen.", + ], + cites: [ + "Canticle of the Creatures (1224)", + "Fioretti, ch. 21 (the wolf of Gubbio)", + ], + }, + catechism: { + lede: "Die Schöpfung befindet sich auf einer Reise zu einer noch nicht erreichten Vollkommenheit.", + body: [ + "Die Welt, die Gott geschaffen hat, war gut, aber sie war nicht fertig. Er wollte, dass sich die Schöpfung in statu viae befindet - in einem Zustand der Reise - hin zu einer endgültigen Vollkommenheit, die noch bevorsteht. Das bedeutet, dass das physische Böse neben dem physischen Guten in der gegenwärtigen Ordnung existiert: mit dem Erscheinen und Verschwinden bestimmter Wesen, mit den aufbauenden und zerstörerischen Kräften der Natur. Erdbeben, Raubtiere, das langsame Aussterben von Arten - all das gehört zu einer Schöpfung, die sich entfaltet, und nicht zu einer Schöpfung, die von oben zerstört wurde.", + "Das Drama vertieft sich mit dem Einzug des moralischen Bösen. Der Mensch, der für die Gemeinschaft mit Gott geschaffen und mit der Schöpfung betraut wurde, wendet sich ab. Das ist der Sündenfall: nicht die Einführung der Physik in ein zuvor friedliches Eden, sondern der Bruch mit dem Geschöpf, das die Schöpfung rechtmässig erhalten und sie zu ihrem Ende führen sollte. Der Tod trat auf eine neue Art in die menschliche Erfahrung ein. Die Schöpfung, die ihres Verwalters beraubt wurde, seufzt. Wir wissen, dass die gesamte Schöpfung bis jetzt gemeinsam in Geburtswehen gestöhnt hat.", + "Warum Gott eine Schöpfung zulässt, die leidet, anstatt von Anfang an eine vollendete Vollkommenheit zu erzwingen, ist ein Rätsel, auf das der Glaube nur eine teilweise Antwort gibt. Der allmächtige Gott würde, weil er souverän gut ist, niemals zulassen, dass es in seinen Werken überhaupt etwas Böses gibt, wenn er nicht so allmächtig und gut wäre, dass er aus dem Bösen selbst das Gute entstehen lässt. Die vollständige Antwort wartet auf das Ende der Reise, wenn Gott alles in allem sein wird und die Schöpfung selbst von ihrer Knechtschaft der Korruption befreit wird.", + ], + cites: [ + "Catechism of the Catholic Church §§310, 385, 400, 412", + "Romans 8:19–23", + "cf. Augustine, Enchiridion 11 (quoted at CCC §311)", + ], + }, + }, + }, + { + id: "many-gods", + n: 14, + title: "Die Pascalsche Wette wählt keinen Gewinner aus.", + short: "Die Viele-Götter-Entwarnung", + steel: + "Selbst wenn man die Logik der Wette anerkennt, kann sie nicht zwischen sich gegenseitig ausschliessenden Glaubensrichtungen wählen. Setzen Sie auf Christus, verlieren Sie gegen Allah. Setzen Sie auf Allah, verlieren Sie gegen Vishnu. Setzen Sie auf den christlichen Gott, und ein aufrichtiger Calvinist wird Ihnen sagen, dass Sie trotzdem in die Hölle kommen, weil Sie die falsche Konfession gewählt haben. Die Wette funktioniert nur, wenn Sie das Feld bereits mit anderen Mitteln auf einen Kandidaten eingegrenzt haben - und das ist die ganze Frage.", + quote: + "Die Wette funktioniert nur, wenn die Wahl bereits binär ist. Das ist sie nicht.", + quoteBy: 'gängige Formulierung; vgl. William James, "The Will to Believe"', + pub: "Die Pascalsche Wette sagt mir nicht, auf welchen Gott ich setzen soll.", + related: ["evidence", "hiddenness"], + counters: { + pascal: { + lede: "Die Wette war nie ein Ansatzpunkt. Sie war ein abschliessendes Argument.", + body: [ + "Lesen Sie mich ganz, nicht in Bruchstücken. Die Wette erscheint spät in den Pensées, nachdem ich Hunderte von Fragmenten damit verbracht habe, für die historische Besonderheit des Christentums zu argumentieren - die Prophezeiungen, das Zeugnis der Apostel, die Gestalt Christi, das seltsame Fortbestehen des jüdischen Volkes, das Zeugnis der Heiligen. Die Wette ist an einen Mann gerichtet, der bereits an die Schwelle gebracht wurde und sich nicht überwinden kann, sie zu überschreiten.", + "Einem solchen Mann sage ich: Die Kosten einer falschen Wette auf Christus sind begrenzt; die Kosten einer richtigen Wette sind unendlich. Da Sie das Feld bereits eingegrenzt haben, spricht die Rechnung für den Glauben. Ich habe nie behauptet, dass sie das Feld für Sie eingrenzen würde. Diese Arbeit wird durch die Beweise erledigt, nicht durch die Wette.", + 'Der Atheist, der mir "aber was ist mit Allah?" entgegenschleudert, hat mich nicht gelesen. Oder er hat nur das Fragment gelesen, das seiner Widerlegung schmeichelt.', + ], + cites: ["Pensées §233 (the wager) — read in the context of §§194–232"], + }, + lewis: { + lede: "Das Christentum ist nicht eine Mythologie unter vielen. Es ist diejenige, die geschehen ist.", + body: [ + "Zum Christentum kam ich durch die Hintertür der Mythologie. Ich liebte die sterbenden und auferstehenden Götter der Heiden - Balder, Adonis, Osiris - lange bevor ich Christus liebte. Was mich bekehrte, war nicht die Entdeckung, dass das Christentum einzigartig war, sondern die Entdeckung, dass es die wahre Version dessen war, wonach die Mythen tasteten. Die Heiden hatten es geträumt; die Juden waren darauf vorbereitet; in Christus geschah es tatsächlich, an einem bestimmten Ort, unter einem bestimmten römischen Statthalter.", + "Die Religionen der Welt sind keine austauschbaren Wetten auf ein Rouletterad. Sie stellen unvereinbare historische Behauptungen auf, und diese Behauptungen können überprüft werden. Das Christentum setzt in einzigartiger Weise auf ein öffentliches, datierbares, falsifizierbares Ereignis - die Auferstehung. Wenn das Grab nicht leer war, sagt Paulus, dann ist unser Glaube vergebens. Keine andere Religion macht sich so angreifbar für die Geschichte.", + 'Die Wette, richtig verstanden, lautet nicht "wähle einen Gott, irgendeinen Gott" Sie lautet: "Legen Sie sich nach Prüfung der Beweise fest"', + ], + cites: [ + "Mere Christianity (1952), Bk. II, ch. 3", + "Miracles (1947)", + '"Myth Became Fact" in God in the Dock', + ], + }, + newman: { + lede: "Viele Kandidaten bedeuten nicht gleich viele Kandidaten.", + body: [ + "Dass eine Frage mehrere Antwortvorschläge hat, bedeutet nicht, dass die Antworten gleich gewichtet sind. Es gibt viele Theorien darüber, was Krebs verursacht. Das bedeutet nicht, dass jede Theorie eine von vielen ist und daher keine gewählt werden kann. Der Ermittler wägt die Beweise ab, und die Kandidaten werden in eine wahrscheinliche Hierarchie eingeordnet.", + "Das Gleiche gilt für die Religionen. Wenn man sie ernsthaft untersucht - ihre historischen Grundlagen, ihre innere Kohärenz, das Leben, das sie hervorgebracht haben, ihre Fähigkeit, philosophisches Gewicht zu tragen -, präsentieren sie sich nicht als ein flaches Menü. Die Konvergenz der Wahrscheinlichkeiten, das, was ich den illativen Sinn genannt habe, ist genau die Fähigkeit, mit der sich ein ernsthafter Mensch in einem solchen Feld bewegt.", + 'Der Einwand der Atheisten, dass es "viele Götter" gibt, behandelt jede Religion als offensichtlich gleichwertig. Kein ernsthafter vergleichender Theologe glaubt das, auch kein Atheist. Der Einwand überlebt nur, weil er sich weigert, den eigentlichen Vergleich anzustellen.', + ], + cites: [ + "Grammar of Assent (1870), ch. 8", + "Apologia Pro Vita Sua (1864)", + ], + }, + logician: { + lede: "Der Einwand missversteht die Entscheidungstheorie.", + body: [ + "Der Einwand der vielen Götter wird manchmal so dargestellt, als sei er eine schlagende Widerlegung der Wette. Das ist er aber nicht. Er ist eine Verfeinerung. Die Entscheidungstheorie unter Ungewissheit behandelt konkurrierende Hypothesen unabhängig vom Bereich auf dieselbe Weise: Sie gewichten nach der vorherigen Wahrscheinlichkeit und dem erwarteten Ergebnis.", + "Wenn die Prioritäten für die in Frage kommenden Religionen wirklich einheitlich wären - jede Religion wäre nach den vorliegenden Erkenntnissen gleich wahrscheinlich - würde sich die Wette in der Tat in Lärm auflösen. Aber Prioritäten sind fast nie einheitlich. Einige Religionen haben mehr Beweise, mehr innere Kohärenz und mehr historische Spezifität als andere. Auf dieser Grundlage rekonstruiert sich die Wette für den führenden Kandidaten.", + 'Der Atheist, der "aber was ist mit Zeus?" sagt, stellt eine Behauptung über Prioritäten auf: dass Zeus und Jahwe nachweislich symmetrisch sind. Man sollte ihn bitten, diese Behauptung zu verteidigen. Das kann er fast nie.', + ], + cites: [ + 'cf. Alan Hájek, "Waging War on Pascal\'s Wager" (2003) — and the responses', + ], + }, + }, + }, + { + id: "neuroscience", + n: 15, + title: "Religiöse Erfahrung ist nur Gehirnchemie.", + short: "Die Neurowissenschaft des Göttlichen", + steel: + "Stimulieren Sie den Schläfenlappen, um eine mystische Erfahrung zu machen. Nehmen Sie Psilocybin und treffen Sie Gott. Epileptische Anfälle führen zu Bekehrungen, Gehirntumore zu Visionen von Engeln. Wenn wir zuverlässig Begegnungen mit dem Heiligen auslösen können, indem wir Neuronen stupsen, sagen uns die Begegnungen etwas über die Neuronen, nicht über das Heilige.", + quote: + "Mystische Erfahrungen verraten uns etwas über das Gehirn, so wie ein Traum uns etwas über den Träumer verrät.", + quoteBy: + "paraphrase der zeitgenössischen kognitiven Wissenschaft der Religion", + pub: 'Wenn ein Gehirnscan zeigen kann, warum jemand Gott "fühlt", ist Gott dann nicht nur in seinem Kopf?', + related: ["evidence", "science", "hiddenness"], + counters: { + mystic: { + lede: "Der Mechanismus ist keine Widerlegung.", + body: [ + 'Wenn ich einen Baum sehe, trifft Licht auf meine Netzhaut, Neuronen feuern, der visuelle Kortex setzt ein Bild zusammen. Ich kann jeden Schritt dieses Prozesses beschreiben und der Baum verschwindet nicht. Der Mechanismus, mit dem ich wahrnehme, ist kein Argument gegen die wahrgenommene Sache. Zu sagen, "Ihre Erfahrung des Baumes sind nur Neuronen", bedeutet, den Kanal mit der Übertragung zu verwechseln.', + "Religiöse Erfahrung hat ein neurologisches Substrat. Natürlich hat sie das. Das gilt auch für mathematische Einsichten, romantische Liebe und das Erkennen des Gesichts Ihrer Mutter. Das Aufzeigen des Substrats hat noch nie das Objekt in einem anderen Bereich widerlegt. Es ist merkwürdig, dass dieses spezielle Argument nur gegen das Heilige verwendet wird.", + "Die Mystikerin behauptet nicht, dass ihre Gotteserfahrung am Gehirn vorbeigeht. Sie behauptet, dass das Gehirn, wenn es richtig eingestellt ist, wahrnimmt, was tatsächlich da ist. Der Atheist bleibt uns einen Grund dafür schuldig, dass dieser Fall sich von jedem anderen Fall von Wahrnehmung unterscheidet.", + ], + cites: [ + "Teresa of Ávila, Interior Castle", + "Bernard McGinn, The Foundations of Mysticism", + ], + }, + lewis: { + lede: "Der genetische Irrtum ist immer noch ein Irrtum.", + body: [ + 'Sagen Sie mir, woher ein Glaube kommt, und Sie haben mir nichts darüber gesagt, ob er wahr ist. Newtons Apfel, Kekulés Traum von der Schlange, Archimedes in der Badewanne - Entdeckungen kommen dadurch zustande, dass Neuronen auf bestimmte Weise feuern, und die Entdeckungen sind trotzdem wahr. Religiöse Erfahrungen als "nur Gehirnchemie" zu bezeichnen, bedeutet, denselben Irrtum in umgekehrter Form zu begehen.', + 'Im Kern des Einwandes liegt auch eine Selbstzerstörung. Wenn religiöse Erfahrungen entlarvt werden, weil sie eine neuronale Ursache haben, dann hat jede Erfahrung - auch die Erfahrung, durch neurowissenschaftliche Argumente überzeugt zu werden - eine neuronale Ursache. Auch das Vertrauen des Atheisten in seine eigene Argumentation ist "nur das Feuern von Neuronen" Wenn der Einwand gegen den Gläubigen wirkt, wirkt er gegen den Einwender. Wenn er nicht gegen den Einwender wirkt, wirkt er überhaupt nicht.', + "Die ehrliche Frage ist nicht, ob religiöse Erfahrungen einen Mechanismus haben, sondern ob der Mechanismus zuverlässig ist. Dazu muss man sich das Leben ansehen, das die Erfahrungen hervorbringen, nicht nur die Scans.", + ], + cites: [ + 'Miracles (1947), ch. 3 ("The Self-Contradiction of the Naturalist")', + '"Bulverism" in God in the Dock', + ], + }, + aquinas: { + lede: "Die Seele ist die Form des Körpers. Natürlich ist das Gehirn beteiligt.", + body: [ + "Der Einwand setzt einen kartesischen Dualismus voraus, den die Kirche nie gelehrt hat. Er stellt sich die Seele als einen Geist vor, der an einen Körper gebunden ist, und verkündet triumphierend, dass die Berührung des Körpers den Geist beeinflusst. Aber der Mensch ist kein Geist in einer Maschine. Die Seele ist die Form des Körpers - das Prinzip, durch das diese Materie zu dieser lebendigen, denkenden Person wird. Was sich auf den Körper auswirkt, wirkt sich natürlich auch auf den Menschen aus, auch auf seine Wahrnehmung von Gott.", + "Dass ein Schlaganfall die Persönlichkeit verändern kann, dass ein Tumor Visionen hervorrufen kann, dass Psilocybin zu mystischen Erfahrungen führen kann - all das ist für einen Thomisten nichts Neues. Der Intellekt hängt in diesem Leben von den Sinnen und dem Gehirn ab. Nihil in intellectu nisi prius in sensu. Wir lernen Gott immer durch den Körper kennen, niemals unabhängig von ihm.", + "Was der Neurowissenschaftler zeigen kann, ist, dass die religiöse Erfahrung das Gehirn nutzt. Er kann nicht allein mit Hilfe der Neurowissenschaft zeigen, dass das Gehirn das Objekt erzeugt, anstatt es wahrzunehmen. Das ist eine philosophische Behauptung, keine neurologische.", + ], + cites: [ + "Summa Theologiae I.75–76 (on soul and body)", + "ST I.84 (on knowledge through the senses)", + ], + }, + scientist: { + lede: "Korrelation ist nicht gleichbedeutend mit Kausalität.", + body: [ + "Die kognitive Wissenschaft der Religion ist ein echtes und interessantes Gebiet, das ich nicht abtun werde. Wir haben gute Daten, dass bestimmte Gehirnzustände mit berichteten religiösen Erfahrungen korrelieren. Wir haben plausible evolutionäre Erklärungen dafür, warum Menschen dazu neigen, etwas zu erkennen, Ehrfurcht zu empfinden und nach Transzendenz zu suchen. All das ist echte Wissenschaft.", + 'Aber die Schlussfolgerung von "religiöse Erfahrung hat neuronale Korrelate" zu "religiöse Erfahrung hat kein reales Objekt" ist keine wissenschaftliche Schlussfolgerung. Es ist eine philosophische Schlussfolgerung, die sich eingeschmuggelt hat. Dieselben Daten sind gleichermassen vereinbar mit der Hypothese, dass sich das Gehirn entwickelt hat, um eine reale transzendente Dimension der Realität zu erkennen, und mit der Hypothese, dass es sich entwickelt hat, um eine solche zu erschaffen. Die Wahl zwischen diesen beiden Hypothesen erfordert Argumente ausserhalb der Neurowissenschaften.', + "Eine sorgfältige Wissenschaftlerin unterscheidet zwischen dem, was die Daten zeigen, und dem, was sie gerne zeigen würde. Zu der Frage, ob das Objekt der religiösen Erfahrung existiert, schweigen die Gehirnscans.", + ], + cites: [ + "Andrew Newberg, Principles of Neurotheology", + "Justin Barrett, Why Would Anyone Believe in God?", + ], + }, + }, + }, + { + id: "prayer", + n: 16, + title: + "Unter kontrollierten Bedingungen getestet, versagt das Fürbittgebet.", + short: "Beten funktioniert nicht", + steel: + "Die STEP-Studie von 2006 (Templeton-finanziert, zehn Jahre, 1.800 Herzpatienten) fand keinen Nutzen des Fürbittgebets - und einen leicht negativen Effekt für diejenigen, die wussten, dass für sie gebetet wurde. Amputierten wachsen keine Gliedmassen nach. Katholische und protestantische Kindersterblichkeitsraten folgen der lokalen Medizin, nicht der lokalen Andacht. Wenn das Gebet eine echte Kommunikation mit einem allmächtigen Freund ist, ist das Schweigen in der Leitung ohrenbetäubend.", + quote: + "Die richtige, wenn auch etwas unbeholfene Formulierung lautet: Diejenigen, die wussten, dass für sie gebetet wurde, hatten eine etwas höhere Rate an Komplikationen.", + quoteBy: "STEP-Projekt, 2006", + pub: "Wenn Gebete funktionieren würden, würden Amputierten Gliedmassen nachwachsen. Das tun sie aber nicht.", + related: ["evidence", "miracles", "hiddenness"], + counters: { + lewis: { + lede: "Das Gebet ist kein Verkaufsautomat.", + body: [ + 'Der Einwand stellt sich das Gebet als ein System von Inputs und Outputs vor: genug Gebete rein, das gewünschte Ergebnis raus. Bei diesem Modell "versagt" das Gebet natürlich Es würde auch als Modell für eine Freundschaft, eine Ehe oder eine andere Beziehung zwischen Menschen versagen. Sie rufen Ihre Frau nicht herbei, indem Sie ihren Namen mit ausreichender Aufrichtigkeit wiederholen. Sie ist kein Verkaufsautomat und Gott auch nicht.', + "In der christlichen Tradition ist das Gebet nicht in erster Linie ein Mechanismus, um etwas zu bekommen. Es ist die Ausrichtung des Geschöpfes auf den Schöpfer - eine Teilnahme am göttlichen Willen, keine Manipulation desselben. Dein Wille geschehe, ist das Vorbild, nicht ein nachträglicher Einfall. Als Jesus in Gethsemane betet, bittet er; er wird abgewiesen; er unterwirft sich. Das ist das Muster.", + "Allerdings werden Gebete erhört. Ich habe erlebt, dass sie erhört wurden. Aber die Antwort kommt zu Gottes Bedingungen und nach seinem Zeitplan und ist oft nicht das, worum wir gebeten haben. Wenn wir um Erleichterung bitten, wird uns manchmal die Kraft gegeben, etwas zu ertragen. Wenn wir darum bitten, dass die Toten auferweckt werden, erhalten wir manchmal den Mut, sie zu begraben.", + ], + cites: [ + '"The Efficacy of Prayer" in The World\'s Last Night (1960)', + "Letters to Malcolm: Chiefly on Prayer (1964)", + ], + }, + aquinas: { + lede: "Wir beten nicht, um Gott zu verändern, sondern um von Gott verändert zu werden.", + body: [ + "Ein weit verbreiteter Irrtum ist, dass das Gebet die Meinung Gottes ändern soll und dass es gescheitert ist, wenn es das nicht tut. Gottes Wille ist ewig und unveränderlich. Wir beten nicht, um ihm unsere Bedürfnisse mitzuteilen (er kennt sie bereits) oder um ihn zum Handeln zu bewegen (er hat von jeher gewollt, was er will), sondern weil er von jeher gewollt hat, dass bestimmte Güter durch unsere Bitte zu uns kommen.", + "Das Gebet ist also eine wirkliche Ursache in der Kette der Vorsehung - aber es hat vor allem Auswirkungen auf den Betenden. Richtig zu beten bedeutet, den eigenen Wunsch mit dem von Gott in Einklang zu bringen, zu lernen, was man will, indem man darum bittet, und zu einem Wesen zu werden, für das die Bitte Sinn macht. Die erhörte Bitte verändert den Bittenden mehr als die Welt.", + "In der Templeton-Studie wurde getestet, ob Gott wie ein Zauberspruch funktionieren kann, wenn er von Fremden über Fremde angerufen wird. Das Ergebnis - dass er das nicht kann - ist genau das, was die Tradition vorhersagt.", + ], + cites: [ + "Summa Theologiae II-II.83 (on prayer)", + 'ST II-II.83.2 ("Whether it is fitting to pray")', + ], + }, + augustine: { + lede: "Meine Mutter hat jahrelang gebetet. Sie hat etwas Besseres bekommen, als sie sich gewünscht hat.", + body: [ + "Meine Mutter Monica hat jahrelang dafür gebetet, dass ich nicht nach Rom gehe, weil sie befürchtete, ich würde dort verloren gehen. Ich ging trotzdem nach Rom und wurde dort gefunden - bekehrt, getauft, zu dem Glauben zurückgekehrt, den sie sich für mich gewünscht hatte. Sie hatte um eine Sache gebeten und eine andere bekommen. Das, was ihr gegeben wurde, war das, was sie wirklich wollte, aber sie hatte nicht gewusst, wie sie es nennen sollte.", + "Das ist die Form des Gebets in einer gefallenen Welt. Wir beten mit den Sehnsüchten, die wir haben und die gemischt und unvollständig sind. Gott erhört, wenn er antwortet, den tieferen Wunsch, von dem wir nicht wussten, dass wir ihn haben. Die Gebete, die unerhört erscheinen, werden manchmal in einer Tiefe erhört, die wir uns nicht hätten vorstellen können.", + "Ich werde nicht so tun, als ob dies jeden Kummer tröstet. Die Mutter, deren Kind stirbt, hat in einer Tiefe gebetet, die ich nicht erreicht habe. Aber ich werde sagen, was ich gesehen habe: Diejenigen, die lange und aufrichtig beten, sind am Ende selten überrascht, dass Gott ihnen nicht gegeben hat, worum sie gebeten haben. Sie sind überrascht von dem, was er stattdessen gegeben hat.", + ], + cites: ["Confessions V.8 (Monica's prayer)", "IX.10–13 (her death)"], + }, + pastor: { + lede: "Ich habe an den Krankenbetten gesessen. Ich werde nicht lügen, was ich gesehen habe.", + body: [ + "Ich habe um Heilung gebetet und sie erlebt. Ich habe um Heilung gebetet und gesehen, wie die Person starb. Ich werde Ihnen keine saubere Theologie liefern, die dies platt macht. Die ehrliche Antwort ist, dass das Fürbittgebet real ist und seine Ergebnisse unvorhersehbar sind. Jeder Pastor, der Ihnen etwas anderes erzählt, verkauft Ihnen etwas.", + "Was ich gesehen habe, und zwar zuverlässiger als wundersame Heilungen, ist Folgendes: Die Menschen, für die gebetet wird und die beten, sterben besser. Sie haben weniger Angst. Ihre Familien sind weniger erschüttert. Die Gemeinschaft, die sie umgibt, ist präsenter. Nichts davon taucht in der Templeton-Studie auf, denn nichts davon wurde in der Studie gemessen. In der Studie wurden kardiale Komplikationen gemessen. Beim Gebet ging es nie in erster Linie um kardiale Komplikationen.", + "Die Frage der Amputierten ist die sauberste Version des Einwandes, und ich werde mich klar ausdrücken: Ich weiss nicht, warum Gliedmassen nicht wiederhergestellt werden. Ich weiss, dass andere Dinge wiederhergestellt werden - Ehen, Süchte, der Wille zu leben - und ich habe es selbst erlebt. Der Atheist hat Recht, dass die Daten über Gebete für Dinge unübersichtlich sind. Er irrt sich, wenn er meint, dass damit die Frage geklärt ist, ob Gott zuhört.", + ], + cites: [ + "pastoral experience", + "cf. Tim Keller, Prayer: Experiencing Awe and Intimacy with God (2014)", + ], + }, + }, + }, + { + id: "pleasure", + n: 17, + title: + "Warum sollte Gott dafür sorgen, dass es sich gut anfühlt, wenn es falsch ist?", + short: "Das Lustprinzip", + steel: + "Die katholischen Verbote von ausserehelichem Sex, Masturbation, Empfängnisverhütung und homosexuellen Handlungen stossen alle auf dieselbe Mauer: Die fraglichen Aktivitäten sind von demselben Gott, der sie angeblich verbietet, so konzipiert, dass sie ein intensives Vergnügen bereiten. Entweder ist Vergnügen ein zuverlässiges Signal dafür, dass etwas gut ist - in diesem Fall sind die Verbote pervers - oder Vergnügen ist kein zuverlässiges Signal, in diesem Fall hat Gott ein System geschaffen, das uns über unser eigenes Wohl täuschen soll. Keine der beiden Optionen schmeichelt dem Gläubigen.", + quote: + "Wenn Gott nicht wollte, dass wir es geniessen, hatte er eine seltsame Art, dies zu zeigen.", + quoteBy: "gemeinsame Formulierung; vgl. Bertrand Russell, Ehe und Moral", + pub: "Wenn Gott nicht will, dass ich mich selbst berühre, warum fühlt es sich dann so gut an?", + related: ["morality", "bible", "evil"], + counters: { + aquinas: { + lede: "Das Vergnügen folgt dem Guten. Es definiert es nicht.", + body: [ + "Der Einwand geht davon aus, dass Vergnügen das Kriterium des Guten ist - dass eine Handlung, die Vergnügen bereitet, gut sein muss, und dass jedes Verbot willkürlich sein muss. Das ist genau das Gegenteil. In der Ordnung der Natur ist das Vergnügen mit Gütern verbunden, um uns zu ihnen hinzulocken. Essen ist lustvoll, weil es das Leben erhält; Sex ist lustvoll, weil er Leben erzeugt und bindet. Das Vergnügen ist der Köder, das Gut ist das, wozu es uns lockt.", + "Daraus folgt, dass das Vergnügen verlässlich ist, wenn es auf seinen eigentlichen Zweck ausgerichtet ist, und unzuverlässig, wenn es von diesem getrennt ist. Der Vielfrass empfindet echtes Vergnügen, wenn er über seinen Bedarf hinaus isst. Das Vergnügen ist echt, aber es erfüllt nicht mehr die Aufgabe, für die es gedacht war. Das Gleiche gilt für das sexuelle Vermögen. Losgelöst von den Gütern, denen sie dienen soll - der Vereinigung von Ehepartnern, der Zeugung von Kindern - bleibt das Vergnügen bestehen, aber es wurde von dem getrennt, was es überhaupt erst gut gemacht hat.", + 'Zu sagen, "es fühlt sich gut an, also ist es gut", bedeutet, den Wegweiser mit dem Ziel zu verwechseln. Eine gefälschte Münze fühlt sich in der Hand immer noch wie Geld an. Die Frage ist, ob man es ausgeben kann.', + ], + cites: [ + "Summa Theologiae I-II.34 (on pleasure)", + "ST II-II.153–154 (on lust and its species)", + 'ST I-II.31.7 ("Whether bodily pleasure is greater than spiritual?")', + ], + }, + lewis: { + lede: "Gott hat das Vergnügen erfunden. Der Teufel kann keine Vergnügungen machen, er kann sie nur stehlen.", + body: [ + "Ich möchte dem Einwand mehr zugestehen, als der Einwender erwartet. Vergnügen ist gut. Sexuelles Vergnügen ist gut. Der Christ, der etwas anderes behauptet, hat das Argument bereits verloren, denn er widerspricht der Genesis, in der der Körper als sehr gut bezeichnet wird, und dem Hohelied, das nicht ohne Grund im Kanon enthalten ist. Der Feind des Christentums ist hier nicht der Hedonist, sondern der Manichäer, der meint, das Fleisch selbst sei das Problem.", + "Das Christentum lehrt nicht, dass Vergnügen schlecht ist, sondern dass Vergnügen eine Maserung hat, wie Holz, und dass die Arbeit gegen die Maserung die Sache, an der Sie arbeiten, zersplittert. Die Lust am Essen ist gut; die Lust am Essen, die von der Nahrung abgetrennt wird, bringt den Bulimiker hervor. Die Lust am Trinken ist gut; wenn man sie von ihrem eigentlichen Zweck trennt, wird sie zum Alkoholiker. Sexuelles Vergnügen ist gut, aber wenn man es von der Verbindung trennt, die es besiegeln sollte, bringt es - nun, sehen Sie sich um.", + 'Die Frage lautet nicht: "Fühlt es sich gut an?", sondern: "Wie sieht es nach zehn Jahren mit mehr davon aus?" Die Vergnügungen, die Sie vermindern, die immer grössere Dosen benötigen, die Sie einsamer zurücklassen, als Sie sie vorgefunden haben - das sind die Vergnügungen, die die Tradition markiert hat. Nicht, weil sie Vergnügen sind, sondern weil sie Vergnügen sind, die auf nichts abzielen.', + ], + cites: [ + "The Screwtape Letters (1942), Letter IX", + 'Mere Christianity, Bk. III, ch. 5 ("Sexual Morality")', + 'The Four Loves (1960), ch. 5 ("Eros")', + ], + }, + catechism: { + lede: "Das Vergnügen ist gut. Der Nutzen ist das, was das Moralgesetz anspricht.", + body: [ + "Die Kirche lehrt nicht und hat nie gelehrt, dass sexuelle Lust etwas Böses ist. Die Handlungen in der Ehe, durch die sich die intime und keusche Vereinigung der Eheleute vollzieht, sind edel und ehrenhaft; die wahrhaft menschliche Ausführung dieser Handlungen fördert die Selbsthingabe, die sie bedeuten, und bereichert die Eheleute in Freude und Dankbarkeit. Das Vergnügen im Rahmen der Integrität des ehelichen Aktes ist ein von Gott gewolltes Gut.", + "Was das Moralgesetz anspricht, ist nicht die Lust selbst, sondern der Gebrauch des sexuellen Vermögens unabhängig von seinem Sinn. Die Fähigkeit hat zwei Ziele, die in ihre Struktur eingeschrieben sind: die Vereinigung der Ehegatten und die Weitergabe des Lebens. Dies sind keine willkürlichen Regeln, die von aussen auferlegt werden; sie sind das, was der Akt ist. Wer sich die Lust nimmt und dabei den Sinn bewusst ausklammert - durch Masturbation, durch Empfängnisverhütung innerhalb des Aktes, durch Handlungen, die von ihrer Natur her weder der Vereinigung noch dem Leben dienen -, der verwendet das Vermögen gegen sich selbst.", + "Diese Lehre ist anspruchsvoll, und die Kirche tut nicht so, als wäre es anders. Viele tun sich schwer damit, viele scheitern. Unter anderem aus diesem Grund gibt es den Beichtstuhl. Aber die Forderung ist keine willkürliche Grausamkeit. Es ist die Erkenntnis, dass der Körper eine Sprache spricht und dass das moralische Leben darin besteht, den Körper nicht zu belügen, was man tut.", + ], + cites: [ + "Catechism of the Catholic Church §§2331–2336 (vocation to chastity)", + "§§2351–2356 (offenses against chastity)", + "§§2360–2365 (conjugal love)", + "Gaudium et Spes §49 (quoted at CCC §2362)", + ], + }, + chesterton: { + lede: "Der Zaun um den Garten ist der Grund dafür, dass es einen Garten gibt.", + body: [ + "Der moderne Mensch sieht sich einen Zaun an und fragt sich, warum er da ist. Wenn er klug ist, reisst er ihn nicht ein, bevor er es herausgefunden hat. Die christlichen Regeln rund um den Sex sehen aus ausreichender Entfernung wie Zäune um nichts aus - willkürliche Linien, die über ein offenes Feld der Lust gezogen wurden. Gehen Sie näher heran und Sie werden feststellen, dass das Feld ein Garten ist und der Zaun die Wölfe fernhält.", + 'Das Argument des Vergnügens beweist zu viel. Wenn "es fühlt sich gut an, also ist es gut" ein moralisches Prinzip wäre, würde es jede Sucht zulassen und jeden Betrug entschuldigen. Auch der Mann, der seine Frau betrügt, berichtet, dass es sich gut anfühlt. Der Betrunkene berichtet dasselbe. Natürlich fühlt es sich gut an. Die Frage, die sich jeder erwachsene Mensch irgendwann beantworten muss, ist, ob die Dinge, die sich gut anfühlen, auch die Dinge sind, die ein Leben ausmachen, das es wert ist, in zehn Jahren, in zwanzig Jahren und auf dem Sterbebett zu leben.', + "Die Sexualethik des Christentums ist unmodern. Sie war schon immer unmodern. Sie war im heidnischen Rom unmodern, und genau deshalb verbreitete sich das Christentum dort - es bot zum ersten Mal in dieser Welt eine Vision, in der Frauen, Sklaven und ungewollte Kinder nicht entbehrlich waren. Der hedonistische Einwand klingt neu. Tatsächlich ist er der älteste Einwand, den es gibt, und die seltsamste Tatsache in der Geschichte ist, wie viele müde Hedonisten, nachdem sie die Alternative ausprobiert hatten, zum Zaun zurückgekehrt sind und sich den Garten erneut angesehen haben.", + ], + cites: [ + 'The Thing (1929), ch. 4 ("The Drift from Domesticity") — the famous "fence" passage', + "What's Wrong with the World (1910), Part III", + "Orthodoxy (1908), ch. 7", + ], + }, + }, + }, + { + id: "projection", + n: 18, + title: "Religion ist eine psychologische Projektion.", + short: "Der kosmische Vater", + steel: + "Wir haben Gott erfunden, weil wir unsere leiblichen Väter vermissen, den Tod fürchten und uns wünschen, dass das Universum auf unserer Seite ist. Die Doktrin der Vorsehung ist der Wunsch, dass jemand auf uns aufpasst. Die Doktrin des Himmels ist der Wunsch, dass wir nicht wirklich sterben. Die Lehre vom Gericht ist der Wunsch, dass die Bösen nicht wirklich ungestraft davonkommen. Ziehen Sie die Wünsche ab und es bleibt nichts übrig.", + quote: + "Religiöse Ideen sind Illusionen, Erfüllungen der ältesten, stärksten und dringendsten Wünsche der Menschheit.", + quoteBy: "Sigmund Freud, Die Zukunft einer Illusion", + pub: "Sie glauben nur an Gott, weil Sie wollen, dass er wahr ist.", + related: ["evidence", "hiddenness", "morality"], + counters: { + lewis: { + lede: "Ein Lebewesen wird nicht mit Begierden geboren, wenn es keine Befriedigung für diese Begierden gibt.", + body: [ + "Ein Baby verspürt Hunger; nun, es gibt so etwas wie Nahrung. Ein Entenküken möchte schwimmen; nun, es gibt so etwas wie Wasser. Männer verspüren sexuelles Verlangen; nun ja, es gibt so etwas wie Sex. Wenn ich in mir ein Verlangen finde, das keine Erfahrung in dieser Welt befriedigen kann, ist die wahrscheinlichste Erklärung, dass ich für eine andere Welt geschaffen wurde. Der Einwand der Wunscherfüllung behandelt die menschliche Sehnsucht als Beweis gegen ihr Objekt. In jedem anderen Bereich behandeln wir sie als Beweis für ein Objekt.", + "Die atheistische Version des Arguments lautet: Sie sehnen sich nach einem Vater, also haben Sie ihn erfunden. Führen Sie dasselbe Argument auf den Hunger an und Sie erhalten: Sie sehnen sich nach Nahrung, also gibt es keine Nahrung. Die Struktur ist absurd. Was die Sehnsucht tatsächlich zeigt, ist, dass man sich nach etwas sehnt - und die Frage, ob dieses Etwas real ist, lässt sich nicht dadurch klären, dass man darauf hinweist, dass man es will.", + "Ich werde noch weiter gehen. Freuds Theorie ist selbst eine Wunscherfüllung für diejenigen, die sich wünschen, dass es keinen Vater gibt, dem sie Rechenschaft ablegen müssen. Der Wunsch, frei von einem moralischen Gesetzgeber zu sein, ist mindestens so ursprünglich wie der Wunsch, einen solchen zu haben. Wenn das genetische Argument den Glauben entkräftet, dann entkräftet es auch den Unglauben mit den gleichen Worten.", + ], + cites: [ + 'Mere Christianity (1952), Bk. III, ch. 10 ("Hope")', + "The Weight of Glory (1941)", + "Surprised by Joy (1955), ch. 1, 11", + ], + }, + chesterton: { + lede: "Der Atheismus ist die tröstlichste Religion, die je erfunden wurde.", + body: [ + "Der Mann, der sagt, das Christentum sei ein tröstliches Märchen, hat nie versucht, danach zu leben. Er verwechselt das Christentum mit den gemütlichen Kindergebeten, gegen die er rebelliert. Das wahre Christentum sagt Ihnen, dass Sie ein Sünder sind, dass Sie Ihren Feinden vergeben müssen, dass die Reichen es schwer haben werden, dass Sie für jedes unnütze Wort gerichtet werden und dass der Preis der Nachfolge Ihr Leben ist. Wenn dies eine Wunscherfüllung ist, dann sind die damit verbundenen Wünsche ausserordentlich pervers.", + "Was wirklich tröstlich ist, ist die Lehre, dass es keinen Gott gibt, dem man Rechenschaft ablegen muss, keine Seele, die den Tod überlebt, um sich dem Gericht zu stellen, kein objektives moralisches Gesetz, an dem man gemessen werden kann. Der Atheist schläft besser als der Christ und das war schon immer so. Die ehrlichen Atheisten wissen das. Camus wusste es. Nietzsche, der wollte, dass der Tod Gottes Angst macht, wusste, dass seine Zeitgenossen dies als gute Nachricht auffassten und verachtete sie dafür.", + "Das Argument der Wunscherfüllung sollte umgedreht und auf denjenigen gerichtet werden, der es vorbringt. Cui bono? Wer profitiert von der kosmischen Abwesenheit? Der Mann, der lieber nicht beobachtet werden möchte.", + ], + cites: [ + 'Orthodoxy (1908), ch. 6 ("The Paradoxes of Christianity")', + "The Everlasting Man (1925), Part II, ch. 1", + ], + }, + logician: { + lede: "Der genetische Irrtum.", + body: [ + "Den Ursprung eines Glaubens zu erklären bedeutet nicht, den Glauben zu widerlegen. Dies ist eine der grundlegendsten Unterscheidungen in der Philosophie der Argumentation, und der Einwand der Wunscherfüllung verstösst gegen diese Unterscheidung, da sie eine Frage der Struktur ist. Wie jemand dazu gekommen ist, X zu glauben, ist logischerweise unabhängig davon, ob X wahr ist. Ein Mann, der glaubt, dass die Brücke sicher ist, weil seine Mutter ihm das gesagt hat, steht vielleicht immer noch auf einer sicheren Brücke.", + "Wenn man Freuds Argument konsequent anwendet, löst es sich von selbst auf. Der Glaube, dass religiöser Glaube eine Wunscherfüllung ist, ist selbst ein Glaube, der von bestimmten Menschen aus bestimmten psychologischen Gründen vertreten wird. Wenn der Ursprung einer Überzeugung über ihren Wahrheitsgehalt entscheidet, dann können wir Freud entlarven, indem wir Freuds Psychologie untersuchen - und genau das haben spätere Analytiker getan, mit Ergebnissen, die für den Begründer der Disziplin wenig schmeichelhaft waren. Das Argument kann nicht gegen die Religion verwendet werden, ohne dass es auch gegen sie selbst verwendet werden kann.", + "In dem Einwand steckt eine berechtigte Frage: Wenn wir psychologische Gründe haben, X zu wollen, können wir dann trotzdem mit guten Beweisen zu X kommen? Die Antwort lautet ja, und zwar auf dieselbe Weise, wie wir zu jeder Überzeugung gelangen - indem wir die Beweise auf ihre Stichhaltigkeit hin prüfen und uns vor Voreingenommenheit hüten. Das ist schwierig, aber für den Atheisten ist es auf die gleiche Weise schwierig.", + ], + cites: [ + "Antony Flew, Thinking About Thinking (1975)", + "cf. Alvin Plantinga, Warranted Christian Belief (2000), ch. 5–6", + ], + }, + aquinas: { + lede: "Der natürliche Wunsch nach Gott ist ein Beweis, keine Illusion.", + body: [ + "Jede Fähigkeit in der Natur ist auf ein Objekt ausgerichtet, das existiert. Das Auge ist für das Licht da; das Licht existiert. Der Intellekt ist für die Wahrheit da; die Wahrheit existiert. Der Wille ist auf das Gute ausgerichtet; das Gute existiert. Es wäre eine seltsame Ausnahme von diesem universellen Muster, wenn die tiefste menschliche Sehnsucht - die Rastlosigkeit, die Augustinus benennt, das Verlangen nach dem Unendlichen, das kein endliches Ding befriedigen kann - auf nichts gerichtet wäre.", + "Das Argument lautet nicht, dass Gott existiert, weil wir ihn wollen. Es lautet, dass die universelle menschliche Fähigkeit, das zu begehren, was kein Lebewesen geben kann, selbst ein Merkmal der menschlichen Natur ist, das einer Erklärung bedarf. Der Materialist muss erklären, warum die Evolution ein Tier geformt hat, das nicht in der Welt zu Hause ist, für die es sich entwickelt hat. Die christliche Erklärung - dass wir für Gott geschaffen sind und unruhig bleiben, bis wir in ihm ruhen - ist zumindest ein Kandidat, und zwar ein Kandidat, der besser zu den Daten passt als seine Alternativen.", + "Was der Einwand fälschlicherweise für Projektion hält, ist in Wirklichkeit die Aussage des Geschöpfes über sein eigenes Ende.", + ], + cites: [ + "Summa Contra Gentiles III.48–51", + "Summa Theologiae I-II.2 (on the ultimate end of man)", + "cf. Augustine, Confessions I.1", + ], + }, + }, + }, + { + id: "faith-reason", + n: 19, + title: "Der Glaube ist der Verzicht auf die Vernunft.", + short: "Glaube ohne Beweise", + steel: + "Die Wissenschaft arbeitet mit Beweisen, Falsifikation und Revision. Religion beruht auf dem Glauben - was bedeutet, dass man Dinge glaubt, für die es keinen guten Grund gibt. Die beiden ergänzen sich nicht, sie sind Gegensätze. Ein Wissenschaftler, der Dinge aufgrund seines Glaubens glaubt, würde aus seinem Fachgebiet gedrängt werden. Der religiöse Mensch feiert als Tugend, was jeder andere Bereich als Laster betrachtet.", + quote: + "Der Glaube ist die grosse Ausflucht, die grosse Ausrede, um der Notwendigkeit zu entgehen, nachzudenken und Beweise zu bewerten.", + quoteBy: "Richard Dawkins", + pub: "Glaube bedeutet einfach, etwas zu glauben, ohne Beweise zu haben.", + related: ["evidence", "science", "intelligence"], + counters: { + aquinas: { + lede: "Glaube ist die Zustimmung zur Wahrheit aufgrund der Autorität eines vertrauenswürdigen Zeugen.", + body: [ + "Der Einwand geht davon aus, dass Glaube bedeutet, ohne Vernunft zu glauben. Das ist nicht das, was das Wort in der katholischen Tradition jemals bedeutet hat. Der Glaube ist die Zustimmung des Verstandes zu einer Wahrheit auf der Grundlage eines Zeugnisses - insbesondere des Zeugnisses Gottes, dessen Wahrhaftigkeit der Grund für die Zustimmung ist. Er steht nicht im Gegensatz zur Vernunft, sondern ist die Vernunft, die sich auf eine bestimmte Art von Beweis stützt, nämlich das Zeugnis dessen, der weiss.", + "Sie glauben bereits sehr viele Dinge auf diese Weise. Sie glauben, dass Australien existiert, obwohl Sie noch nie dort waren. Sie glauben, dass die amerikanische Revolution stattgefunden hat, obwohl Sie sie nicht gesehen haben. Sie glauben, dass Ihre Mutter Ihre Mutter ist, aufgrund der Aussagen derer, die bei Ihrer Geburt anwesend waren. Nichts davon ist irrational. Es ist das normale Vorgehen eines endlichen Geistes, der nicht alles aus erster Hand überprüfen kann und sich auf glaubwürdige Zeugen verlassen muss.", + "Was der Glaube hinzufügt, ist nicht die Struktur der bezeugten Zustimmung, sondern der Zeuge - Gott selbst, dessen Autorität diejenige jeder menschlichen Quelle übersteigt. Die Angemessenheit des Glaubens hängt also von der vorherigen Frage ab, ob Gott tatsächlich gesprochen hat, und das ist eine Frage, die die Vernunft prüfen kann. Die Motive der Glaubwürdigkeit - Wunder, Prophezeiungen, die Heiligkeit der Heiligen, die Ausbreitung der Kirche - sind nicht der Glaube selbst, sondern die rationalen Gründe für die Annahme des Glaubens.", + ], + cites: [ + "Summa Theologiae II-II.1–2 (on faith)", + "ST II-II.4.1 (the definition of faith)", + "Vatican I, Dei Filius ch. 3 (on faith and reason)", + ], + }, + newman: { + lede: "Das meiste, was wir wissen, wissen wir durch kumulierte Wahrscheinlichkeiten, nicht durch Beweise.", + body: [ + 'Das Modell des Wissens, das der Einwand impliziert - dass echtes Wissen das ist, was durch deduktive Gewissheit oder experimentelle Replikation bewiesen werden kann, und alles andere blosser "Glaube" ist - beschreibt fast nichts von dem, was ein Mensch tatsächlich weiss. Ausserhalb der Mathematik und eines schmalen Bandes von Laborwissenschaften wissen wir Dinge durch die Konvergenz unabhängiger Wahrscheinlichkeiten, die durch das abgewogen werden, was ich den illativen Sinn genannt habe.', + "Sie wissen, dass Ihr Ehepartner Sie liebt. Sie können es nicht beweisen, so wie Sie ein Theorem beweisen. Sie glauben es aufgrund von zehntausend kleinen Beweisen - Blicken, Gesten, Opfern, der Textur von Jahren - von denen keiner allein entscheidend ist, die aber alle zusammen Gewissheit schaffen. Das ist keine Irrationalität. Es ist die übliche Struktur, wie vernünftige Erwachsene zu den wichtigsten Schlussfolgerungen ihres Lebens gelangen.", + "Der Glaube an Gott wird durch dieselbe Fähigkeit erreicht. Nicht durch einen einzigen schlagenden Beweis, sondern durch die Konvergenz von Gewissen, Geschichte, philosophischem Argument, dem Zeugnis der Heiligen, der Erfahrung der Gnade und der Kohärenz der Doktrin. Der Mann, der einen syllogistischen Beweis verlangt, bevor er glaubt, wird, wenn er konsequent ist, auch nie sagen können, dass er seine Frau liebt.", + ], + cites: [ + "An Essay in Aid of a Grammar of Assent (1870), esp. ch. 8–9", + "Apologia Pro Vita Sua (1864)", + ], + }, + logician: { + lede: "Jedes Glaubenssystem stützt sich auf Zeugenaussagen.", + body: [ + "Überlegen Sie einmal, was der durchschnittlich gebildete Atheist tatsächlich über, sagen wir, die Evolution weiss. Er hat die genetische Sequenzierung nicht durchgeführt. Er hat die Fossilien nicht ausgegraben. Er hat das Original von Origin of Species nicht gelesen, geschweige denn die Fachliteratur. Er glaubt, dass die Evolution wahr ist, weil glaubwürdige Autoritäten - Wissenschaftler, Lehrbücher, Lehrer - ihm das gesagt haben und die Institutionen, die sie hervorgebracht haben, verlässlich sind. Dies ist genau die Struktur des religiösen Glaubens: Zustimmung auf der Grundlage von vertrauenswürdigen Aussagen.", + 'Der Glaube des Atheisten an die Evolution ist daher nicht irrational. Das Vertrauen in Expertenaussagen, wenn die Experten vertrauenswürdig und die Institutionen verlässlich sind, ist eine absolut vernünftige epistemische Strategie. Aber sie unterscheidet sich nicht grundlegend vom Glauben eines Katholiken an die Auferstehung. Beide stützen sich auf Zeugenaussagen; beide können auf die Glaubwürdigkeit der Zeugen geprüft werden; bei beiden ist der Sprung von "die Zeugen scheinen zuverlässig zu sein" zu "ich stimme dem zu, was sie sagen" nicht gleich Null', + "Die Formulierung von Dawkins - dass Glaube bedeutet, ohne Beweise zu glauben - ist keine Beschreibung dessen, was religiöse Menschen tun. Es ist eine Definition, die so manipuliert ist, dass die Schlussfolgerung automatisch gezogen wird. Ersetzen Sie die eigentliche Definition (Zustimmung auf der Grundlage von Zeugenaussagen) und die angebliche Kluft zwischen Glaube und Vernunft verringert sich auf ein Nichts.", + ], + cites: [ + "C.A.J. Coady, Testimony: A Philosophical Study (1992)", + "cf. Alvin Plantinga, Warranted Christian Belief (2000)", + ], + }, + lewis: { + lede: "Glaube bedeutet, an dem festzuhalten, was Ihre Vernunft akzeptiert hat, trotz wechselnder Stimmungen.", + body: [ + "Ich möchte zwei Dinge unterscheiden, die oft verwechselt werden. Es gibt den Glauben in dem Sinne, dass man zu einer Überzeugung gelangt, und den Glauben in dem Sinne, dass man an einer einmal gewonnenen Überzeugung festhält. Das erste ist das Werk von Beweisen und Vernunft, das zweite ist das Werk von Wille und Gewohnheit. Die Karikatur des Atheisten verwechselt sie absichtlich.", + "Wenn ich fröhlich und ausgeruht bin, scheint das Argument für das Christentum offensichtlich. Wenn ich verängstigt, erschöpft oder in die falsche Person verliebt bin, sieht dasselbe Argument dünn aus. Das liegt nicht daran, dass sich die Beweise verändert haben, sondern daran, dass ich mich verändert habe. Der Glaube im zweiten Sinne ist die Disziplin, an dem festzuhalten, was ich in meinen besten Momenten beschlossen habe, wenn ich nicht mehr in meinen besten Momenten bin. Jeder ernsthafte Glaube - wissenschaftlich, moralisch, persönlich - erfordert dies. Der Wissenschaftler, der seine Theorie aufgibt, wenn die Daten das erste Mal wackelig aussehen, ist kein besserer Wissenschaftler als derjenige, der an seiner Arbeit festhält und sie überprüft.", + "Der Atheist, der sich einbildet, dass sein Unglaube keine solche Disziplin erfordert, hat seine eigenen Stimmungen nicht untersucht. Auch er hält seine Ansichten gegen die Anziehungskraft des gegenteiligen Gefühls. Er nennt es einfach nicht Glauben.", + ], + cites: [ + 'Mere Christianity (1952), Bk. III, ch. 11 ("Faith")', + "Mere Christianity, Bk. III, ch. 12 (the second kind of faith)", + ], + }, + }, + }, + { + id: "mythicism", + n: 20, + title: "Christus ist ein recycelter Mythos.", + short: "Jesus hat nie existiert", + steel: + "Die Geschichte eines sterbenden und auferstehenden Gottes, der von einer Jungfrau geboren wird, Wunder vollbringt und am dritten Tag wieder aufersteht, ist dem Christentum um Jahrhunderte voraus. Horus, Mithras, Dionysos, Osiris, Attis - die Parallelen sind Legion. Die Evangelien wurden Jahrzehnte nach den angeblichen Ereignissen von Partisanen auf Griechisch geschrieben, weit weg von Palästina. Es gibt keine zeitgenössischen nicht-christlichen Aufzeichnungen über Jesus. Die einfachste Erklärung ist, dass die Figur fiktiv ist und aus dem mythologischen Rohmaterial der hellenistischen Welt zusammengesetzt wurde.", + quote: + "Hat Jesus existiert? Sie denken wahrscheinlich, dass diese Frage geklärt ist. Ist sie aber nicht.", + quoteBy: "Richard Carrier, Über die Historizität von Jesus", + pub: "Jesus ist nur eine Kopie der älteren heidnischen Götter.", + related: ["miracles", "evidence", "science"], + counters: { + historian: { + lede: "Selbst die agnostischen Gelehrten sagen, dass er existiert hat.", + body: [ + "Ich bin kein Gläubiger und ich werde auch nicht so tun, als ob ich einer wäre. Ich bin Historiker der Spätantike und ich möchte Ihnen sagen, dass die mythizistische Position von keinem ernsthaften Gelehrten dieser Epoche an einer der grossen säkularen Universitäten vertreten wird. Das hat nichts mit religiöser Voreingenommenheit zu tun. Die Fakultäten für Alte Geschichte in Oxford, Cambridge, Harvard, Yale und an der Sorbonne - die überwiegend von säkularen und agnostischen Wissenschaftlern bevölkert werden - sind sich einig, dass Jesus von Nazareth existiert hat und unter Pontius Pilatus gekreuzigt wurde. Der Streit geht darum, was man aus ihm machen soll, nicht darum, ob man ihn zählen soll.", + 'Die Gründe sind technisch, aber solide. In den Briefen des Paulus, die innerhalb von zwanzig bis dreissig Jahren nach der Kreuzigung geschrieben wurden, wird der Bruder von Jesus, Jakobus, als eine Person erwähnt, die Paulus persönlich getroffen hat. Der Historiker Tacitus, der 116 n. Chr. schrieb, erwähnt "Christus, der von dem Prokurator Pontius Pilatus während der Herrschaft von Tiberius hingerichtet wurde" - und Tacitus war kein Christ. Josephus, ein jüdischer Historiker, der in den 90er Jahren schrieb, erwähnt Jesus zweimal, einmal in einer Passage, die von späteren christlichen Kopisten interpoliert wurde, bei der sich aber fast alle Gelehrten einig sind, dass sie einen authentischen Kern enthält. Das Kriterium der Peinlichkeit - Historiker fragen, warum eine Gemeinschaft Details erfinden würde, die sie in Verlegenheit bringen - liefert uns einen gekreuzigten Messias, die Taufe durch Johannes (was Jesus als untergeordnet erscheinen lässt) und eine galiläische Herkunft (was ihn von vornherein zu einem unwahrscheinlichen Kandidaten machte). Sie erfinden diese Details nicht. Sie erben sie.', + "Die Parallelen zwischen sterbenden und auferstehenden Göttern sind grösstenteils gefälscht. Die meisten der angeblichen Parallelen - Horus, der am 25. Dezember von einer Jungfrau geboren wurde, Mithras, der gekreuzigt wurde und wieder auferstanden ist - sind Erfindungen des neunzehnten Jahrhunderts oder massive Überinterpretationen von bruchstückhaften Beweisen. Lesen Sie die eigentlichen Primärquellen und die Parallelen verschwinden. Was übrig bleibt, ist ein jüdischer Prediger aus Galiläa, der unter Pilatus hingerichtet wurde und dessen Anhänger kurz darauf begannen, aussergewöhnliche Behauptungen über ihn aufzustellen. So viel zur Geschichte. Was man damit macht, ist Theologie.", + ], + cites: [ + "Bart Ehrman, Did Jesus Exist? (2012)", + "Maurice Casey, Jesus: Evidence and Argument or Mythicist Myths? (2014)", + "Tacitus, Annals XV.44", + "Josephus, Antiquities XX.9.1, XVIII.3.3", + ], + }, + lewis: { + lede: "Ich habe Mythen gelesen. Die Evangelien sind keine Mythen.", + body: [ + "Ich habe mein Berufsleben damit verbracht, antike und mittelalterliche Literatur zu lesen, und ich werde etwas sagen, was der Mythenforscher nicht kann: Ich weiss, wie sich Mythen lesen, und die Evangelien lesen sich nicht wie sie. Mythen sind vage in Bezug auf die Geographie, vage in Bezug auf die Chronologie, bevölkert von Figuren, die ausserhalb der gewöhnlichen Zeit existieren. Die Evangelien nennen einen römischen Prokurator, einen jüdischen Hohepriester, einen galiläischen Tetrarchen, eine bestimmte Steuerzählung. Sie berichten über unangenehme, sinnlose Details - das Kissen, auf dem Jesus im Boot schlief, die Art, wie er in den Staub schrieb, seine Verärgerung über seine Jünger. In Mythen gibt es keine Kissen. Reportagen haben Kissen in sich.", + "Wenn die Verfasser der Evangelien eine mythologische Figur erfunden haben, dann in einem Genre, das es noch nicht gab - realistische biografische Fiktion. Niemand hat im ersten Jahrhundert auf diese Weise geschrieben. Die romanhafte Technik, die den Jesus der Evangelien hervorbringt, wurde erst im achtzehnten Jahrhundert entwickelt. Entweder waren die Evangelisten ihrer literarischen Zeit um zweitausend Jahre voraus, oder sie haben etwas anderes getan, als zu erfinden. Occam legt das Letztere nahe.", + "Der Mythenforscher muss auch den Aufstieg des Christentums erklären. Eine Bewegung, die jüdische Monotheisten für die Anbetung eines gekreuzigten Mannes rekrutiert - die Kreuzigung war der schändlichste Tod, den sich die antike Welt vorstellen konnte - hat einen steilen Berg zu erklimmen, wenn ihre zentrale Figur nie existiert hat. Der Hügel wird viel sanfter, wenn er existiert hat.", + ], + cites: [ + '"Modern Theology and Biblical Criticism" in Christian Reflections (1967)', + '"Myth Became Fact" in God in the Dock (1970)', + "An Experiment in Criticism (1961)", + ], + }, + chesterton: { + lede: "Pontius Pilatus ist keine mythologische Figur.", + body: [ + "Das Geniale am christlichen Glaubensbekenntnis ist, dass es sich auf die peinlichste Konkretheit stützt. Er litt unter Pontius Pilatus. Keine Mythologie tut dies. Die Mythologie lebt in illo tempore, in der Zeit der Anfänge, als die Götter wandelten. Das Christentum verortet seine zentrale Handlung unter einem bestimmten römischen Verwalter, dessen Karriere wir datieren können, dessen Münzen wir haben und dessen archäologische Inschriften existieren. So funktionieren Mythen nicht. Es ist das Gegenteil von dem, wie Mythen funktionieren.", + 'Das Argument der Mythiker verlangt von uns, dass wir glauben, dass die frühen Christen, die einen Gott erfinden wollten, ihn mit einem möglichst ungünstigen historischen Ereignis in Verbindung brachten - einer kürzlich erfolgten Hinrichtung in einer abgelegenen Provinz durch einen namentlich genannten Bürokraten. Das ist so, als ob jemand, der heute eine Religion erfindet, sie unter "die zweite Obama-Regierung" stellt Sie erfinden keine Legenden mit bürokratischen Zeitstempeln. Sie erben sie.', + "Die Parallelen zwischen sterbenden und auferstehenden Göttern sind die Lieblingswaffe der Mythenforscher und zugleich die schwächste. Frazers Goldener Zweig, auf den sich die meisten Parallelen stützen, wurde von jeder Generation nachfolgender Anthropologen im Stillen demontiert. Die heidnischen Parallelen erweisen sich bei näherer Betrachtung entweder als viel später als das Christentum (und davon abhängig) oder als strukturell so unterschiedlich, dass der Vergleich sinnlos ist. Der Atheist ist uns ein Zitat schuldig. Er hat fast nie eines, das einer Prüfung standhält.", + ], + cites: [ + "The Everlasting Man (1925), Part II", + 'Orthodoxy (1908), ch. 8 ("The Romance of Orthodoxy")', + ], + }, + aquinas: { + lede: "Das Argument der Ausbreitung der Kirche.", + body: [ + "Selbst wenn man die textlichen Beweise beiseite lässt, ist die historische Tatsache der Expansion der Kirche selbst ein Argument. Innerhalb einer Generation nach der Kreuzigung hatten sich Gemeinschaften, die sich der Verehrung eines bestimmten galiläischen Juden verschrieben hatten, über das gesamte Römische Reich ausgebreitet, drei Jahrhunderte mit Unterbrechungen der Verfolgung überstanden und das Reich, das ihren Gründer gekreuzigt hatte, bekehrt. Diese Ausbreitung geschah in einem gebildeten, feindlichen und gut dokumentierten Gebiet. Die römischen Behörden, die jüdischen Behörden und die heidnischen Philosophen hatten alle ein Motiv, die christliche Behauptung zu widerlegen, indem sie Beweise dafür vorlegten, dass der Gründer nicht existiert hatte. Keiner von ihnen tat dies. Sie argumentierten stattdessen, dass er existiert hatte und dass seine Anhänger sich in ihm geirrt hatten.", + "Dies ist kein Beweis für die Auferstehung. Es ist jedoch ein Beweis dafür, dass die Existenz Jesu selbst unter seinen antiken Feinden nicht umstritten war. Die mythizistische Position ist nicht nur eine moderne akademische Minderheitsmeinung, sondern eine Position, die die antike Welt selbst nie ernsthaft in Erwägung gezogen hat, auch nicht die Parteien, die am meisten dazu motiviert waren, sie zu vertreten.", + "Was der Gläubige dem Bericht des Historikers hinzufügt, ist nicht eine andere Reihe von Fakten, sondern eine andere Lesart der gleichen Fakten. Der Historiker gibt uns einen Mann, der unter Pilatus gekreuzigt wurde und dessen Anhänger unmögliche Dinge über ihn sagten. Der Gläubige sagt: diese Dinge waren wahr.", + ], + cites: [ + "Summa Contra Gentiles I.6 (the conversion of the world as a sign)", + "Summa Theologiae II-II.1.4 ad 1", + ], + }, + }, + }, + { + id: "corruption", + n: 21, + title: "Ihre Institution ist moralisch bankrott.", + short: "Die korrupte Kirche", + steel: + "Die katholische Kirche hat jahrzehntelang den systematischen sexuellen Missbrauch von Kindern durch ihren Klerus vertuscht. Die Borgia-Päpste führten den Vatikan als kriminelles Unternehmen. Die Vatikanbank wurde über mehrere Jahrzehnte in Geldwäsche verwickelt. Inquisitoren verbrannten Dissidenten. Bischöfe segneten die koloniale Eroberung ab. Eine Institution mit einer solchen Bilanz ist kein glaubwürdiger Träger der göttlichen Wahrheit, unabhängig davon, was ihre Doktrinen auf dem Papier behaupten.", + quote: + "Die Kirche wurde in der Waage gewogen und für unzureichend befunden.", + quoteBy: + "gängige Formulierung; vgl. Boston Globe Spotlight Untersuchung, 2002", + pub: "Wenn die Kirche wirklich von Gott ist, warum ist sie dann so korrupt?", + related: ["religion-violence", "morality", "bible"], + counters: { + pastor: { + lede: "Ich werde das Unverzeihliche nicht verteidigen. Ich werde Ihnen sagen, was ich gesehen habe.", + body: [ + "Die Missbrauchskrise ist das Schlimmste, was die katholische Kirche in meinem Leben und möglicherweise in Jahrhunderten getan hat. Ich werde sie nicht abmildern, kontextualisieren oder mit anderen Institutionen vergleichen. Kinder wurden von Priestern vergewaltigt. Die Bischöfe haben sie gedeckt. Der institutionelle Apparat, der die Opfer hätte schützen sollen, hat stattdessen die Täter geschützt. Jeder, der in diesem Jahrhundert katholisch sein will, muss dem direkt ins Auge sehen, ohne mit der Wimper zu zucken, und es auf sich wirken lassen.", + "Ich kann Ihnen nur sagen, was ich auch gesehen habe. Ich habe eine Kirche gesehen, die langsam und unvollständig begonnen hat, sich dem zu stellen, was sie getan hat. Ich habe Überlebende gesehen, die gegen jede Vernunft zu den Sakramenten zurückkehrten und dort etwas fanden, das die Männer, die sie verletzt hatten, nicht zerstört hatten. Ich habe Priester meiner Generation gesehen, die ins Priesterseminar gingen, weil sie wussten, was der Kragen in dieser Zeit kostet, und sie gingen trotzdem, weil sie glaubten, dass es hier etwas gab, das es wert war, gerettet zu werden. Ich habe gute Männer beerdigt und gute Männer ordiniert, und ich werde nicht behaupten, dass beides die ganze Geschichte ist.", + "Die Frage, die der Einwand aufwirft, ist, ob eine derart kompromittierte Institution noch Träger der Gnade sein kann. Die katholische Antwort, die hart erkämpft und historisch alt ist, lautet ja - nicht weil die Institution es verdient, sondern weil die Gnade nicht von der Würdigkeit ihrer Diener abhängt. Der Gott, der seine Kirche dem Petrus anvertraut hat, der ihn dreimal verleugnet hat, hat immer durch unwürdige Verwalter gewirkt. Dies ist keine Verteidigung der Unwürdigkeit. Es ist ein Bericht über die seltsame Art und Weise, wie die Gnade reist.", + ], + cites: [ + "Spotlight (2002, Boston Globe) and subsequent investigations", + "the McCarrick Report (2020)", + "cf. Pope Benedict XVI, Letter to the Catholics of Ireland (2010)", + ], + }, + newman: { + lede: "Die Heiligkeit der Kirche liegt nicht in der Heiligkeit ihrer Mitglieder.", + body: [ + "Die Kirche ist zugleich eine göttliche und eine menschliche Institution, und die menschliche Seite ist genau so zerbrochen wie die Menschen selbst. Etwas anderes zu erwarten hiesse, etwas zu erwarten, was die Kirche nie für sich beansprucht hat. Das Glaubensbekenntnis besagt, dass ich an die eine, heilige, katholische und apostolische Kirche glaube; es besagt nicht, dass ich an eine Kirche glaube, deren Mitglieder alle gleichmässig heilig sind. Das erste ist eine lehrmässige Behauptung über den Charakter und die Mission der Institution; das zweite würde an jedem beliebigen Dienstag empirisch widerlegt werden.", + "Die Kirche behauptet, dass das Glaubensgut, die Gültigkeit der Sakramente und die Unantastbarkeit ihrer zentralen Lehren trotz der Sünden ihrer Mitglieder - einschliesslich ihrer höchsten Amtsträger, darunter in manchen Zeiten die Mehrheit ihrer Bischöfe - durch das Wirken des Heiligen Geistes bewahrt werden. Dies ist ein starker Anspruch und ein bescheidener Anspruch. Sie ist stark, weil sie die historische Überlieferung überlebt; sie ist bescheiden, weil sie nicht davon abhängt, dass man vorgibt, die historische Überlieferung sei besser als sie ist. Die Borgia-Päpste haben die Eucharistie nicht für ungültig erklärt. Die Inquisitoren haben die Taufe nicht ungültig gemacht. Die Bischöfe, die Missbrauchstäter gedeckt haben, haben das Evangelium, das sie nicht gepredigt haben, nicht ausgelöscht.", + "Die Korruption der Institution anzuerkennen, bedeutet daher nach katholischem Verständnis nicht, den Anspruch der Institution zu widerlegen. Es ist die Bestätigung der Lehre von der Erbsünde, angewandt auf die Kirche selbst. Der Skeptiker und der Heilige sind sich einig, dass die Kirche voll von Sündern ist. Sie sind sich nicht einig darüber, was nun folgt.", + ], + cites: [ + "An Essay on the Development of Christian Doctrine (1845)", + "Apologia Pro Vita Sua (1864)", + "cf. Lumen Gentium §8 (the Church semper purificanda, always in need of purification)", + ], + }, + augustine: { + lede: "Die Donatisten stellten diese Frage zuerst. Die Kirche gab ihre Antwort.", + body: [ + "Zu meiner Zeit gab es eine Bewegung, die Donatisten, die der Meinung waren, dass die von sündigen oder kompromittierten Geistlichen gespendeten Sakramente ungültig seien. Die Bischöfe, die während der Verfolgungen die Heilige Schrift weitergegeben hatten, hatten ihrer Meinung nach ihr Priestertum verwirkt; die Kirche müsse eine Kirche der Reinen sein. Ich habe ihnen lange und mit Unterstützung von Konzilien widersprochen, und die Antwort der Kirche ist eindeutig: Die Gültigkeit des Sakraments hängt nicht von der Heiligkeit des Spenders ab, sondern vom Wirken Christi, der durch ihn wirkt.", + "Dies ist keine bequeme Ausrede. Es ist eine hart erkämpfte Doktrin, die durch eine lange Kontroverse erkauft wurde. Wenn die Würdigkeit des Amtsträgers über die Gültigkeit des Sakraments entscheiden würde, könnte niemand sicher sein, dass seine Taufe echt, seine Ehe sakramental und seine Absolution wirksam ist - denn niemand kann sich der Würdigkeit eines anderen sicher sein, und der Amtsträger selbst kann sich seiner eigenen meistens nicht sicher sein. Die Lehre ex opere operato - dass das Sakrament durch das Werk wirkt, nicht durch den Arbeiter - macht das sakramentale Leben überhaupt erst möglich.", + 'Die logische Folge ist die, die der Einwand übersieht: Die Kirche hat immer gewusst, dass sie voller Sünder ist, auch in ihrem Heiligtum. Die katholische Position lautet nicht "Seht, wie heilig wir sind" Sie lautet: "Seht, wie heilig die Gnade ist, die sogar durch uns wirkt." Die historische Aufzeichnung der klerikalen Korruption ist keine Widerlegung dieser Lehre. Es ist die Situation, für die die Lehre entwickelt wurde.', + ], + cites: [ + "Contra Litteras Petiliani", + "De Baptismo Contra Donatistas", + "cf. Catechism of the Catholic Church §1128 (on ex opere operato)", + ], + }, + chesterton: { + lede: "Die Kirche geht seit zweitausend Jahren vor die Hunde und überlebt die Hunde irgendwie immer.", + body: [ + "Jede Generation bringt ihre Kritiker hervor, die verkünden, dass die Korruption diesmal unheilbar ist, dass die Kirche sich nicht mehr erholen kann, dass die Glaubwürdigkeit endgültig und unwiderruflich dahin ist. Die arianische Krise des vierten Jahrhunderts, als die Mehrheit der Bischöfe Ketzer waren. Die Pornokratie des zehnten Jahrhunderts, als mit dem Papsttum offen gehandelt wurde. Die Gefangenschaft von Avignon. Die Borgias. Die Religionskriege. Die Französische Revolution. Die Krise der Moderne. Die Missbrauchskrise. Jede von ihnen war in ihrem Moment der letzte Schlag. Irgendwie beerdigt die Kirche immer wieder ihre Leichenbestatter.", + "Ich sage das nicht, um den aktuellen Skandal herunterzuspielen. Ich sage es, um ihn in seinen tatsächlichen historischen Kontext zu stellen. Eine Institution, die zwei Jahrtausende lang von Sündern geleitet wurde, darunter einige der schlimmsten Sünder der jeweiligen Jahrhunderte, ist nicht von vornherein weniger glaubwürdig als eine Institution, die seit fünfzig Jahren besteht und noch keine Zeit hatte, sich zu diskreditieren. Das Argument des Atheisten setzt voraus, dass wir glauben, dass institutionelle Fäulnis ausschlaggebend ist. Die historischen Aufzeichnungen legen nahe, dass die katholische Kirche eine besondere Eigenschaft hat - nennen Sie es, wie Sie wollen, göttliche Bewahrung oder sturer historischer Zufall -, die sie ungewöhnlich resistent gegen die Fäulnis macht, die ihre Mitstreiter erledigt hat.", + "Der Mann, der sich die Kirche unter Alexander VI. anschaute und zu dem Schluss kam, dass die Institution am Ende war, ging eine vernünftige Wette auf der Grundlage der verfügbaren Beweise ein. Auch er lag falsch. Das beweist nicht, dass der moderne Kritiker aus denselben Gründen falsch liegt. Es deutet aber darauf hin, dass die Art von Argumenten, die er vorbringt, eine schlechte Erfolgsbilanz hat.", + ], + cites: [ + 'The Everlasting Man (1925), Part II, ch. 6 ("The Five Deaths of the Faith")', + "The Catholic Church and Conversion (1926)", + ], + }, + }, + }, + { + id: "intelligence", + n: 22, + title: "Kluge Menschen wachsen aus der Religion heraus.", + short: "Der Glaube ist für die Unintelligenten", + steel: + "Studien zeigen durchweg eine negative Korrelation zwischen religiösem Glauben und Intelligenz- und Bildungsmessungen. Die erfolgreichsten Wissenschaftler - Mitglieder der National Academy, Nobelpreisträger - sind überwiegend säkular. Religiöser Glaube geht einher mit geringerer Bildung, geringerem Einkommen und geringerer wissenschaftlicher Kompetenz. Was auch immer Religion sonst noch ist, es ist eine Position, die intelligente Menschen zunehmend als unhaltbar empfinden.", + quote: + "Je höher die Intelligenz oder das Bildungsniveau, desto geringer ist die Wahrscheinlichkeit, dass man religiös ist.", + quoteBy: "Lynn, Harvey, & Nyborg, Geheimdienst (2009)", + pub: "Religion ist für Menschen, die es nicht besser wissen.", + related: ["science", "evidence", "faith-reason"], + counters: { + chesterton: { + lede: "Die Liste der katholischen Intellektuellen ist die längste in der Geschichte.", + body: [ + "Das Argument erfordert, dass wir durch eine seltsame selektive Amnesie fast die gesamte Geistesgeschichte des Westens übersehen. Augustinus. Aquinas. Dante. Pascal. Descartes war ein Gläubiger, ebenso wie Newton, der mehr über Theologie als über Physik schrieb, ebenso wie Mendel, der von einem Kloster aus die Genetik begründete. Faraday, Maxwell, Kepler, Kopernikus, Lemaître - der Mann, der den Urknall vorschlug, war ein katholischer Priester. Allein in der Philosophie des zwanzigsten Jahrhunderts finden wir Wittgenstein, Anscombe, MacIntyre, Plantinga, Taylor. Der Historiker, der zu dem Schluss kommt, dass religiöser Glaube mit Intelligenz unvereinbar ist, hat in seinem eigenen Jahrhundert aufgehört zu lesen.", + "Was die moderne Statistik tatsächlich misst, ist etwas Engeres und weniger Interessantes: dass im heutigen Westen in den letzten fünfzig Jahren die soziale Schicht, die sich am meisten mit formalen akademischen Zeugnissen identifiziert, überproportional säkular ist. Dies ist eine soziologische Tatsache über die moderne Akademie, keine logische Tatsache über den religiösen Glauben. Die gleiche Umfrage, die im Jahr 1900 oder 1500 oder in irgendeiner nicht-westlichen Kultur durchgeführt worden wäre, würde zu einem völlig anderen Ergebnis führen. Der Atheist verwechselt ein lokales Wettermuster mit einem Gesetz der Physik.", + "Wenn die Umfrage in fünfhundert Jahren durchgeführt wird, nach dem nächsten zivilisatorischen Umbruch, werden wir sehen, ob die Korrelation Bestand hatte oder ob sie sich, wie jede frühere Vorhersage über den endgültigen Niedergang der Religion, beim Kontakt mit der Geschichte auflöste.", + ], + cites: [ + "The Everlasting Man (1925), Part II, ch. 6", + "Orthodoxy (1908), ch. 6", + "cf. Rodney Stark, For the Glory of God (2003)", + ], + }, + lewis: { + lede: "Ich war Atheist, weil ich annahm, dass dies die intelligente Position ist.", + body: [ + "Als ich als Student nach Oxford kam, war ich überzeugter Atheist, und zwar aus Gründen, die ich für intellektuell einwandfrei hielt. Die klugen Leute, die ich kannte, waren Atheisten. Die Professoren, die ich bewunderte, waren Atheisten. Das Christentum war die Position von Menschen, die ich als meine intellektuellen Untergebenen betrachtete - Landpfarrer, fromme Tanten, Ungelesene. Mein Atheismus war zu einem grossen Teil eine Frage der sozialen Positionierung und nicht der Argumente.", + "Was mich gegen meinen Willen bekehrte, war die Lektüre der Leute, die ich für dumm gehalten hatte. Chesterton erwies sich als witziger und schärfer als die modernen Essayisten, die ich bewunderte. MacDonald konnte in der Belletristik Dinge tun, die meine professionellen Zeitgenossen nicht tun konnten. Vor allem aber stellte sich heraus, dass Tolkien - ein katholischer Philologe von gewaltigem Intellekt, nicht die Art von Mann, die man getrost als unreflektiert abtun kann - sein Christentum mit einer Tiefe und Strenge vertrat, die meinen Unglauben in den Schatten stellte. Die intellektuellen Argumente, die ich auf meiner Seite vermutet hatte, erwiesen sich als wesentlich schwächer als die Argumente, von denen ich angenommen hatte, dass sie mir nicht bekannt seien.", + "Ich vermute nun, dass die moderne Korrelation zwischen Unglauben und akademischen Qualifikationen etwas anderes misst, als ihre Befürworter annehmen. Sie misst die soziale Formation einer bestimmten Berufsklasse, in einem bestimmten Jahrhundert, in einer bestimmten Reihe von Institutionen. Die klugen Leute, die ich schliesslich kennenlernte - Owen Barfield, Tolkien, Anscombe, Lewis, der Mediävist, im Gegensatz zu Lewis, dem Schuljungen-Atheisten - standen auf der anderen Seite. Die Liste ist nicht so einseitig, wie die Umfrage vermuten lässt.", + ], + cites: [ + "Surprised by Joy (1955), ch. 12–14", + '"The Inner Ring" in The Weight of Glory (1949)', + ], + }, + aquinas: { + lede: "Das eigentliche Objekt des Intellekts ist die Wahrheit. Der Glaube steht ihm nicht im Weg.", + body: [ + "Die katholische Tradition hat den Glauben nie dem Intellekt entgegengesetzt. Sie hat im Gegenteil die nachhaltigste intellektuelle Tradition der Menschheitsgeschichte hervorgebracht - die mittelalterlichen Universitäten (alles katholische Stiftungen), die scholastische Methode, die Lehre von der analogen Prädikation des Seins, die Integration von Aristoteles, die Entwicklung des Naturrechts, die Philosophie der Person und der Handlung. Der Mann, der behauptet, dass der Glaube dem Intellekt feindlich gegenübersteht, hat die Summa nicht gelesen, die wie zehntausend ernst genommene und beantwortete Einwände aufgebaut ist.", + 'Was in der modernen Forschung als "Intelligenz" bezeichnet wird, ist in der Regel ein schmales Band kognitiver Fähigkeiten - verbale Fähigkeiten, abstraktes Denken, Leistungen in standardisierten Tests. Dies ist ein echtes menschliches Gut, und die Kirche hat es seit ihrer Gründung kultiviert. Aber es ist nicht die Gesamtheit des Intellekts, und sein Besitz ist keine Garantie für Weisheit. Die Pharisäer waren hochgebildet. Ebenso wie die Architekten des modernen Totalitarismus. Intelligenz im engeren Sinne, getrennt von der Ausrichtung des Willens auf das Gute, kann zu ungeheuerlichen Ergebnissen führen. Die Integration von Intellekt und Tugend ist das, was die Tradition sapientia - Weisheit - nennt und was die Heiligen besitzen und den bloss Klugen oft fehlt.', + "Die eigentliche Frage ist nicht, ob intelligente Menschen religiös sein können (sie können es und waren es in grosser Zahl), sondern wofür Intelligenz da ist. Wenn sie dem Streben nach Wahrheit dient, dann kann sie einer Religion, die den Anspruch erhebt, wahr zu sein, nicht prinzipiell feindlich gegenüberstehen. Die Vereinbarkeit muss von Fall zu Fall geprüft werden, und zwar vom Intellekt selbst.", + ], + cites: [ + "Summa Theologiae I.1.1–10 (sacred doctrine as a science)", + "ST I-II.66 (on the comparison of the virtues)", + "Fides et Ratio (John Paul II, 1998)", + ], + }, + logician: { + lede: "Das Argument ist statistisch ungebildet.", + body: [ + "Die zitierte Korrelation ist real, aber klein, in ihrer Interpretation umstritten und beweist nichts von dem, was der Einwand beweisen will. Eine Korrelation zwischen Glauben und Bildung sagt etwas über die soziale Verteilung des Glaubens aus, nicht über die Wahrheit des Glaubens. Es gab eine Zeit, in der die Korrelation in die andere Richtung verlief - als Lese- und Schreibfähigkeit und theologischer Glaube unter den Gebildeten nahezu universell waren und der Unglaube die Position der Geringgebildeten war. Niemand hat dies damals als Beweis für das Christentum gewertet. Niemand sollte jetzt die umgekehrte Korrelation als Beweis gegen das Christentum nehmen.", + "Der tiefere Fehler ist der Appell an die Autorität, der sich als Appell an die Demographie verkleidet. Kluge Menschen glauben, dass X ein Irrtum ist, egal ob X der Theismus oder der Atheismus ist. Kluge Menschen haben in der Geschichte der Ideen an jede wichtige Position geglaubt, auch an solche, die sich als katastrophal falsch erwiesen haben. Aristoteles glaubte, die Sklaverei sei natürlich. Newton glaubte an die Alchemie. Heidegger trat der Nazi-Partei bei. Intelligenz ist nicht gleichbedeutend mit Korrektheit, und Korrelationen zwischen Intelligenz und einer bestimmten Position dienen nicht als Argumente. Sie funktionieren als soziale Signale.", + "Würde man den Einwand als Argument ernst nehmen, würde er seinen Verfechter auf das festlegen, was die zeitgenössische intellektuelle Klasse gerade zu glauben scheint. Dies ist keine Haltung, die mit intellektueller Ernsthaftigkeit vereinbar ist. Sie ist in der Tat das Gegenteil davon.", + ], + cites: [ + "Antony Flew, Thinking About Thinking (1975)", + "cf. the long literature on the genetic and ad populum fallacies", + ], + }, + }, + }, + { + id: "submission", + n: 23, + title: "Religion unterdrückt kritisches Denken.", + short: "Die Einreichung Einspruch", + steel: + "Die Religion lehrt Sie, sich auf Autoritäten - die Schrift, die Tradition, das Lehramt - zu verlassen, anstatt selbst zu denken. Sie belohnt den Glauben und bestraft den Zweifel. Der Katechismus ist eine Liste von Schlussfolgerungen, die man auswendig lernen muss, nicht von Argumenten, die man überprüfen kann. Eine Weltanschauung, die die Unterwerfung des Intellekts verlangt, ist unvereinbar mit der intellektuellen Reife, die einen Erwachsenen ausmacht.", + quote: + "Wagen Sie es zu wissen! Haben Sie den Mut, Ihren eigenen Verstand zu gebrauchen - das ist das Motto der Erleuchtung.", + quoteBy: "Immanuel Kant, Was ist Aufklärung?", + pub: "Die Religion lehrt Sie, zu gehorchen, anstatt zu denken.", + related: ["faith-reason", "intelligence", "bible"], + counters: { + aquinas: { + lede: "Die Summa ist ein Buch der Einwände.", + body: [ + "Die Struktur der Summa Theologiae - das zentrale Werk der katholischen Theologie, das sieben Jahrhunderte lang studiert wurde - ist keine Liste von Schlussfolgerungen, die von oben überliefert wurden. Es ist eine Reihe von Fragen, von denen jede mit den Einwänden gegen die Position beginnt, die der Autor schliesslich verteidigen wird, und zwar in ihrer stärksten Form. Es scheint, dass Gott nicht existiert, weil... Das wichtigste intellektuelle Dokument der katholischen Tradition beginnt wiederholt und bei jeder wichtigen Frage mit der Argumentation gegen sich selbst.", + "Das ist kein Zufall des Stils. Es ist eine methodologische Verpflichtung. Nach scholastischem Verständnis wird die Wahrheit durch disputatio erreicht - durch das Testen von Positionen gegen ihre stärksten Einwände, das Überprüfen von Autoritäten, das Aussetzen der eigenen Schlussfolgerungen gegen die strengste verfügbare Herausforderung. Ein mittelalterlicher Theologiestudent musste gegen die katholische Lehre argumentieren, bevor er für sie argumentieren durfte. Die intellektuelle Kultur, die dies hervorbrachte, war für damalige Verhältnisse ungewöhnlich kontradiktorisch und ungewöhnlich rigoros.", + "Der Einwand verwechselt den katechetischen Unterricht - der für Kinder geeignet ist, die die Grundlagen des Glaubens lernen - mit der gesamten katholischen intellektuellen Tradition. Der Katechismus ist der Boden, nicht die Decke. Die Decke sind sechs Jahrhunderte Scholastik, die moderne katholische philosophische Wiedergeburt und der ständige Dialog des Lehramts mit Wissenschaft, Philosophie und Kultur. Jeder, der auch nur zehn Minuten in der aktuellen Literatur verbracht hat, weiss das.", + ], + cites: [ + "Summa Theologiae, structure passim", + "Quaestiones Disputatae", + "cf. Fides et Ratio (1998)", + ], + }, + newman: { + lede: "Ich habe eine Verteidigung des Gewissens geschrieben, die die Kirche akzeptiert hat.", + body: [ + "Die katholische Tradition besagt, dass das Gewissen die unmittelbare Norm des moralischen Handelns ist - dass ein Mensch verpflichtet ist, vor jeder äusseren Autorität seinem eigenen, wohlgeformten Gewissen zu folgen, auch gegen die Weisungen seiner Vorgesetzten. Wenn Sie wollen, trinke ich auf den Papst - doch zuerst auf das Gewissen und danach auf den Papst. Ich habe das geschrieben, und zwar als Kardinal, und die Kirche hat mich heiliggesprochen. Die Lehre wird nicht angefochten.", + 'Was der Einwand mit "Unterwerfung des Intellekts" verwechselt, ist in Wirklichkeit eine reife Beziehung zwischen dem individuellen Gewissen und der ererbten Weisheit. Der Katholik gibt sein Urteilsvermögen nicht auf, wenn er der Lehre zustimmt; er integriert sein Urteilsvermögen in zweitausend Jahre angesammelter Überlegungen von Geistern, die mindestens so ernsthaft sind wie er selbst. Dieses Erbe als Autoritarismus abzutun, hiesse, Demut mit Feigheit zu verwechseln. Der Mensch, der nichts glaubt, was er nicht von Grund auf gelernt hat, ist nicht frei. Er ist verarmt und vom gesamten intellektuellen Kapital seiner Spezies abgeschnitten.', + "Echte intellektuelle Reife besteht darin, zu wissen, wann man aufschieben und wann man widersprechen sollte - und darin, das Unterscheidungsvermögen zu kultivieren, das diesen Unterschied ausmacht. Die katholische Tradition arbeitet schon länger an dieser Unterscheidung, als es irgendeinen Rivalen gegeben hat. Sie ist nicht perfekt darin. Aber sie ist nicht die Karikatur einer roboterhaften Unterwerfung, die der Einwand verlangt.", + ], + cites: [ + "Letter to the Duke of Norfolk (1875), §5 (on conscience)", + "Grammar of Assent (1870), ch. 5", + "cf. Catechism of the Catholic Church §§1776–1782 (on conscience)", + ], + }, + catechism: { + lede: "Glaube und Vernunft sind die beiden Flügel, auf denen sich der menschliche Geist erhebt.", + body: [ + "Die katholische Kirche ist weit davon entfernt, den Gebrauch der Vernunft zu verurteilen, und vertritt die Ansicht, dass Glaube und Vernunft sich gegenseitig verstärken und nicht im Gegensatz zueinander stehen. Obwohl der Glaube über der Vernunft steht, kann es nie einen wirklichen Widerspruch zwischen Glaube und Vernunft geben, da es derselbe Gott ist, der die Geheimnisse offenbart und den Glauben einflösst, und der den menschlichen Verstand mit dem Licht der Vernunft ausgestattet hat. Derselbe Gott ist die Quelle beider, und die echten Schlussfolgerungen des einen können, wenn sie richtig zustande kommen, nicht im Widerspruch zu den echten Schlussfolgerungen des anderen stehen.", + "Die Kirche erlaubt also nicht nur die strenge Ausübung der Vernunft bei der Prüfung des Glaubens, sondern verlangt sie sogar. Die Motive der Glaubwürdigkeit - die rationalen Gründe dafür, den christlichen Anspruch ernst zu nehmen - sind der eigentliche Gegenstand der philosophischen Untersuchung. Die Vereinbarkeit der geoffenbarten Lehre mit den Erkenntnissen der Wissenschaft, der Geschichte und der Philosophie ist zu verteidigen, wo sie echt ist, und wo scheinbare Widersprüche auftreten, sind beide Seiten ehrlich zu untersuchen. Die methodische Forschung in allen Wissenszweigen kann, sofern sie auf wahrhaft wissenschaftliche Weise durchgeführt wird und sich nicht über moralische Gesetze hinwegsetzt, niemals mit dem Glauben in Konflikt geraten, weil die Dinge der Welt und die Dinge des Glaubens von demselben Gott herrühren.", + "Das Bild von der Religion als Unterdrücker der Forschung ist eine polemische Fiktion, die durch die Geschichte der katholischen Universitäten, der katholischen Wissenschaftler, der katholischen Philosophen und der kirchlichen Lehre über die Autonomie und Würde der Naturwissenschaften widerlegt wird. Der Einwand überlebt nur, weil er ignoriert, was die Kirche tatsächlich lehrt, und stattdessen eine Karikatur zeichnet, die leichter zu widerlegen ist.", + ], + cites: [ + "Catechism of the Catholic Church §§154–159", + "§159 quoting Gaudium et Spes §36", + "Fides et Ratio (John Paul II, 1998), opening line", + "Vatican I, Dei Filius, ch. 4", + ], + }, + lewis: { + lede: "Der freie Mensch und der gehorsame Mensch sind derselbe Mensch.", + body: [ + "Der Einwand geht von einem bestimmten Bild des autonomen Erwachsenen aus: derjenige, der jede Überzeugung aus seinen eigenen Ressourcen schöpft, sich keiner Autorität beugt und ererbte Weisheit standardmässig als verdächtig betrachtet. Dieses Bild ist neu und hat sich nicht bewährt. Der Mann, der wirklich versucht, auf diese Weise zu leben, erfindet entweder das Rad neu - indem er mühsam Schlussfolgerungen ableitet, die seine Vorfahren über Jahrtausende hinweg verfeinert haben - oder, was noch häufiger vorkommt, er übernimmt einfach die Vorurteile seiner unmittelbaren sozialen Klasse und schmeichelt sich damit, dass er sie durchschaut hat.", + "Es gibt eine echte Form der intellektuellen Unterwerfung, die mit dem Erwachsensein unvereinbar ist: die Übergabe des Urteils an eine Autorität, die es nicht verdient hat. Die Kirche hat dies von Zeit zu Zeit hervorgebracht, wie jede Institution in jedem Zeitalter. Aber es gibt auch eine Form der intellektuellen Rezeption - zu Füssen der Heiligen und der Ärzte zu sitzen, sie aufmerksam zu lesen, sich belehren zu lassen -, die nicht infantil ist, sondern die Voraussetzung für jedes echte Denken. Ich habe sie gelesen, ich habe mich mit ihr auseinandergesetzt, und schliesslich hat sie mich niedergerungen. So wächst der Verstand.", + "Die wirklich infantile Position ist diejenige, die besagt, dass ich nichts akzeptiere, was ich nicht persönlich aus ersten Prinzipien abgeleitet habe. Kein Erwachsener lebt in Bezug auf irgendetwas auf diese Weise. Die katholische Tradition ist ungewöhnlich, weil sie nicht erwartet, dass man eine ererbte Weisheit empfängt, sondern weil sie ehrlich ist, was diese Erwartung angeht. Auch der Atheist empfängt sein Erbe. Er nennt es einfach gesunden Menschenverstand.", + ], + cites: [ + "The Abolition of Man (1943)", + "The Discarded Image (1964)", + "Surprised by Joy (1955), ch. 14", + ], + }, + }, + }, +]; + +export const POS_VOICES_DE: Record = { + habermas: { + id: "habermas", + name: "Gary Habermas", + sub: "der Fall der Minimal-Faktoren", + color: "var(--nord11)", + colorHex: "#BF616A", + glyph: "✚", + font: '"Inter", Helvetica, Arial, sans-serif', + era: "b. 1950", + }, + polkinghorne: { + id: "polkinghorne", + name: "John Polkinghorne", + sub: "physiker-Priester", + color: "var(--nord7)", + colorHex: "#8FBCBB", + glyph: "△", + font: '"IBM Plex Mono", ui-monospace, Menlo, monospace', + era: "1930–2021", + }, + newman: { + id: "newman", + name: "John Henry Newman", + sub: "entwicklung der Doktrin", + color: "var(--nord15)", + colorHex: "#B48EAD", + glyph: "❦", + font: '"Cormorant Garamond", Georgia, serif', + era: "1801–1890", + }, + perennial: { + id: "perennial", + name: "Der Perennialist", + sub: "Guénon, Evola, Schuon", + color: "var(--nord3)", + colorHex: "#4C566A", + glyph: "✶", + font: '"Cormorant Garamond", Georgia, serif', + era: "—", + }, + hart: { + id: "hart", + name: "David Bentley Hart", + sub: "klassischer Theist", + color: "var(--nord10)", + colorHex: "#5E81AC", + glyph: "Θ", + font: '"Cormorant Garamond", Georgia, serif', + era: "b. 1965", + }, + lewis: { + id: "lewis", + name: "C.S. Lewis", + sub: "literarischer Apologet", + color: "var(--nord8)", + colorHex: "#88C0D0", + glyph: "❧", + font: '"Spectral", "Lora", Georgia, serif', + era: "1898–1963", + }, + wright: { + id: "wright", + name: "N.T. Wright", + sub: "Historiker der Auferstehung", + color: "var(--nord12)", + colorHex: "#D08770", + glyph: "✠", + font: '"Inter", Helvetica, Arial, sans-serif', + era: "b. 1948", + }, + hahn: { + id: "hahn", + name: "Scott Hahn", + sub: "bundessprachenschrift", + color: "var(--nord13)", + colorHex: "#EBCB8B", + glyph: "✡", + font: '"Spectral", "Lora", Georgia, serif', + era: "b. 1957", + }, + plantinga: { + id: "plantinga", + name: "Alvin Plantinga", + sub: "rechtfertigung & richtige Grundüberzeugung", + color: "var(--nord14)", + colorHex: "#A3BE8C", + glyph: "∴", + font: '"JetBrains Mono", ui-monospace, Menlo, monospace', + era: "b. 1932", + }, + eliade: { + id: "eliade", + name: "Mircea Eliade", + sub: "das Heilige & das Profane", + color: "var(--nord9)", + colorHex: "#81A1C1", + glyph: "◯", + font: '"Cormorant Garamond", Georgia, serif', + era: "1907–1986", + }, + feser: { + id: "feser", + name: "Edward Feser", + sub: "thomistischer Philosoph", + color: "var(--nord1)", + colorHex: "#3B4252", + glyph: "∎", + font: '"IBM Plex Mono", ui-monospace, Menlo, monospace', + era: "geb. 1968", + }, + chesterton: { + id: "chesterton", + name: "G.K. Chesterton", + sub: "Paradox & gesunder Menschenverstand", + color: "var(--nord12)", + colorHex: "#D08770", + glyph: "◊", + font: '"Spectral", "Lora", Georgia, serif', + era: "1874–1936", + }, + guenon: { + id: "guenon", + name: "René Guénon", + sub: "Metaphysik der Tradition", + color: "var(--nord2)", + colorHex: "#434C5E", + glyph: "☩", + font: '"Cormorant Garamond", Georgia, serif', + era: "1886–1951", + }, +}; + +export const POS_LAYERS_DE: PosLayer[] = [ + { + id: "natural", + title: "Das Übernatürliche ist real", + sub: "Ebene 1 - die Welt ist mehr als Materie", + }, + { + id: "theism", + title: "Es gibt nur einen Gott", + sub: "Ebene 2 - persönlich, notwendig, gut", + }, + { + id: "christianity", + title: "Das Christentum ist diese Offenbarung", + sub: "Ebene 3 - die besondere Forderung", + }, +]; + +export const POS_ARGUMENTS_DE: PosArgument[] = [ + { + id: "perennial-mystics", + layer: "natural", + n: 1, + title: "Mystiker und Mythen konvergieren über grosse Zeiträume", + claim: + "Zivilisationen, durch Ozeane und Zehntausende von Jahren voneinander getrennt, gelangen unabhängig voneinander zu denselben religiösen Strukturen: ein heiliges Zentrum, ein urzeitlicher Fall, eine kosmische Flut, eine absteigende Folge von Weltzeitaltern und mystische Berichte von einer Wirklichkeit hinter den Erscheinungen. Die unabhängige Erfindung einer identischen Illusion ist eine schlechtere Hypothese als die, dass sie etwas Wirkliches berühren.", + thesis: + "Der Naturalismus sagt voraus, dass Religion ein lokales kognitives Artefakt sein sollte — je nach Umgebung verschieden, unvorhersehbar über die Jahrtausende driftend, ohne konvergente Struktur. Der ethnographische Befund zeigt das Gegenteil: stabile, wiederkehrende Muster über Kulturen hinweg, die für Zehntausende von Jahren keine Kontaktmöglichkeit hatten. Die sauberste Erklärung ist, dass Menschen aller Kulturen auf dieselbe transzendente Wirklichkeit geantwortet haben, in unterschiedlicher Klarheit. Die moderne westliche Verweigerung dieser Wirklichkeit ist die erklärungsbedürftige Anomalie — nicht das universale menschliche Bekenntnis zu ihr.", + strength: 3, + note: "Eher kumulativ als eigenständig — der Schluss von Konvergenz auf Transzendenz hat Freiheitsgrade. Stärker, wenn er zusammen mit der religiösen Erfahrung, dem Bewusstsein und dem moralischen Gesetz gelesen wird.", + scripture: { + text: "Wo es keine Vision gibt, geht das Volk zugrunde.", + ref: "Proverbs 29:18", + }, + voices: { + chesterton: { + lede: "Der universelle religiöse Instinkt ist das Datum, nicht die Pathologie.", + body: [ + "Wenn tausend Kulturen, durch Ozeane und Zeitalter voneinander getrennt, zu heiligen Bergen und heiligen Bäumen gelangen, zu Flut- und Fallgeschichten, zu Göttern, die herabsteigen, und Helden, die aufsteigen — die modernistische Antwort lautet, dies sei das Residuum primitiver Kognition. Aber primitive Kognition erzeugt keine konvergenten Ergebnisse. Sie erzeugt Rauschen. Die Konvergenz ist das Signal.", + "Die Traditionen der australischen Ureinwohner entwickelten sich vierzigtausend Jahre und länger in kognitiver Isolation von der eurasischen Religion. Die präkolumbianischen amerikanischen Zivilisationen hatten mindestens fünfzehntausend Jahre keinen Kontakt zur Alten Welt. Die polynesische Expansion, die Bantu-Wanderungen, der Norden der Inuit — jede entfaltete sich über Zeiträume, welche die gesamte Geschichte der überlieferten Religion in den Schatten stellen. Und doch finden wir in allen dieselbe Architektur: einen Himmelsvater und eine Erdmutter, ein heiliges Zentrum, an dem Himmel und Erde sich berühren, eine urzeitliche Einheit, aus der die Welt herausgebrochen wurde, ein kommendes Gericht, eine moralische Ordnung, die in die Struktur der Dinge eingeschrieben ist.", + "Der Naturalismus verlangt von uns zu glauben, dass derselbe Traum unabhängig von jedem isolierten Zweig der Menschheit über Zehntausende von Jahren geträumt worden sei. Das ist keine Sparsamkeit. Das ist Verzweiflung. Die einfachere Erklärung ist, dass sie alle dasselbe gesehen haben, durch unterschiedliche kulturelle Linsen und in unterschiedlichen Graden von Klarheit, und das, was sie sahen, berichtet haben.", + ], + cites: ["The Everlasting Man (1925)", "Orthodoxy (1908)"], + }, + eliade: { + lede: "Die konvergenten Strukturen des heiligen Raumes und der heiligen Zeit sind zu spezifisch für Zufall.", + body: [ + "Über Kulturen hinweg, die einander nie begegnet sind, kehrt dieselbe Architektur des Heiligen mit verblüffender Präzision wieder. Ein Zentrum, an dem die Welt begann und an dem die Welten sich verbinden. Eine axis mundi — ein kosmischer Berg, Baum oder eine Säule —, die Himmel, Erde und Unterwelt verbindet. Eine Urzeit, illo tempore, deren Wiederholung das Ritual sucht. Ein Verfall vom Ursprung, der periodische Erneuerung erfordert.", + "Die Flut ist das auffälligste Beispiel. Die mesopotamische (Gilgamesch, Atrahasis), die hebräische (Genesis), die griechische (Deukalion), die hinduistische (Manu), die chinesische (Gun-Yu), die aztekische, die Maya-, die Inka-, die Hopi-, die australisch-aboriginale und die polynesische Tradition bewahren alle eine Fluterzählung mit überlappender Struktur: göttliches Gericht, ein gerechter Überlebender, die Bewahrung des Samens, die Wiederherstellung der Welt. Die geographische Verbreitung umfasst jeden bewohnten Kontinent. Kein Diffusionsmodell wird dem gerecht.", + "Die Lehre von den absteigenden Weltzeitaltern ist fast ebenso verbreitet. Hesiods fünf Zeitalter steigen vom Gold zum Eisen herab. Der hinduistische Yuga-Zyklus geht vom Satya- zum Kali-Yuga, dem gegenwärtigen Zeitalter. Daniels Standbild geht vom Gold zu Eisen und Ton. Zoroastrische und nordische Traditionen bewahren ähnliche Abstiegsfolgen. Das sind keine zufälligen mythopoetischen Muster. Es sind strukturell identische Antworten auf eine gemeinsame Intuition: dass wir flussabwärts eines besseren Anfangs leben.", + "Das sind keine parallelen Erfindungen des Trostes. Es sind parallele Reaktionen auf eine bereits bestehende Struktur. Die Phänomenologie ist das Datum. Der moderne Mensch ist der erste, der versucht hat, in profaner Zeit und profanem Raum zu leben, und das Ergebnis ist ein erkennbares Unwohlsein: Anomie, der Kult des Neuen, die verzweifelte Suche nach Festen, die jene Festtage ersetzen sollen, die einst wirkliche Arbeit verrichteten.", + ], + cites: [ + "The Sacred and the Profane (1957)", + "The Myth of the Eternal Return (1949)", + "A History of Religious Ideas (1976–85)", + ], + }, + guenon: { + lede: "Unter den exoterischen Formen liegt eine metaphysische Lehre — und die Samen des Wortes.", + body: [ + "Unter den symbolischen Sprachen jeder traditionellen Zivilisation liegt eine immerwährende Weisheit: dieselbe metaphysische Lehre vom Einen, vom Zentrum, von der axis mundi, von der Seinshierarchie, die vom Unbedingten zum Erscheinenden hinabsteigt. Die vedischen Rishis, die Sufi-Meister, die christlichen Kontemplativen, die daoistischen Weisen, Plotin, die Kabbalisten, die indianischen Visionäre — durch Ozeane und Jahrhunderte getrennt, beschreiben sie sich überschneidende Erfahrungen und sich überschneidende Lehren.", + "Die moderne Welt ist eine Anomalie, weil sie den Kontakt zu dieser transzendenten Dimension verloren hat. Ihre Abwesenheit als menschlichen Normalfall zu bezeichnen, ist provinziell. Der Normalfall ist genau das, was die Rishis, die Sufi-Schaykhs und die Wüstenväter berichtet haben. Die Moderne ist nicht endlich die nüchterne Sicht; sie ist die erste Zivilisation, die auf einer rein horizontalen Sichtweise besteht.", + "Ein Christ muss nicht jeden metaphysischen Anspruch der Perennialisten unterschreiben, um zu erkennen, was ihre Daten zeigen. Justin der Märtyrer nannte im zweiten Jahrhundert diese verstreuten Andeutungen den logos spermatikos — die Samen des Wortes, gesät von demselben Logos, der in Christus Fleisch geworden ist. Dass jede Kultur nach ihnen gegriffen hat, ist Beleg dafür, dass sie wirklich sind. Dass Christus ihre Erfüllung ist, ist die weitere Behauptung, die das Argument vervollständigt.", + ], + cites: [ + "Guénon, The Reign of Quantity (1945)", + "Schuon, The Transcendent Unity of Religions (1948)", + "Huston Smith, Forgotten Truth (1976)", + "Justin Martyr, Second Apology, ch. 13", + ], + }, + }, + related: [ + "religious-experience", + "consciousness", + "beauty", + "moral-law", + "intelligibility", + ], + }, + { + id: "religious-experience", + layer: "natural", + n: 2, + title: "Religiöse Erfahrungen sind weit verbreitet und verändern das Leben", + claim: + "Hunderte von Millionen normaler Menschen berichten von direkten, verwandelnden Begegnungen mit Gott - quer durch alle Kulturen, Bildungsschichten und skeptischen Veranlagungen.", + thesis: + "Das sind nicht alles Wahnvorstellungen. Die standardmässige erkenntnistheoretische Haltung gegenüber aufrichtigen Aussagen aus erster Hand, die sich in grossem Umfang wiederholen, ist vorläufiger Glaube. Wir verwenden denselben Standard für Liebe, Schönheit und moralische Empörung. Religiöse Erfahrungen allein auszunehmen, ist eine Sonderbehandlung.", + strength: 3, + scripture: { + text: "Schmeckt und seht, dass der Herr gut ist.", + ref: "Psalm 34:8", + }, + voices: { + plantinga: { + lede: "Der Glaube an Gott ist wirklich grundlegend.", + body: [ + "Der Glaube an Gott, wenn er durch den sensus divinitatis hervorgerufen wird, der in einer angemessenen Umgebung korrekt funktioniert, ist auf die gleiche Weise gerechtfertigt wie der Glaube an Wahrnehmungen oder Erinnerungen. Er muss nicht aus früheren, sichereren Prämissen abgeleitet werden.", + "Die Forderung, dass der Gläubige zunächst die Existenz Gottes anhand neutraler Prämissen beweisen muss, schmuggelt den Evidentialismus ein - eine Position, die ihren eigenen Test nicht besteht.", + "Hunderte von Millionen von Zeugenaussagen sind kein Lärm. Sie sind das normale Funktionieren der von Gott geschaffenen kognitiven Fähigkeit.", + ], + cites: ["Warranted Christian Belief (2000)"], + }, + hart: { + lede: "Die Begegnung findet mit dem Sein statt, nicht mit einem Wesen.", + body: [ + "Was die grossen Traditionen beschreiben, ist kein numinoses Gasloch im Inneren des Universums. Es ist das Erfassen des Grundes des Seins - des Einen, in dem wir leben und uns bewegen.", + "Deshalb ist die Erfahrung so resistent gegenüber der Neurowissenschaft: Gehirnzustände korrelieren mit ihr, so wie Gehirnzustände mit dem Sehen eines Baumes korrelieren, aber die Korrelation erschöpft das Gesehene nicht.", + "Die atheistische Neurotheologie sagt: \"Wir haben den Gotteskreislauf gefunden Die Traditionen antworten: 'Ja - das ist die Orgel; die Musik ist woanders.'", + ], + cites: ["The Experience of God (2013)"], + }, + lewis: { + lede: "Freude ist die ernste Angelegenheit des Himmels.", + body: [ + "Die meisten Menschen, wenn sie wirklich gelernt hätten, in ihr eigenes Herz zu schauen, wüssten, dass sie sich etwas wünschen, was in dieser Welt nicht zu haben ist, und zwar mit Nachdruck.", + "Religiöse Erfahrung ist der Moment, in dem die Sehnsucht kurzzeitig gestillt wird, oder angesprochen wird, oder auch nur umgedreht und konfrontiert wird.", + "Die Veränderung, die sie bewirkt, ist der Test. An ihren Früchten werdet ihr sie erkennen.", + ], + cites: ["Surprised by Joy (1955)"], + }, + }, + related: ["perennial-mystics", "consciousness", "transformation"], + }, + { + id: "consciousness", + layer: "natural", + n: 3, + title: "Das Bewusstsein widersteht der naturalistischen Reduktion", + claim: + "Das schwierige Problem des Bewusstseins - warum es etwas gibt, das so ist, wie Sie zu sein - findet in einer rein physikalischen Ontologie keinen Halt, obwohl wir es ein Jahrhundert lang versucht haben.", + thesis: + "Der eliminative Materialismus verlangt von Ihnen zu leugnen, dass Sie ein Bewusstsein haben. Der Eigenschaftsdualismus lässt das Übernatürliche stillschweigend unter einem anderen Namen zu. Die sauberste Hypothese ist, dass der Geist grundlegend und nicht abgeleitet ist - und dass wir nach dem Bild eines Geistes geschaffen sind.", + strength: 4, + scripture: { + text: "Und der Geist Gottes bewegte sich auf der Wasseroberfläche.", + ref: "Genesis 1:2", + }, + voices: { + hart: { + lede: "Der Naturalismus kann nicht die einfachste Tatsache über Sie erklären.", + body: [ + "Es gibt keinen plausiblen Mechanismus, durch den die Anordnung von unbewussten Teilchen eine Perspektive erzeugt. Wenn Sie mehr Partikel hinzufügen oder sie geschickter anordnen, überbrückt das die Lücke nicht. Die Lücke ist kategorisch.", + "Entweder ist das Bewusstsein eine Illusion (in diesem Fall ist die Illusion des Bewusstseins selbst bewusst - ein Widerspruch), oder die Materie wurde fälschlicherweise als träge beschrieben (Panpsychismus, das ist das arme Verwandte des Theismus), oder der Geist ist vorrangig.", + "Die klassische Tradition hat immer das Dritte gesagt. Wir kehren nun aus der anderen Richtung zurück.", + ], + cites: ["The Experience of God (2013), ch. 4"], + }, + polkinghorne: { + lede: "Information ist grundlegender als Materie.", + body: [ + "Die Quantenmessung, die Struktur der physikalischen Gesetze und die eigentliche Intelligenz der Natur drängen die Physik zu einem Bild, in dem Information - Muster, Bedeutung, formale Ursache - irreduzibel ist.", + "Ein Universum, dessen tiefste Schicht aus Informationen besteht, ist ein Universum, dessen tiefste Schicht geistig ist. Dies ist keine verdeckte Theologie. Es ist das, worauf die Gleichungen hindeuten.", + 'Wenn die Frage "Warum diese Gesetze?" schliesslich gestellt wird, lautet die Antwort, die am besten funktioniert: Ein Geist hat sie gewählt.', + ], + cites: ["Belief in God in an Age of Science (1998)"], + }, + plantinga: { + lede: "Der Naturalismus ist selbstzerstörerisch.", + body: [ + "Wenn sich unsere kognitiven Fähigkeiten nur zum Überleben entwickelt haben, haben wir keinen Grund, ihnen bei Fragen zu vertrauen, die nicht überlebensrelevant sind - einschliesslich der Frage, ob der Naturalismus wahr ist.", + "Der Theismus gibt uns einen Grund, der Vernunft zu vertrauen: Gott hat den Verstand geschaffen, um zu wissen. Der Naturalismus sägt den Ast ab, auf dem er sitzt.", + "Die Verbindung von Naturalismus und Evolution ist daher nicht nur unbewiesen, sondern auch rational instabil.", + ], + cites: ["Where the Conflict Really Lies (2011), ch. 10"], + }, + }, + related: ["fine-tuning", "moral-law", "perennial-mystics"], + }, + { + id: "contingency", + layer: "natural", + n: 4, + title: "Es gibt etwas und nicht nichts", + claim: + "Jede Tatsache der physischen Welt ist kontingent — sie hätte auch anders sein können. Kontingente Dinge erfordern eine Erklärung. Die Kette der Erklärungen kann nicht endlos zurückgehen, und sie kann sich nicht selbst begründen. Es muss etwas existieren, dessen Natur es ist zu existieren.", + thesis: + "Die Frage 'Warum gibt es etwas und nicht nichts?' ist nicht kindisch; sie ist die erwachsenste Frage überhaupt. Sie lässt sich nicht durch Verweis auf die Physik abtun, denn jede physikalische Antwort setzt genau das voraus, wonach gefragt wird — eine kontingente Wirklichkeit, deren Existenz sich nicht selbst erklärt. Die einzige hinreichende Antwort ist ein Wesen, dessen Existenz nicht kontingent ist: notwendig, selbsterklärend, reiner Akt, ipsum esse subsistens. Das ist nicht der 'Lückenbüsser-Gott'. Es ist das, worauf jede ernste metaphysische Tradition — die vedantische, die neuplatonische, die thomistische, die avicennische — auf unabhängigen Wegen konvergiert ist.", + strength: 5, + scripture: { + text: "ICH BIN, WAS ICH BIN.", + ref: "Exodus 3:14", + }, + voices: { + hart: { + lede: "Gott ist kein Ding im Universum. Gott ist die Antwort auf die Frage, warum es ein Universum gibt.", + body: [ + "Jede philosophische Tradition, die ernsthaft über das Sein nachgedacht hat — Vedanta, Neuplatonismus, Aquin, Ibn Sina, Maimonides — ist zu derselben Unterscheidung gelangt: kontingentes Sein hängt ab, notwendiges Sein nicht. Letzteres ist das, was das Wort 'Gott' in ernsthafter Theologie immer bezeichnet hat. Keine mächtige Entität im Kosmos, sondern der eigentliche Grund dafür, dass es überhaupt einen Kosmos gibt.", + "Der moderne Atheismus, indem er Gott als eine weitere Entität unter Entitäten behandelt — ein himmlisches Objekt, das neben Galaxien und Quarks existieren mag oder nicht —, argumentiert gegen ein Götzenbild, das er selbst geschaffen hat. Der klassische Gott ist kein Kandidat für die Inventarliste. Zu fragen, ob Gott in diesem Sinne existiert, ist, als fragte man, ob die Existenz existiert.", + "Wenn Hawking schreibt, das Universum könne sich 'aus dem Nichts selbst erschaffen' aufgrund der Gesetze der Physik, hat er das Thema gewechselt. Gesetze der Physik sind nicht nichts. Ein Quantenvakuum ist nicht nichts. Nichts ist die Abwesenheit von allem — auch von Gesetzen, Feldern, Potentialitäten und Möglichkeiten. Die klassische Frage ist, warum es überhaupt irgendetwas davon gibt.", + "Die einzige Antwort, die sich nicht in derselben Zwangslage befindet wie die Frage, ist: ein Wesen, dessen Wesenheit es ist zu existieren. Nicht ein Ding, das zufällig existiert, sondern die Existenz selbst, an der alle kontingenten Dinge teilhaben. Das ist es, was Aquin mit ipsum esse subsistens meinte — das subsistierende Sein selbst.", + ], + cites: [ + "The Experience of God (2013)", + 'Hart, "God, Gods, and Fairies" (2013)', + ], + }, + feser: { + lede: "Das Argument geht nicht von zeitlichen Anfängen aus, sondern von gegenwärtiger Abhängigkeit.", + body: [ + "Die populäre Karikatur des kosmologischen Arguments — 'alles hat eine Ursache, also hat das Universum eine Ursache, also Gott' — ist nicht das Argument, das ernsthafte Theisten je vorgetragen haben. Sie verfehlt die entscheidende Unterscheidung zwischen zwei Arten von Kausalreihen.", + "Eine Reihe, die per accidens (zufällig) geordnet ist, ist eine, in der frühere Glieder für die Existenz späterer Glieder nicht mehr erforderlich sind. Ihr Grossvater zeugte Ihren Vater, der Sie zeugte; Ihr Grossvater kann sterben, und Sie existieren weiter. Eine solche Reihe kann sich im Prinzip unbegrenzt rückwärts erstrecken.", + "Eine Reihe, die per se (wesentlich) geordnet ist, ist eine, in der jedes Glied hier und jetzt von der gleichzeitigen Tätigkeit dessen abhängt, was ihm voraufgeht. Die Tasse ruht auf dem Tisch, der auf dem Boden ruht, der auf den Balken ruht, die auf dem Fundament ruhen. Entfernt man irgendein Glied, stürzt das Ganze sofort ein. Eine solche Reihe kann nicht ins Unendliche zurückgehen — es muss ein erstes Glied geben, das selbst von nichts anderem getragen wird und die ganze Kette aus eigenem Akt im Sein hält.", + "Das Kontingenzargument ist von der zweiten Art. Genau jetzt, in diesem Augenblick, wird jedes kontingente Ding — einschliesslich Ihrer selbst, dieses Satzes, des Bildschirms, auf dem Sie ihn lesen, der Gesetze der Physik, die den Bildschirm beherrschen — von etwas Fundamentalerem im Sein gehalten. Verfolgt man diese Abhängigkeitsrelation, kann sie nicht in einem anderen kontingenten Wesen enden, wie weit oder alt es auch sei. Sie muss in etwas enden, dessen Existenz nicht von etwas anderem abgeleitet ist: reine Aktualität, ohne unverwirklichtes Potential, von nichts abhängig.", + "Das ist kein Lückenbüsser-Gott, der sich mit dem Fortschritt der Physik zurückzieht. Es ist das, was die Physik überhaupt voraussetzen muss, um Fortschritte zu machen. Je mehr wir über die kontingente Struktur des Kosmos erfahren, desto schärfer wird die Frage.", + ], + cites: [ + "Feser, Five Proofs of the Existence of God (2017)", + "Feser, Aquinas (2009)", + "Pruss, The Principle of Sufficient Reason (2006)", + ], + }, + newman: { + lede: "Das Gewissen der Frage zeugt von der Antwort.", + body: [ + "Dass ein Kind fragen kann 'Warum gibt es überhaupt etwas?' und eine wirkliche Antwort erwartet, setzt voraus, dass die Wirklichkeit von der Art ist, dass sie Gründe hat — dass der Satz vom zureichenden Grund keine engstirnige menschliche Voreingenommenheit ist, sondern ein Zug des Seins selbst.", + "Diese Voraussetzung lässt sich nicht aus dem Inneren des Universums ableiten. Der Kosmos zeigt seinen eigenen Grund nicht; die Physik beschreibt die Muster innerhalb des Seins, erklärt aber niemals das Sein. Doch die Frage wird nicht zum Schweigen gebracht, indem man 'kein Grund' sagt. Zu sagen 'es gibt keinen Grund' ist selbst eine Antwort auf die Frage — und eine schlechtere als die Alternative, weil sie eben jene Verständlichkeit aufgibt, welche die Frage überhaupt erst stellbar machte.", + "Glaube im eigentlichen Sinn ist kein Sprung wider die Vernunft. Er ist die Antwort eines Geistes, der seine eigenen Fragen ernst nimmt, der der Konvergenz der Wahrscheinlichkeiten folgt — Kontingenz, Feinabstimmung, Verständlichkeit, moralisches Gesetz, Bewusstsein, religiöse Erfahrung —, bis Zustimmung nicht mehr wahlweise ist.", + "Keine einzelne Beweislinie erzwingt die Schlussfolgerung. Zusammen tun sie es. So funktioniert alles ernsthafte Wissen: nicht durch deduktiven Beweis aus unbezweifelbaren Axiomen, sondern durch das kumulative Gewicht der Anhaltspunkte, bis der Geist, recht verfasst, erkennt, was der Fall ist.", + ], + cites: [ + "A Grammar of Assent (1870)", + "The Idea of a University (1852)", + ], + }, + }, + related: ["fine-tuning", "consciousness", "moral-law", "intelligibility"], + }, + { + id: "fine-tuning", + layer: "theism", + n: 5, + title: "Die Konstanten der Physik sind exquisit aufeinander abgestimmt", + claim: + "Ungefähr 30 dimensionslose Konstanten müssen in absurd engen Bereichen liegen, damit es überhaupt eine komplexe Chemie, stabile Materie und Beobachter gibt.", + thesis: + "Drei Erklärungen sind denkbar: Zufall (eine verschwindend geringe Wahrscheinlichkeit, die uns nicht verwirren darf), ein unbeobachtbares Multiversum, das ~10^500 Universen voraussetzt, um eines zu erklären, oder Design. Der Entwurf ist bei weitem der sauberste.", + strength: 5, + scripture: { + text: "Der Himmel verkündet die Herrlichkeit Gottes, und das Firmament zeigt sein Werk.", + ref: "Psalm 19:1", + }, + voices: { + polkinghorne: { + lede: "Die Zahlen sind zu gut, um Zufall zu sein.", + body: [ + "Die kosmologische Konstante stimmt mit dem, was das Leben erfordert, zu einem Teil in 10^120 überein. Das Verhältnis zwischen der starken und der elektromagnetischen Kraft, die Protonen-zu-Elektronen-Masse, die Entropie des frühen Universums: alles muss gleichzeitig durch eine Nadel gezogen werden.", + "Der Theismus sagt dies voraus. Der Naturalismus tut das nicht. Das Multiversum ist der Versuch des Naturalismus, dies vorherzusagen, indem er genügend Versuche postuliert, um die grosse Wahrscheinlichkeit zu erreichen. Der Preis dafür ist metaphysisch: eine Unendlichkeit von unbeobachtbaren Welten.", + "Zwischen zwei Erklärungen, die gleichermassen mit den Daten vereinbar sind, wird die einfachere bevorzugt. Ein Gott oder 10^500 Universen - die Wahl ist nicht schwer.", + ], + cites: ["The Faith of a Physicist (1994)"], + }, + plantinga: { + lede: "Das Argument der Feinabstimmung ist Bayesianisch und entscheidend.", + body: [ + "P(beobachtete Stimmung | Theismus) ist hoch. P(beobachtete Stimmung | Naturalismus) ist, wie die Physiker selbst zugeben, verschwindend gering. Nach dem Bayes'schen Theorem ist die nachträgliche Wahrscheinlichkeit des Theismus angesichts der Beweise entsprechend hoch.", + "Die Widerlegung des Multiversums erfordert: (a) das Multiversum existiert, (b) es hat das richtige Mass, um unser Universum wahrscheinlich zu machen, (c) wir können trotz der Probleme des Boltzmann-Gehirns Schlussfolgerungen in unserem eigenen Universum ziehen. Jedes dieser Argumente ist anfechtbar.", + "Der Theismus löst alle drei Probleme auf einmal.", + ], + cites: ["Where the Conflict Really Lies (2011)"], + }, + hart: { + lede: "Es ist nicht verwunderlich, dass das Sein gestaltet aussieht. Das ist es auch.", + body: [ + "Der klassische Theismus war nie eine rivalisierende Hypothese zur Physik. Er war die Erklärung dafür, warum es Physik gibt - warum die Realität verständlich, geordnet, mathematisch und für den Verstand fassbar ist.", + "Die Daten der Feinabstimmung bestätigen, was schon immer behauptet wurde: dass das Sein kommunikativ ist, dass der Kosmos die Art von Ding ist, dessen Existenz gemeint ist.", + "Wir sind keine Anomalien. Wir sind die Augen, auf die das Universum abgestimmt wurde.", + ], + cites: ["The Experience of God (2013)"], + }, + }, + related: ["contingency", "consciousness", "beauty"], + }, + { + id: "moral-law", + layer: "theism", + n: 6, + title: + "Echte moralische Verpflichtungen erfordern einen moralischen Gesetzgeber", + claim: + "Wir erfinden nicht, dass es falsch ist, Kinder zum Spass zu quälen. Wir entdecken es. Moralische Fakten, die jeden rationalen Akteur binden, erfordern einen Grund, der selbst rational und verbindlich ist.", + thesis: + "Die naturalistische Meta-Ethik leugnet entweder die Realität moralischer Tatsachen (und kann dann die Empörung nicht erklären) oder schmuggelt eine nicht-natürliche Quelle ein (und ist Theismus unter einem anderen Namen). Das Christentum hat immer gesagt: Das Moralgesetz ist der Charakter Gottes, der dem Gewissen eingeprägt ist.", + strength: 4, + scripture: { + text: "Denn wenn die Heiden, die das Gesetz nicht haben, von Natur aus das tun, was im Gesetz steht, so sind diese, die das Gesetz nicht haben, sich selbst ein Gesetz.", + ref: "Romans 2:14", + }, + voices: { + lewis: { + lede: "Das Tao ist nicht erfunden. Es ist anerkannt.", + body: [ + "Jede Kultur, auch die voneinander isolierten, verurteilt Feigheit, Verrat und Grausamkeit gegenüber den Schwachen. Sie unterscheiden sich in der Frage, wen sie zu ihren Verwandten zählen; sie sind sich einig über die Form des Gesetzes.", + "Wenn Sie sagen 'das ist nicht fair', berufen Sie sich auf eine Norm, die Sie nicht erfunden haben und die Sie bindet, ob Sie wollen oder nicht. Diese Norm ist der Fingerabdruck des Gesetzgebers.", + "Wenn es kein wirkliches Recht gibt, ist Ihre Empörung ein chemisches Ereignis. Wenn es eines gibt, haben Sie bereits mehr zugegeben, als der Naturalismus bezahlen kann.", + ], + cites: ["The Abolition of Man (1943)", "Mere Christianity, Bk. I"], + }, + hart: { + lede: "Das Gute ist nicht optional. Es ist die Struktur des Seins.", + body: [ + "Die klassische Metaphysik identifizierte Sein, Wahrheit und Güte als wandelbar - verschiedene Aspekte derselben grundlegenden Realität. Zu wissen, was etwas ist, bedeutet zu wissen, wozu es dient, und wozu es dient, ist das Gute.", + "Moderne Versuche, ein 'Sollen' aus einem wertneutralen 'Ist' abzuleiten, scheitern, weil das 'Ist' bereits ausgehöhlt wurde. Stellen Sie das klassische 'Ist' wieder her und das 'Sollen' kehrt mit ihm zurück.", + "Gott ist kein moralischer Gesetzgeber in dem Sinne, dass er willkürliche Befehle erteilt. Gott ist das Gute selbst, an dem alles, was wir über das Gute sagen, teilhat.", + ], + cites: ["The Beauty of the Infinite (2003)"], + }, + plantinga: { + lede: "Moralisches Wissen ist wirklich grundlegend.", + body: [ + "Wir wissen, dass grundlose Grausamkeit falsch ist, und zwar mit grösserer Sicherheit als wir die Prämissen jeder meta-ethischen Theorie kennen. Jede Theorie, die damit endet, dies zu leugnen, wird ad absurdum geführt.", + "Der Theismus sagt moralisches Wissen voraus: Gott hat uns so geschaffen, dass wir sein Gesetz begreifen können. Der Naturalismus sagt eine Mischung aus moralischem Nihilismus und adaptiver Illusion voraus.", + "Wenn die Daten und die Vorhersage nicht übereinstimmen, hat die Theorie verloren.", + ], + cites: ["Warrant and Proper Function (1993)"], + }, + }, + related: ["consciousness", "beauty", "transformation"], + }, + { + id: "beauty", + layer: "theism", + n: 7, + title: "Schönheit ist sinnvoll, nicht dekorativ", + claim: + "Dasselbe Universum, das Gleichungen hervorgebracht hat, hat auch Bach, Chartres, die Iguazu-Wasserfälle und ein Gesicht hervorgebracht, das Sie nicht mehr aus den Augen lassen können. Schönheit ist kein Überlebenstrick. Sie ist ein Hinweis.", + thesis: + "Wäre der Kosmos eine blosse Materie, würden wir Gleichgültigkeit gegenüber seinen Arrangements erwarten. Stattdessen stossen wir auf eine Hierarchie der Werte, in der ein Sonnenuntergang mehr ist als warme Photonen und eine Kathedrale mehr als aufgeschichtete Steine. Schönheit belohnt die Aufmerksamkeit mit Bedeutung. Diese Tatsache sind Daten.", + strength: 3, + scripture: { + text: "Er hat jedes Ding zu seiner Zeit schön gemacht.", + ref: "Ecclesiastes 3:11", + }, + voices: { + hart: { + lede: "Schönheit ist die Form, die das Sein annimmt, wenn es sich zeigt.", + body: [ + "Die Transzendenzen - das Sein, die Wahrheit, das Gute, die Schönheit - sind die Art und Weise, wie sich die Realität einem Geist offenbart, der sie empfangen kann. Die Objektivität der Schönheit zu leugnen, bedeutet zu leugnen, dass die Realität ein Gesicht hat.", + "Eine naturalistische Darstellung der Schönheit als 'Mustererkennung + Belohnung' erfasst die Reaktion, ohne das Objekt zu berühren. Das Objekt - die eigentliche Pracht einer Fuge oder einer Galaxie - ist genau das, was vermisst wird.", + "Wir können die Materie nicht anbeten. Wir können nicht anders, als die Schönheit zu verehren. Die Asymmetrie ist ein Anhaltspunkt.", + ], + cites: ["The Beauty of the Infinite (2003)"], + }, + lewis: { + lede: "Wir wollen nicht die Schönheit. Wir wollen die Quelle.", + body: [ + "Die Bücher oder die Musik, in denen wir die Schönheit zu finden glaubten, verraten uns, wenn wir ihnen vertrauen. Sie war nicht in ihnen, sie kam nur durch sie, und was durch sie kam, war Sehnsucht.", + "Die Sehnsucht gilt unserem eigenen, fernen Land, das wir nie besucht haben. Schönheit ist das Gerücht davon.", + "Wenn wir einen Wunsch haben, den nichts auf dieser Welt befriedigen kann, ist die wahrscheinlichste Erklärung, dass wir für einen anderen geschaffen wurden.", + ], + cites: ["The Weight of Glory (1941)"], + }, + eliade: { + lede: "Schönheit ist das Heilige, das durchbricht.", + body: [ + "Was archaische Gesellschaften als Hierophanie erkannten - das Heilige, das sich in einem bestimmten Baum, Stein oder Ort zeigt - erkennen moderne Menschen als die Erfahrung von Schönheit, die sie auf der Strasse anhält.", + "Es ist dasselbe Phänomen. Nur das Vokabular ist verarmt.", + "Die Anziehungskraft der Schönheit ist der Restreflex der Seele, die weiss, woher sie kommt.", + ], + cites: ["The Sacred and the Profane (1957)"], + }, + }, + related: ["religious-experience", "moral-law", "transformation"], + }, + { + id: "intelligibility", + layer: "theism", + n: 8, + title: "Das Universum ist für den Verstand verständlich", + claim: + "Die Mathematik beschreibt die physikalische Realität mit unheimlicher Präzision. Reines Denken, das im Voraus gemacht wird, sagt voraus, was das Experiment finden wird.", + thesis: + "Wigner nannte dies 'unvernünftig' Im Naturalismus ist es das. Im Theismus ist es genau das, was Sie erwarten würden: Ein Geist hat die Welt erschaffen und den Verstand dazu gebracht, sie zu kennen. Die Übereinstimmung zwischen Verstand und Kosmos ist eine Übereinstimmung, weil sie einen gemeinsamen Autor haben.", + strength: 4, + scripture: { + text: "Im Anfang war das Wort, und das Wort war bei Gott, und das Wort war Gott.", + ref: "John 1:1", + }, + voices: { + polkinghorne: { + lede: "Die Mathematik ist nicht zufällig die Sprache der Natur.", + body: [ + "Als Dirac seine Gleichung für das Elektron aufschrieb, entdeckte er als mathematische Konsequenz die Antimaterie. Reines Denken, diszipliniert angewandt, fand ein Merkmal der Welt, das niemand gesehen hatte.", + "Das ist nicht das, was wir erwarten würden, wenn die Mathematik ein menschliches kulturelles Artefakt und das Universum ein gleichgültiger Haufen von Teilchen wäre. Es ist das, was wir erwarten würden, wenn beides Gedanken desselben Geistes wären.", + "Der Theismus erklärt, warum die Wissenschaft funktioniert. Der Naturalismus nutzt die Wissenschaft und weigert sich zu erklären, warum sie funktioniert.", + ], + cites: ["Belief in God in an Age of Science (1998)"], + }, + newman: { + lede: "Der illative Sinn erkennt seine Verwandten.", + body: [ + "Wissen beruht nicht auf reiner Deduktion. Es beruht auf der Konvergenz der Wahrscheinlichkeiten, dem kumulativen Gewicht der Hinweise, bis der Verstand zustimmt.", + "Diese Zustimmung ist nicht willkürlich; sie ist die Erkenntnis, dass die Welt zu der Art von Geist passt, die wir haben.", + "Die Passform ist selbst das Argument. Wir wurden dafür gebaut.", + ], + cites: ["A Grammar of Assent (1870)"], + }, + hart: { + lede: "Logos vor Logik.", + body: [ + "Das Johannesevangelium beginnt mit dem Wort - dem göttlichen Logos - durch den alle Dinge geschaffen wurden. Die christliche Metaphysik hat immer gesagt: Die Welt ist sinnvoll, weil sie gesprochen wurde.", + "Die moderne Wissenschaft ist die Ausnutzung des Logos-Charakters der Welt durch Geister, die denselben Logos teilen. Diese Gabe zu nutzen und sie gleichzeitig zu leugnen, ist inkohärent.", + "Wenn wir das Universum lesen, lesen wir nach jemandem.", + ], + cites: ["The Experience of God (2013)"], + }, + }, + related: ["fine-tuning", "consciousness", "contingency"], + }, + { + id: "resurrection", + layer: "christianity", + n: 9, + title: "Die Auferstehung ist die beste Erklärung für die minimalen Fakten", + claim: + "Fünf Fakten werden von praktisch allen Historikern des Neuen Testaments anerkannt, auch von skeptischen: Jesus starb durch Kreuzigung, seine Jünger glaubten, ihn lebend gesehen zu haben, Paulus' Leben wurde durch eine Erscheinung verändert, Jakobus wurde durch eine Erscheinung bekehrt und das Grab war leer.", + thesis: + "Die naturalistischen Alternativen - Halluzination, Verschwörung, Legende, Ohnmacht, falsches Grab - scheitern alle an mindestens einer Tatsache. Die Auferstehung erklärt alle fünf. Nach dem historiographischen Standardkriterium der Schlussfolgerung auf die beste Erklärung gewinnt sie.", + strength: 5, + scripture: { + text: "Und wenn Christus nicht auferweckt wird, ist euer Glaube vergeblich; ihr seid noch in euren Sünden.", + ref: "1 Corinthians 15:17", + }, + voices: { + habermas: { + lede: "Fünf Fakten. Eine Erklärung.", + body: [ + "1. Jesus starb durch die römische Kreuzigung. Das wird von jedem ernsthaften Historiker zugegeben. Die Ohnmachtstheorie wurde im 19. Jahrhundert aufgegeben.", + "2. Die Jünger hatten reale Erfahrungen, die sie als Erscheinungen des auferstandenen Jesus ansahen. Zugegeben - sogar Bart Ehrman räumt dies ein. Halluzinationstheorien scheitern, weil Gruppenhalluzinationen mit demselben Inhalt nicht vorkommen und kein körperliches Essen beinhalten würden.", + "3. Paulus, der Verfolger der Kirche, bekehrte sich durch das, was er für eine Erscheinung hielt. Er hatte keine Veranlassung zu lügen; er starb für das Zeugnis.", + "4. Jakobus, der skeptische Bruder von Jesus, wurde aufgrund einer Erscheinung zum Leiter der Jerusalemer Kirche. Dieselbe Dynamik.", + "5. Das Grab war leer. Andernfalls hätten die jüdischen Behörden, die ein Motiv und Zugang hatten, den Leichnam gefunden.", + "Jede naturalistische Alternative scheitert an mindestens einem dieser Punkte. Die Auferstehung erklärt alle fünf.", + ], + cites: [ + "Habermas & Licona, The Case for the Resurrection of Jesus (2004)", + ], + }, + wright: { + lede: "Im Judentum des zweiten Tempels gab es dafür keine Kategorie.", + body: [ + 'Im jüdischen Denken des ersten Jahrhunderts bedeutete "Auferstehung" die leibliche Auferweckung aller Gerechten am Ende der Geschichte. Niemand erwartete, dass ein Mann in der Mitte auferstehen würde. Niemand erwartete einen gekreuzigten Messias - die Kreuzigung war ein Zeichen für den Fluch Gottes.', + "Was die Jünger behaupteten, verlangte von ihnen, zwei neue Kategorien gleichzeitig zu erfinden, entgegen jeder Erwartung, die sie hatten. Die einfachste Erklärung für diese Neuerung ist, dass sie passiert ist.", + "Und die von ihnen gegründete Bewegung wuchs explosionsartig in der Stadt, in der der Körper hergestellt werden konnte. Das war sie nicht.", + ], + cites: ["The Resurrection of the Son of God (2003)"], + }, + plantinga: { + lede: "Die Wahrscheinlichkeitsrechnung läuft zu unseren Gunsten.", + body: [ + "Die vorherige Wahrscheinlichkeit einer Auferstehung ist nur unter der Annahme, dass es keinen Gott gibt, gering. Unter der Bedingung der Existenz Gottes und der vorherigen Wahrscheinlichkeit einer Inkarnation bei dieser Existenz, wird die vorherige Wahrscheinlichkeit einer Auferstehung erheblich.", + "Kombiniert mit den historischen Beweisen spricht das Nachspiel eindeutig dafür.", + "Der Atheist, der den historischen Fall als 'unzureichend' bezeichnet, tut dies, indem er die Schlussfolgerung von vornherein ausschliesst.", + ], + cites: ["Warranted Christian Belief (2000)"], + }, + }, + related: ["transformation", "scripture-prophecy", "church-persistence"], + }, + { + id: "transformation", + layer: "christianity", + n: 10, + title: "Die Verwandlung von Heiligen ist empirisch", + claim: + "Das Christentum hat in jeder Generation einen erkennbaren Typus von Menschen hervorgebracht - Franziskus, Teresa von Avila, Vinzenz von Paul, Maximilian Kolbe, Mutter Teresa - deren Leben sich nur schwer mit naturalistischen Argumenten erklären lässt.", + thesis: + "Dies sind keine frommen Legenden. Es sind Menschen, deren Biografien dokumentiert sind, deren Heiligkeit unter extremem Druck getestet wurde und deren Wirkung auf ihre Umgebung transformierend war. Einen Baum erkennt man an seinen Früchten. Seltsame Früchte, die sich seit zweitausend Jahren wiederholen, sind Daten.", + strength: 4, + scripture: { + text: "An ihren Früchten werdet ihr sie erkennen.", + ref: "Matthew 7:20", + }, + voices: { + newman: { + lede: "Heiligkeit ist der eigentliche Beweis für das Christentum.", + body: [ + "Die Doktrin allein bekehrt nicht. Die Lehre plus ein Heiliger schon. Der Heilige ist die sichtbar gemachte Lehre - das verkörperte Argument, dass das Evangelium nicht nur auf dem Papier wahr ist.", + "Über neunzehn Jahrhunderte hinweg ist in jeder Kultur, die das Christentum erreicht hat, dieselbe Art von Mensch entstanden: gekennzeichnet durch freudige Selbsthingabe, Frieden im Leiden und eine erweiterte Fähigkeit, unattraktive Menschen zu lieben.", + "Diese Art von Menschen wird von anderen Ideologien nicht in annähernd der gleichen Dichte produziert. Diese Tatsache ist unangenehm, aber sie ist eine Tatsache.", + ], + cites: [ + "Apologia Pro Vita Sua (1864)", + "An Essay on the Development of Christian Doctrine (1845)", + ], + }, + hahn: { + lede: "Die Familie des Bündnisses bringt dieses Leben durch strukturelle Vernunft hervor.", + body: [ + "Das Christentum ist nicht in erster Linie eine Ethik oder eine Philosophie. Es ist ein Bund - Gottes verbindliche Selbsthingabe an eine Familie, die er zusammenführt. Innerhalb dieser Familie formen die gewöhnlichen Mittel der Gnade (Eucharistie, Beichte, Schrift, Gebet) die Menschen im Laufe der Zeit um.", + "Die Heiligen sind keine Super-Christen. Sie sind das gewöhnliche Ergebnis der gewöhnlichen Mittel, wenn man sich diesen Mitteln nicht widersetzt.", + "Was erklärt werden muss, ist nicht, dass es Heilige gibt. Es geht darum, dass es nicht mehr gibt.", + ], + cites: ["The Lamb's Supper (1999)"], + }, + lewis: { + lede: "Das Christentum schafft neue Arten von Menschen.", + body: [ + "Es sind nicht die moralischen Lehren des Christentums, die seine Einzigartigkeit ausmachen. Sie sind weitgehend mit dem hohen Heidentum identisch. Es ist die Behauptung, dass ein Mensch durch die Verbindung mit Christus zu einer neuen Kreatur wird - dass der alte Mensch stirbt und ein Sohn Gottes geboren wird.", + "Und es funktioniert. Unvollkommen, langsam, mit Rückfällen. Aber fragen Sie jeden, der einen echten Christen kennengelernt hat, ob er einen gewöhnlichen guten Menschen kennengelernt hat.", + "Die beiden sind nicht dasselbe.", + ], + cites: ["Mere Christianity, Bk. IV"], + }, + }, + related: ["resurrection", "religious-experience", "church-persistence"], + }, + { + id: "scripture-prophecy", + layer: "christianity", + n: 11, + title: "Die Heilige Schrift ist über ein Jahrtausend hinweg einheitlich", + claim: + "Die Bibel besteht aus sechsundsechzig Büchern, die von vierzig Autoren im Laufe von fünfzehnhundert Jahren auf drei Kontinenten in drei Sprachen geschrieben wurden und die eine Geschichte erzählen, die nach und nach enthüllt wird und in einer Person gipfelt.", + thesis: + "Die innere Kohärenz - Typologie, Vorahnung, lehrmässige Entwicklung - ist nicht das, was wir von einer erzwungenen Anthologie erwarten würden. In kanonischer Reihenfolge gelesen, liest sich das Alte Testament wie ein Problem, auf das das Neue Testament die Antwort ist. Das ist die literarische Signatur eines Autors, der hinter den Autoren steht.", + strength: 4, + scripture: { + text: "Dann öffnete er ihnen das Verständnis, damit sie die Schriften verstehen konnten.", + ref: "Luke 24:45", + }, + voices: { + hahn: { + lede: "Die Typologie ist der unverwechselbare Fingerabdruck.", + body: [ + "Adam fällt in einem Garten durch einen Baum; Christus rettet in einem Garten durch einen Baum. Israel geht durch das Wasser in die Wüste zum verheissenen Land; der Gläubige geht durch die Taufe in die Nachfolge zur Herrlichkeit. Das Passahlamm wird zur gleichen Stunde geschlachtet, in der Christus geschlachtet wird. Die hochgehaltene bronzene Schlange ist ein Vorzeichen für das Kreuz.", + "Dies sind keine rückwirkenden Lesarten. Es sind strukturelle Entsprechungen, die sich durch tausend Jahre unabhängiger Texte ziehen, von denen keiner der Autoren das ganze Muster gesehen hat.", + "Kohärenz auf dieser Ebene ist die literarische Signatur eines Autors hinter den Autoren.", + ], + cites: [ + "Catholic for a Reason (1998)", + "A Father Who Keeps His Promises (1998)", + ], + }, + newman: { + lede: "Die Lehre entwickelt sich; sie widerspricht nicht.", + body: [ + "Der Keim jeder späteren Lehre liegt in der ursprünglichen Hinterlegung. Die Dreifaltigkeit ist in der Taufformel enthalten; die Marienlehre ist in der Typologie von Neu-Eva enthalten; die eucharistische Realpräsenz ist in der Rede vom Brot des Lebens enthalten. Die Zeit entfaltet, was bereits gegeben wurde.", + "Eine erfundene Religion würde entweder erstarren und brüchig werden oder sich weiterentwickeln und inkohärent werden. Das Christentum hat weder das eine noch das andere getan. Sein Wachstum ist organisch - so wie das Wachstum eines Lebewesens aussieht.", + "Eine solche organische Kontinuität ist die Signatur einer echten lebendigen Quelle, nicht eines Ausschusses.", + ], + cites: ["An Essay on the Development of Christian Doctrine (1845)"], + }, + wright: { + lede: "Die Geschichte hat eine erkennbare Form.", + body: [ + "Die Erzählung des Alten Testaments hat die Form eines Problems: Israel sollte das Licht für die Völker sein und konnte es nicht sein. Die Erzählung des Neuen Testaments ist die überraschende Form der Lösung: der treue Israelit, der die Berufung erfüllt, die Israel nicht erfüllen konnte.", + "Dies ist keine glatte Erzählung, die jemand im Voraus geplant haben könnte. Sie ist auf jeder Seite schockierend. Und doch stellt sich im Nachhinein heraus, dass jeder Schock bereits vorbereitet war.", + "Die Geschichte funktioniert.", + ], + cites: ["The New Testament and the People of God (1992)"], + }, + }, + related: ["resurrection", "church-persistence", "transformation"], + }, + { + id: "church-persistence", + layer: "christianity", + n: 12, + title: "Die Kirche hat sich selbst überlebt", + claim: + "Über zwei Jahrtausende hinweg wurde die katholische Kirche von Heiligen und von Verbrechern geführt, hat sich gegen das römische Imperium, die arianische Häresie, den Fall Roms, die Reformation, die Französische Revolution, den Marxismus und die Moderne durchgesetzt und lehrt immer noch dasselbe Glaubensbekenntnis.", + thesis: + "Aus rein soziologischer Sicht hätte dies nicht passieren dürfen. Institutionen, die so schlecht geführt werden, überleben nicht so lange. Das Fortbestehen der Kirche durch ihre eigene Korruption ist ein stärkeres Argument, als es ihr Aufblühen unter Heiligen gewesen wäre.", + strength: 3, + scripture: { + text: "Und die Pforten der Hölle werden sie nicht überwältigen.", + ref: "Matthew 16:18", + }, + voices: { + newman: { + lede: "Sie ist oft gestorben und oft auferstanden.", + body: [ + "Ich zähle sechzehn Mal, dass die Kirche für tot erklärt wurde - von Diokletian, von Julian, von den Goten, von den Ikonoklasten, von Voltaire, von Napoleon, von Stalin. Und jedes Mal ist sie wieder auferstanden.", + "Eine Institution, die ihre eigenen Kaiser, ihre eigenen Päpste, ihre eigenen Skandale und ihre eigenen Intellektuellen überleben kann und weiterhin neue Konvertiten auf allen Kontinenten anzieht, ist keine gewöhnliche Institution.", + "Sie wird von etwas anderem als ihren Verdiensten gehalten.", + ], + cites: ["Apologia Pro Vita Sua (1864)"], + }, + hahn: { + lede: "Der Bund ist von Gottes Seite aus unzerbrechlich.", + body: [ + "Die Beharrlichkeit der Kirche beruht nicht darauf, dass ihre Mitglieder zuverlässig sind. Das sind sie nicht. Es liegt daran, dass der Bund kein Vertrag ist. Ein Vertrag ist ein Austausch von Leistungen und wird beim ersten Versagen gebrochen. Ein Bund ist eine Selbsthingabe und wird nicht durch die Untreue des Empfängers ungültig.", + "Israel hat dies im Alten Testament bewiesen. Die Kirche beweist es im Neuen Testament. Das Drama des Scheiterns und der Barmherzigkeit ist der Motor, nicht ein Makel.", + "Wenn das Christentum nur menschlich wäre, hätte die Korruption es beendet. Sein Fortbestehen durch Korruption ist das Argument.", + ], + cites: ["A Father Who Keeps His Promises (1998)"], + }, + wright: { + lede: "Was in einem Obergemach begann, findet sich in jeder Nation.", + body: [ + "Zwölf unscheinbare Galiläer gründeten in einer abgelegenen Provinz des Römischen Reiches eine Bewegung, die innerhalb von drei Jahrhunderten das Reich eroberte, das ihren Gründer getötet hatte. Sie hatten kein Militär, kein Geld und kein politisches Programm.", + "Nach jedem soziologischen Standardmodell sollte dies nicht passieren.", + "Es ist geschehen. Die einfachste Erklärung ist die, die sie gegeben haben: Er ist auferstanden.", + ], + cites: ["Simply Christian (2006)"], + }, + }, + related: ["resurrection", "transformation", "scripture-prophecy"], + }, +]; diff --git a/src/lib/data/apologetik.ts b/src/lib/data/apologetik.ts new file mode 100644 index 00000000..b97066c4 --- /dev/null +++ b/src/lib/data/apologetik.ts @@ -0,0 +1,2447 @@ +export type Archetype = { + id: string; + name: string; + sub: string; + color: string; + colorSoft: string; + colorHex: string; + glyph: string; + font: string; + era: string; +}; + +export type Counter = { + lede: string; + body: string[]; + cites: string[]; +}; + +export type Argument = { + id: string; + n: number; + title: string; + short: string; + steel: string; + quote: string; + quoteBy: string; + pub: string; + related: string[]; + counters: Record; +}; + +export const ARCHETYPES: Record = { + logician: { + id: "logician", + name: "The Logician", + sub: "cold reason, syllogism", + color: "var(--nord3)", + colorSoft: "rgba(76,86,106,0.12)", + colorHex: "#4C566A", + glyph: "∴", + font: '"JetBrains Mono", ui-monospace, Menlo, Consolas, monospace', + era: "—", + }, + aquinas: { + id: "aquinas", + name: "Thomas Aquinas", + sub: "scholastic, the Five Ways", + color: "var(--nord10)", + colorSoft: "rgba(94,129,172,0.14)", + colorHex: "#5E81AC", + glyph: "✠", + font: '"Cormorant Garamond", "EB Garamond", Georgia, serif', + era: "1225–1274", + }, + francis: { + id: "francis", + name: "Francis of Assisi", + sub: "poetic, brother sun", + color: "var(--nord14)", + colorSoft: "rgba(163,190,140,0.18)", + colorHex: "#A3BE8C", + glyph: "☼", + font: '"Spectral", "Lora", Georgia, serif', + era: "1181–1226", + }, + augustine: { + id: "augustine", + name: "Augustine", + sub: "introspective, confessional", + color: "var(--nord15)", + colorSoft: "rgba(180,142,173,0.18)", + colorHex: "#B48EAD", + glyph: "❦", + font: '"Cormorant Garamond", Georgia, serif', + era: "354–430", + }, + chesterton: { + id: "chesterton", + name: "G.K. Chesterton", + sub: "paradox, wit", + color: "var(--nord12)", + colorSoft: "rgba(208,135,112,0.18)", + colorHex: "#D08770", + glyph: "⁂", + font: '"Inter", Helvetica, Arial, sans-serif', + era: "1874–1936", + }, + mystic: { + id: "mystic", + name: "The Mystic", + sub: "apophatic, the cloud", + color: "var(--nord9)", + colorSoft: "rgba(129,161,193,0.18)", + colorHex: "#81A1C1", + glyph: "◯", + font: '"Cormorant Garamond", Georgia, serif', + era: "—", + }, + scientist: { + id: "scientist", + name: "The Scientist", + sub: "natural theology", + color: "var(--nord7)", + colorSoft: "rgba(143,188,187,0.20)", + colorHex: "#8FBCBB", + glyph: "△", + font: '"IBM Plex Mono", ui-monospace, Menlo, monospace', + era: "—", + }, + pastor: { + id: "pastor", + name: "The Pastor", + sub: "lived experience", + color: "var(--nord11)", + colorSoft: "rgba(191,97,106,0.16)", + colorHex: "#BF616A", + glyph: "✚", + font: 'Helvetica, Arial, "Noto Sans", sans-serif', + era: "—", + }, + pascal: { + id: "pascal", + name: "Blaise Pascal", + sub: "mathematician, the wager", + color: "var(--nord13)", + colorSoft: "rgba(235,203,139,0.22)", + colorHex: "#EBCB8B", + glyph: "½", + font: '"IBM Plex Mono", ui-monospace, Menlo, monospace', + era: "1623–1662", + }, + lewis: { + id: "lewis", + name: "C.S. Lewis", + sub: "literary apologist", + color: "var(--nord8)", + colorSoft: "rgba(136,192,208,0.20)", + colorHex: "#88C0D0", + glyph: "❧", + font: '"Spectral", "Lora", Georgia, serif', + era: "1898–1963", + }, + newman: { + id: "newman", + name: "John Henry Newman", + sub: "theologian of conscience", + color: "#6B3942", + colorSoft: "rgba(107,57,66,0.16)", + colorHex: "#6B3942", + glyph: "☩", + font: '"Cormorant Garamond", Georgia, serif', + era: "1801–1890", + }, + justin: { + id: "justin", + name: "Justin Martyr", + sub: "philosopher and martyr", + color: "#A6845F", + colorSoft: "rgba(166,132,95,0.18)", + colorHex: "#A6845F", + glyph: "※", + font: '"Cormorant Garamond", Georgia, serif', + era: "c.100–165", + }, + catechism: { + id: "catechism", + name: "The Catechism", + sub: "the Church's compendium", + color: "#7A8290", + colorSoft: "rgba(122,130,144,0.18)", + colorHex: "#7A8290", + glyph: "☧", + font: '"Cormorant Garamond", Georgia, serif', + era: "promulgated 1992", + }, + historian: { + id: "historian", + name: "The Historian", + sub: "ancient-history scholar", + color: "#4A6741", + colorSoft: "rgba(74,103,65,0.18)", + colorHex: "#4A6741", + glyph: "✦", + font: '"Cormorant Garamond", Georgia, serif', + era: "—", + }, +}; + +export const ARGUMENTS: Argument[] = [ + { + id: "evil", + n: 1, + title: "If God exists, why is there evil?", + short: "The problem of evil", + steel: + "An omnipotent, omniscient, perfectly good God could prevent suffering and would want to. Yet earthquakes flatten cities, children die of cancer, and the holocaust happened. Either God can't, won't, or isn't there.", + quote: + "Is God willing to prevent evil, but not able? Then he is not omnipotent. Is he able, but not willing? Then he is malevolent. Is he both able and willing? Then whence cometh evil?", + quoteBy: "Epicurus, as paraphrased by Hume", + pub: "If God's so good, why did my dog die?", + related: ["hiddenness", "hell", "natural-evil"], + counters: { + logician: { + lede: 'The argument equivocates on "good."', + body: [ + "Premise 1 assumes that a perfectly good being would always eliminate suffering. But this conflates the good of an individual moment with the good of a whole.", + "A surgeon causes pain to heal. A parent permits a fall to teach balance. The act is not made evil by the suffering it produces if a sufficient countervailing good is unattainable otherwise.", + "The deductive form of the problem (Mackie, 1955) was abandoned even by atheist philosophers after Plantinga's free-will defense. What remains is the evidential form — and evidential arguments don't yield certainty, only probability weighted by priors. The theist's prior is not irrational.", + ], + cites: [ + "Plantinga, God, Freedom, and Evil (1974)", + 'Mackie, "Evil and Omnipotence" (1955)', + ], + }, + aquinas: { + lede: "Evil is not a thing. It is a privation.", + body: [ + "Whatever exists is good insofar as it exists. Evil is the absence of a good that ought to be present — blindness in an eye, cruelty in a will. God is the cause of being, not the cause of these absences.", + "God permits evil only insofar as he can draw a greater good from it. The crucifixion of Christ is the supreme instance: the worst act in history became the instrument of redemption.", + "It does not follow that we must always see the good. The fault is not in the order of providence but in the narrowness of our vantage.", + ], + cites: ["Summa Theologiae I, q.49", "Contra Gentiles III, c.71"], + }, + francis: { + lede: "The wolf of Gubbio came to my hand.", + body: [ + "Brother, you ask why suffering. I have walked among lepers and embraced them and found Christ in their wounds. The world groans, but it groans toward something.", + "When the wolf was tearing the village, I did not curse the wolf. I went out and called him brother and he laid down. Evil is not refuted by argument but by love walking into it.", + "Sister Death herself is a gift if you greet her well. Praised be my Lord for our sister bodily death, from whom no living man can escape.", + ], + cites: ["Canticle of the Creatures", "Fioretti, ch. 21"], + }, + lewis: { + lede: "Pain is God's megaphone.", + body: [ + "We can ignore even pleasure. But pain insists upon being attended to. God whispers to us in our pleasures, speaks in our conscience, but shouts in our pains.", + 'If the universe is so bad, how on earth did human beings ever come to attribute it to the activity of a wise and good Creator? The very idea of "bad" is itself borrowed from a real ought we know we are missing.', + "When you argue against God because of injustice, you assume a real standard of justice. Where did that standard come from?", + ], + cites: [ + "The Problem of Pain (1940)", + "Mere Christianity, Bk. I, ch. 1", + ], + }, + }, + }, + { + id: "evidence", + n: 2, + title: "There is no evidence for God.", + short: "The evidential demand", + steel: + "Extraordinary claims require extraordinary evidence. We don't accept Zeus, Thor, or Russell's teapot on faith. The God hypothesis fails the same test: no peer-reviewed observation, no falsifiable prediction, nothing.", + quote: + "What can be asserted without evidence can be dismissed without evidence.", + quoteBy: "Christopher Hitchens", + pub: "Show me a miracle on camera and I'll believe.", + related: ["science", "design", "miracles"], + counters: { + logician: { + lede: '"Evidence" is doing all the work in this argument.', + body: [ + 'If by "evidence" you mean only repeatable laboratory observation, the demand is question-begging: it presupposes naturalism (only physical things are real) and then complains that no physical detector picks up a non-physical cause.', + "Historical evidence, testimonial evidence, philosophical evidence, and personal experience all count as evidence in every other domain — courts of law, history, ethics. Excluding them only when God is at issue is special pleading.", + "Russell's teapot fails as an analogy: nothing in the structure of reality demands a teapot. Many things in the structure of reality (contingency, fine-tuning, consciousness, moral obligation) demand explanation.", + ], + cites: ["Plantinga, Warranted Christian Belief (2000)"], + }, + scientist: { + lede: "The fine-tuning of the constants is the evidence.", + body: [ + "Change the cosmological constant by one part in 10^120 and no galaxies form. Change the strong nuclear force by 2% and no carbon. The set of universes that permit observers is a vanishingly thin slice.", + "Three explanations: brute fact (a 10^-N coincidence we're forbidden from finding remarkable), a multiverse (postulating ~10^500 unobservable universes to explain one), or design.", + "The multiverse is not a parsimonious naturalism. It is a metaphysical posit at least as ambitious as theism, with worse explanatory traction.", + ], + cites: [ + "Penrose, The Road to Reality (2004), §27.13", + 'Collins, "The Teleological Argument" (2009)', + ], + }, + aquinas: { + lede: "There are five proofs.", + body: [ + "From motion: things that change require a changer; the chain cannot regress infinitely; therefore an unmoved mover.", + "From causation: nothing causes itself; an infinite regress of causes never gets started; therefore a first cause.", + "From contingency, from gradation, from teleology — each draws a line from a feature of the world we already accept to a being whose existence those features require. These are not blind faith. They are arguments. Engage them or do not, but do not say there is nothing to engage.", + ], + cites: ["Summa Theologiae I, q.2, a.3"], + }, + pascal: { + lede: "Hidden enough to be refused. Visible enough to be sought.", + body: [ + "If God gave undeniable proof, no faith would be required and no love freely given. If he gave nothing, no honest seeker could find him. He has chosen the middle: signs sufficient for those who want him, not coercive for those who don't.", + "There is enough light for those who only desire to see, and enough obscurity for those who have a contrary disposition.", + "The heart has its reasons which reason knows nothing of. We feel it in a thousand things. It is the heart that perceives God, not reason.", + ], + cites: ["Pensées, §149, §424"], + }, + mystic: { + lede: "He is not an object you can find in the universe.", + body: [ + "You are looking for God the way you would look for a planet — somewhere, in the inventory of things. But the inventory of things is exactly what God is not in. God is the reason there is an inventory at all.", + "The cloud of unknowing stands between us and him. Not because he hides, but because finite eyes cannot see infinite light.", + "Be still. The evidence is not behind a telescope. It is the silence after you stop talking.", + ], + cites: [ + "The Cloud of Unknowing (14th c.)", + "Pseudo-Dionysius, Mystical Theology", + ], + }, + }, + }, + { + id: "science", + n: 3, + title: "Science has explained everything religion used to.", + short: "God of the gaps", + steel: + "Lightning was Zeus, then it was electricity. Disease was demons, then it was germs. The history of religion is the history of retreating from explanations as science arrives. God is what's left in the gaps, and the gaps are closing.", + quote: + "Religion was the first attempt of the human race to explain what was going on. We can do better now.", + quoteBy: "Bertrand Russell, paraphrased", + pub: "We don't need God anymore — we have physics.", + related: ["evidence", "design", "morality"], + counters: { + scientist: { + lede: "Modern science was born from theology, not in spite of it.", + body: [ + "The conviction that nature is law-governed and intelligible — that reality answers to mathematics — is a theological inheritance. Newton, Kepler, Mendel, Lemaître, Faraday: not lapses, the founders.", + "Science explains how a kettle boils. It cannot explain why there is a kettle, or why the laws governing the boiling exist, or why minds exist that can know them. These are not gaps in our knowledge. They are categorically different questions.", + "The Big Bang itself was opposed by atheist physicists for decades because it suggested a beginning. The model that won is the one Lemaître, a Catholic priest, proposed.", + ], + cites: [ + "Hannam, God's Philosophers (2009)", + "Lemaître, Annales de Bruxelles (1927)", + ], + }, + logician: { + lede: "Category error.", + body: [ + '"How" questions and "why" questions are not in competition. The mechanism by which a kettle boils does not eliminate the gas company.', + '"God of the gaps" is a charge against bad theology, not against theology. Aquinas did not argue from ignorance. He argued from features of reality (motion, causation) that physics presupposes rather than explains.', + "If the next physical theory is found, it too will sit on a metaphysical floor — the existence of laws, the rationality of reality, the why-anything-at-all. That floor is what God names.", + ], + cites: ['Sober, "Empiricism" (2008)'], + }, + chesterton: { + lede: "It is the materialist who has the small universe.", + body: [ + "The Christian believes that the world is a story; the materialist believes it is a printout. The story has more room for things than the printout has for facts.", + "It is absurd to complain that the supernatural cannot be tested by the natural. You may as well complain that the love of your wife cannot be weighed.", + "The trouble is not that the materialist is wrong on this fact or that. The trouble is that he has been right in his small way and made his way the size of the world.", + ], + cites: ["Orthodoxy, ch. 2"], + }, + lewis: { + lede: "Looking along the beam, not at it.", + body: [ + "When a man is in love, he can step out of the experience and look at it scientifically — hormones, evolutionary pair-bonding. The view from outside is true. It is also unutterably thin.", + "Science is the view from outside, looking at the beam of sunlight. Religion is the view from inside the beam, looking out at what the beam reveals.", + "Both are valid. Neither replaces the other. To say science has displaced religion is to say the diagram of love has displaced the lover.", + ], + cites: ['"Meditation in a Toolshed" (1945)'], + }, + }, + }, + { + id: "morality", + n: 4, + title: "We don't need God to be good.", + short: "Secular ethics", + steel: + "Secular societies (Sweden, Denmark, Japan) score higher on every measure of human flourishing than religious ones. Empathy, evolutionary kinship, social contract — all explain morality without divine command. Many religious people behave terribly; many atheists are kind.", + quote: "I don't believe in God and I'm not a murderer. So there.", + quoteBy: "common formulation", + pub: "I'm a good person without religion. End of story.", + related: ["evidence", "evil", "religion-violence"], + counters: { + logician: { + lede: "Behavior is not the question. Grounding is.", + body: [ + 'No one denies that atheists are often morally exemplary. The question is not who behaves morally. The question is what "morally" means — whether moral facts are real or merely useful fictions of evolutionary psychology.', + 'If morality is a survival heuristic, it has no more authority over you than a heuristic about food preference. "You should not torture children for fun" becomes "primates of your lineage tend not to."', + "Most secular ethicists concede this and either bite the nihilist bullet (Mackie, error theory) or smuggle in a non-natural fact (Parfit, on the order of being). The smuggled fact is the interesting one.", + ], + cites: [ + "Mackie, Ethics: Inventing Right and Wrong (1977)", + "Parfit, On What Matters (2011)", + ], + }, + augustine: { + lede: "I knew what was right and did the wrong thing anyway.", + body: [ + "I stole pears not because I was hungry — we threw them to the pigs. I stole them because the theft itself delighted me. The atheist account of morality cannot explain why I knew, even as I did it, that I was tearing something in myself.", + "Our hearts are restless. We do not need to be taught that we have failed; we are taught only the name of what we have failed against.", + "You have made us for yourself, O Lord, and our heart is restless until it rests in you.", + ], + cites: ["Confessions II.4, I.1"], + }, + lewis: { + lede: "The Tao is not invented; it is recognized.", + body: [ + "Every culture, isolated or not, condemns cowardice, treachery, cruelty to the weak. They differ on details — whom to count as kin — but agree on the form. This is not what an evolved heuristic would look like; it's what a recognized law would.", + 'When you say "that\'s not fair," you appeal to something neither of us invented and both of us are bound by. Where did that come from?', + "If there is no real Right, your indignation at injustice is a chemical event. If there is, you have already conceded more than naturalism can pay for.", + ], + cites: ["The Abolition of Man (1943)", "Mere Christianity, Bk. I"], + }, + pastor: { + lede: "I have buried good atheists.", + body: [ + "Don't hear me wrong. I have known atheists kinder than most Christians. The question for me is not who is good — God knows that and I don't.", + 'The question is what to say to the woman whose child has died, or the addict on his eighth relapse, or the dying man asking if any of it mattered. "Be good and the species will benefit" is not a thing you say to someone in the dark.', + "The Gospel is not primarily an ethics. It is news for the people ethics cannot reach.", + ], + cites: [], + }, + }, + }, + { + id: "religion-violence", + n: 5, + title: "Religion causes most of history's violence.", + short: "Crusades, Inquisition, jihad", + steel: + "Crusades, Inquisition, witch trials, sectarian wars, 9/11, the Troubles. Religion poisons everything by giving people license to kill in the name of certainty. A world without religion would be measurably less violent.", + quote: "Religion poisons everything.", + quoteBy: "Christopher Hitchens", + pub: "More people have been killed in the name of God than anything else.", + related: ["morality", "evil"], + counters: { + logician: { + lede: "Check the body counts.", + body: [ + "The 20th century, the most explicitly secular century in history, killed more people for ideological reasons than all previous centuries combined. The Soviet Union, Maoist China, the Khmer Rouge, North Korea — atheist regimes, by their own self-description.", + 'The argument needs the form: "X causes Y." But the comparison class for X (with-religion) covers most of human history; the comparison class for not-X (officially without-religion) is small, recent, and bloody.', + "Tribalism, scarcity, and power-seeking cause violence. Religion can recruit them. So can nationalism, ethnicity, ideology, soccer.", + ], + cites: [ + "Pinker, Better Angels (2011), table on 20th c. democide", + "Rummel, Death by Government (1994)", + ], + }, + chesterton: { + lede: "When you remove the church, you do not get reason. You get the next church.", + body: [ + "The men who took the cross down put up the guillotine, then the swastika, then the red star. The throne does not stay empty. Something always rules.", + "It is the test of a good religion whether you can joke about it. It is the test of a bad ideology that you cannot.", + "A man who refuses to believe in God will believe in anything. He has not stopped being credulous; he has only stopped being discriminating.", + ], + cites: ["The Thing (1929), ch. 25"], + }, + augustine: { + lede: "The City of God is not the city of any flag.", + body: [ + "I have watched Rome fall and the Christians blamed for it. I have also watched Christians who deserved blame. Both are part of one story: the visible church is a mixed body, wheat and tares together, and will be until the harvest.", + "The sword used in Christ's name has always been used against Christ's name. The Crusader who slaughtered the Jew of Mainz did not become more obedient to the Sermon on the Mount. He became less.", + "Love, and do what you will. But mark: love. Not zeal. Not certainty. Love.", + ], + cites: ["City of God I.1; Tractates on John 7.8"], + }, + pastor: { + lede: "The people I bury were not killed by religion.", + body: [ + 'I have served two parishes. In neither has the question "should we kill anyone" come up at coffee hour. The dramas are: a marriage failing, a teenager in trouble, an old man dying alone, an addict trying again.', + "Whatever religion does on the world stage, on the small stage where most life happens it sits with the dying, feeds the hungry, marries the lovers, names the children, and buries the dead. The accounting has to include that side of the ledger.", + "We are not blameless. We have been worse than blameless. We are also still here, doing this work, often when no one else will.", + ], + cites: [], + }, + }, + }, + { + id: "design", + n: 6, + title: "Evolution explains design without a designer.", + short: "Darwin's blind watchmaker", + steel: + "Paley's watch was the strongest pre-Darwinian argument. Darwin disposed of it. Random mutation plus non-random selection produces the appearance of design from below. We don't need a designer for the eye, the hand, or the human.", + quote: + "Biology is the study of complicated things that give the appearance of having been designed for a purpose.", + quoteBy: "Richard Dawkins", + pub: "Evolution killed God.", + related: ["science", "evidence"], + counters: { + scientist: { + lede: "Evolution explains the watch. It does not explain the watchmaker's tools.", + body: [ + "Even granting the full Darwinian story for biological forms, you have not addressed: why the laws of physics permit chemistry, why the constants permit stable matter, why the universe began at all, why mathematics describes it, why minds exist that can do the science.", + 'The teleological argument has long since moved upstream of biology. The question is not "who designed the eye" but "who set the stage on which design-by-selection can happen."', + "And the modern fine-tuning literature — Penrose, Rees, Carter — is not theological propaganda. It is mainstream cosmology asking the same question Aquinas asked, with bigger numbers.", + ], + cites: [ + "Rees, Just Six Numbers (1999)", + "Penrose, Cycles of Time (2010)", + ], + }, + francis: { + lede: "I have spoken to Brother Wolf and Sister Moon.", + body: [ + "You give me a mechanism and call it an explanation. But the mechanism is itself a wonder. Selection requires reproduction; reproduction requires a self that can fail; a self that can fail is already a marvel.", + "Praised be my Lord with all his creatures, especially Sir Brother Sun, who is the day, through whom Thou givest us light. Whether by six days or six billion years, the Canticle is unchanged.", + "Evolution does not subtract praise. It tells us by how many means God brings the daisy out of the dust.", + ], + cites: ["Canticle of the Creatures"], + }, + aquinas: { + lede: "The fifth way does not depend on biological design.", + body: [ + "I argued from the regularity of natural agents — the way an arrow flies to the mark a non-thinking thing must be directed by a mind. Selection is a regularity. The regularity itself is what wants explaining.", + "Secondary causes are real and operate by their own natures. God works through them as the carpenter works through the saw. To say the saw cuts is true; to say the carpenter does not is false.", + "That a process produces order is not less remarkable than that an artisan does. It is more remarkable, because the process must be designed first.", + ], + cites: ["Summa Theologiae I, q.2, a.3 (Fifth Way); q.103, a.6"], + }, + chesterton: { + lede: "Evolution is a description, not an explanation.", + body: [ + "If evolution simply means that a positive thing called an ape turned slowly into a positive thing called a man, then it is stingless for the most orthodox; for a personal God might just as well do things slowly as quickly.", + "But if it means that there is no such thing as an ape or a man — only an endless smudge of becoming — it is a much more daring dogma than any of the Creeds.", + "I have noticed that men who say evolution makes God unnecessary tend to mean evolution makes morality unnecessary. They have left the door open behind them.", + ], + cites: ["The Everlasting Man (1925), Pt. I"], + }, + }, + }, + { + id: "miracles", + n: 7, + title: "Miracles don't happen.", + short: "Hume's argument", + steel: + "A miracle is by definition a violation of natural law. Our evidence for natural law is the uniform experience of every observer, ever. Our evidence for any specific miracle is at most a few testimonies, often centuries old, transmitted through religious communities motivated to preserve them. Bayesian arithmetic does the rest.", + quote: + "No testimony is sufficient to establish a miracle, unless the testimony be of such a kind that its falsehood would be more miraculous than the fact which it endeavours to establish.", + quoteBy: "David Hume", + pub: "Nobody rises from the dead. Period.", + related: ["evidence", "science"], + counters: { + logician: { + lede: "Hume assumed his conclusion.", + body: [ + 'The argument: miracles are very improbable; testimony for miracles is more probably false than the miracle is true; therefore reject all miracle reports. But "miracles are very improbable" is a probability conditional on no God. The whole argument is conditional on the conclusion.', + "On the assumption that there is a God who acts in history, the prior on miracles in connection with that history is not vanishingly small. It is exactly what you'd expect.", + "The question therefore reduces to: is there a God? Hume hasn't shown there isn't. He has only shown that if there isn't, miracles don't happen.", + ], + cites: [ + "Earman, Hume's Abject Failure (2000)", + "Swinburne, The Resurrection of God Incarnate (2003)", + ], + }, + pastor: { + lede: "I have seen what I have seen.", + body: [ + "I served a parish where a woman, dying of pancreatic cancer at stage four, asked us to pray. We did. She is alive. The doctors do not know why.", + "I am not asking you to believe me. I am asking you to ask the people in my parish, who have ordinary jobs and no incentive to lie, what they saw.", + "Miracles are not statistical events. They are persons addressed. The story always has a face.", + ], + cites: ["Keener, Miracles (2011), 2 vols."], + }, + lewis: { + lede: "If you have already ruled them out, of course you find none.", + body: [ + "If the existence of God be granted, miracles are perfectly natural. If it be not granted, miracles are perfectly impossible. The question is settled before the evidence is examined.", + "Hume's principle, taken seriously, would have you reject any sufficiently unusual event — the discovery of relativity, the survival of a man crushed under a train. He uses it only against miracles because he wants to.", + "The grand miracle is the Incarnation. If it happened, lesser miracles are footnotes. If it did not, they are noise.", + ], + cites: ["Miracles (1947), ch. 8, ch. 14"], + }, + pascal: { + lede: "Wager.", + body: [ + "If miracles never happen, you lose nothing by examining the case for one in particular. If even one happens, you have lost everything by refusing to look.", + "The expected value of investigation is positive on any prior above zero. Hume's prior is exactly zero, which is not a probability assignment but a refusal to play.", + "I do not ask you to believe. I ask you to weigh the bet.", + ], + cites: ["Pensées, §233 (Wager)"], + }, + }, + }, + { + id: "hiddenness", + n: 8, + title: "Why is God so hidden?", + short: "Divine hiddenness", + steel: + "If a loving God wanted relationship with us, he could appear unmistakably. He doesn't. Sincere seekers fail to find. Whole cultures lived and died without ever hearing his name. A God who hides while demanding faith is either uninterested, nonexistent, or cruel.", + quote: + "Reasonable nonbelief exists; therefore a perfectly loving God does not.", + quoteBy: "J.L. Schellenberg, paraphrased", + pub: "If God wants me to believe, why doesn't he just show up?", + related: ["evidence", "evil"], + counters: { + mystic: { + lede: "He is not hidden. You are not still.", + body: [ + "The fish asks where the ocean is. He is not hidden in absence. He is hidden in nearness — too close, too constant, too dissolved in the medium of your seeing for you to notice him as a thing among other things.", + "Be silent for one hour, alone, without input, without screen. If at the end of the hour you can still say he is hidden, say it again, and try another hour.", + "Hiddenness is not a property of God. It is a property of your attention.", + ], + cites: [ + "The Cloud of Unknowing", + "Brother Lawrence, Practice of the Presence (1692)", + ], + }, + pascal: { + lede: "Hiddenness is a feature, not a bug.", + body: [ + "If he were unconcealed, no one could refuse him; no faith would be free; no love would be a gift. He has chosen to give signs sufficient for those who seek and obscure for those who don't.", + "There is enough light for those who only desire to see, and enough darkness for those of an opposite disposition.", + "Your demand that he prove himself irresistibly is the demand to be coerced. He will not coerce. That is what love means in his case.", + ], + cites: ["Pensées, §149"], + }, + augustine: { + lede: "Late have I loved you. You were within, I was without.", + body: [ + "I sought God in books and in cities and in arguments. He was the whole time inside the seeking. The hunger I called by all those other names was him.", + "Beauty so ancient and so new, late have I loved you! And behold, you were within me, and I outside; and there I sought you, and upon the lovely things you have made I rushed in, deformed.", + "Hiddenness is a name we give to our own distraction.", + ], + cites: ["Confessions X.27"], + }, + lewis: { + lede: "We may ignore but cannot evade the presence of God.", + body: [ + "An unhidden God would not be a God you could refuse. We do not want a God we cannot refuse — we want a God we can choose. He has paid the high price of letting us choose.", + "The hideout is not in the stars or in the silence. It is in the human heart, which has an extraordinary capacity to look directly at a thing and not see it.", + "Aslan is not a tame lion. He shows when he wills, not when summoned.", + ], + cites: [ + "The Lion, the Witch and the Wardrobe (1950)", + "The Problem of Pain", + ], + }, + }, + }, + { + id: "hell", + n: 9, + title: "An eternal hell is unjust.", + short: "Infinite punishment for finite sin", + steel: + "Even the worst sinner — Hitler, Stalin, the child murderer — committed at most a few decades of finite wrongs. To punish a finite wrong with infinite torment is moral monstrosity. No human court would do this. A God who would is morally beneath us.", + quote: + "I would rather hell than the heaven of a god who tortures the dead.", + quoteBy: "common formulation; cf. Bertrand Russell", + pub: "I'm a decent person and your God would still send me to burn forever?", + related: ["evil", "morality"], + counters: { + aquinas: { + lede: "The gravity of sin is measured by what it offends, not by how long it takes.", + body: [ + "A slap is a small offense to a peer, a great offense to a parent, a grave offense to a king, and a capital offense to the divine majesty. The act takes the same instant; its weight is given by its object.", + "Hell is not God inflicting torment on creatures who would prefer his presence. It is the eternal ratification of a will that has finally and freely refused him. To force such a will into communion would be to abolish it.", + "The fire is real. It is also not the worst part. The worst part is the loss.", + ], + cites: ["Summa Theologiae, Suppl., q.99", "Contra Gentiles III, c.144"], + }, + lewis: { + lede: "The doors of hell are locked from the inside.", + body: [ + 'There are only two kinds of people in the end: those who say to God, "Thy will be done," and those to whom God says, in the end, "Thy will be done." All that are in hell choose it. Without that self-choice there could be no hell.', + "I willingly believe that the damned are, in one sense, successful, rebels to the end; that the doors of hell are locked on the inside.", + "Hell is not God's failure to forgive. It is the soul's success in refusing.", + ], + cites: ["The Great Divorce (1945)", "The Problem of Pain, ch. 8"], + }, + mystic: { + lede: "Hell is the experience of God by one who has refused him.", + body: [ + "The same fire that warms the lover burns the one who hates light. The fire is not different. The hearts are.", + "God does not become two things at the judgment. He remains the one love he always was. Heaven is the encounter of the open soul with that love. Hell is the encounter of the closed soul with the same.", + "The damned do not lack God's love. They lack the capacity to receive it.", + ], + cites: [ + "Isaac of Nineveh, Ascetical Homilies", + "Maximus the Confessor, Ambigua", + ], + }, + augustine: { + lede: "I feared hell because I loved my sin.", + body: [ + "When I was unconverted, the doctrine of hell seemed to me an obscenity. After my conversion, I understood: the obscenity was what I had been doing, not what I had been threatened with.", + "We do not understand hell because we do not understand the weight of refusing love. The wedding feast is set; the bridegroom waits; the only way to be outside is to walk out.", + "It is a mercy that he warns us. The threat is the sound of the door he is holding open.", + ], + cites: ["Confessions VIII; Enchiridion 112"], + }, + }, + }, + { + id: "birth", + n: 10, + title: "Religious belief tracks geography, not truth.", + short: "The accident of birth", + steel: + "Had you been born in Riyadh, you'd defend Islam with the same conviction you now defend Christianity. Lhasa, Buddhism. Ancient Athens, the Olympians. The overwhelming predictor of someone's \"saving faith\" is the latitude and longitude of their crib. A truth this important shouldn't depend on a postal code.", + quote: + "If we have a knock-down argument that the others can't have, it's strange that almost no one finds it except by accident of birth.", + quoteBy: "John Hick, paraphrased", + pub: "If I'd been born in Pakistan, I'd be a Muslim. So how is my faith \"true\"?", + related: ["evidence", "hiddenness", "morality"], + counters: { + lewis: { + lede: "The objection cuts both ways.", + body: [ + "If geography decides religion, it also decides atheism. The modern Englishman who dismisses God was raised in a culture that taught him to. The Soviet child raised under militant atheism was no freer in his unbelief than the Tibetan child in his Buddhism. The argument, pressed honestly, dissolves every conviction anyone has ever held — including the conviction that geography decides convictions.", + "What the argument really shows is that humans receive their starting points from their cultures. This is true of mathematics, ethics, and language as well. It does not follow that there is no mathematics, no ethics, no truth in language. It follows only that we begin somewhere and must reason from there.", + "I was an atheist who became a Christian by argument and against my will. The accident-of-birth thesis cannot account for me, or for the Muslim who becomes Christian, or the Christian who becomes Buddhist. People do change.", + ], + cites: ["Mere Christianity (1952), Bk. II", "Surprised by Joy (1955)"], + }, + aquinas: { + lede: "God is not unjust to those who never heard.", + body: [ + "The objection assumes that explicit Christian faith is the only path to God, and that those born outside earshot of the Gospel are damned by accident. The Church has never taught this. Those who through no fault of their own do not know Christ, but who seek God with a sincere heart and try to do his will as their conscience reveals it, may attain salvation.", + "What is universal is not the name of Christ but the natural law written on the heart, and the natural knowledge of God available to reason from creation. The Athenian and the Brahmin had access to these. Where they reasoned rightly toward the One, they reasoned toward the same God Christians worship — though they knew him imperfectly.", + "The accident of birth determines what one is taught. It does not determine what one is capable of knowing by the light of reason that every human shares.", + ], + cites: [ + "Summa Theologiae I.2.3 (the natural knowledge of God)", + "ST I-II.94 (natural law)", + "Lumen Gentium 16", + ], + }, + justin: { + lede: "The seeds of the Word were everywhere.", + body: [ + "I was a Platonist before I was a Christian, and I do not repent of having read Plato. Whatever was said rightly by any thinker — Greek, barbarian, before Christ or after — belongs to us Christians. For the Word who became flesh in Jesus is the same Word who scattered seeds of truth throughout the human race from the beginning.", + "When Socrates spoke of justice, when the Stoics spoke of the Logos, when the Hindu sage groped toward Brahman — they were not all simply wrong. They were partial. They held fragments of the truth that came whole in Christ.", + 'So the question is not "why was I born where I was?" but "what fragments did my tradition hold, and where do they point?" Every honest religion, examined closely, points beyond itself.', + ], + cites: ["First Apology 46", "Second Apology 10, 13"], + }, + newman: { + lede: "Probable arguments converge on certainty.", + body: [ + "Belief is not arrived at by a single decisive proof, like a geometric demonstration. It is reached by the convergence of many independent probabilities — the testimony of conscience, the historical evidence for Christ, the witness of the saints, the experience of grace, the coherence of doctrine with what one already knows of the world. What I call the illative sense is the mind's capacity to weigh these together.", + "The accident-of-birth objection treats faith as if it were a coin flip — heads Christianity, tails Islam, decided by latitude. But a serious adult convert does not flip a coin. He weighs evidence, much of which his birth culture did not give him, and some of which it actively obscured.", + "That a child believes what he is told is not scandalous. It is how children learn anything at all. The question is what the adult does with the inheritance — examine it, or merely repeat it. Christianity, more than any rival, invites the examination.", + ], + cites: ["An Essay in Aid of a Grammar of Assent (1870), ch. 8–9"], + }, + }, + }, + { + id: "bible", + n: 11, + title: "Scripture commands and condones the indefensible.", + short: "The Bible's problems", + steel: + "Slavery regulated rather than abolished (Lev. 25, Eph. 6). Herem warfare in Joshua. The Midianite massacre (Num. 31). Bears mauling children for mocking a prophet. Contradictions between Gospel accounts of the resurrection morning, the genealogies, the death of Judas. If this is a divinely authored book, the author has a great deal to answer for; if it isn't, the case collapses.", + quote: + "The God of the Old Testament is arguably the most unpleasant character in all fiction.", + quoteBy: "Richard Dawkins", + pub: "The Bible says some pretty awful stuff. How can it be the word of a good God?", + related: ["hell", "evil", "religion-violence"], + counters: { + augustine: { + lede: "If a passage seems to contradict charity, you have misread it.", + body: [ + "I will say this plainly, because it is the rule by which I read Scripture and by which I urge every Christian to read it: whoever takes from the divine writings a meaning that builds up love of God and neighbor has not yet been deceived, even if his interpretation is not what the human author intended. But whoever takes a meaning that contradicts charity has misunderstood, no matter how literally he reads.", + "The hard passages — the conquests, the imprecations, the laws we now find barbaric — were written into a particular people at a particular stage of moral formation. God accommodates himself to the capacities of his hearers, as a father speaks differently to a child than to a man. To read these passages flatly, as if they were timeless commands rather than steps in a long pedagogy, is to read them as the literalist and the atheist both read them: badly.", + "The trajectory of Scripture is from the herem to the Sermon on the Mount. The atheist who quotes Numbers against the Gospel must explain why Scripture itself moves in the direction it does.", + ], + cites: ["De Doctrina Christiana I.36.40", "Confessions III.5–7"], + }, + aquinas: { + lede: "Scripture has four senses, and the literal is only one.", + body: [ + "The literal sense is the foundation, but it is not the whole. Above it stand the allegorical (what the text signifies about Christ and the Church), the moral (what it teaches about how to live), and the anagogical (what it points to in our final end). A passage may be literally about a Canaanite war and allegorically about the soul's struggle against vice. To read only the surface is to read like a man who, shown a poem, complains about the spelling.", + "When the literal sense seems to demand something contrary to reason or to the divine goodness, this is a sign that the literal is figurative — that the human author, by divine accommodation, was using the idiom of his age. Reason and Scripture have one author and cannot truly contradict.", + "The Church has always taught that Scripture is to be read in the Tradition, with the Fathers, under the Magisterium. The atheist's preferred reading — flat, isolated, modern — is a method the Church never endorsed and never will.", + ], + cites: ["Summa Theologiae I.1.10", "Quodlibet VII.6.14–16"], + }, + newman: { + lede: "Doctrine develops; difficulties do not destroy.", + body: [ + "A thousand difficulties do not make one doubt. The honest reader of Scripture finds passages he cannot account for, episodes that trouble him, commands that seem to belong to another moral universe. So do I. So did every Father of the Church. The presence of difficulty is not the presence of disproof.", + "What the Church offers is not a flat text demanding that you accept every line as a freestanding moral imperative, but a living tradition that has been wrestling with these passages for two millennia. The development of doctrine — the slow unfolding of what was implicit in the deposit of faith — has, over centuries, drawn out the meaning of the harder texts and put them in their place.", + "The atheist reads the Bible the way he would read a memo from his employer: literally, isolated, every line equally weighted. This is the wrong genre. Scripture is the record of God forming a people, with all the texture and particularity that implies.", + ], + cites: [ + "An Essay on the Development of Christian Doctrine (1845)", + "Apologia Pro Vita Sua (1864)", + ], + }, + pastor: { + lede: "The hard passages are where the work is done.", + body: [ + "I have read these passages in front of the people I love and serve. I have read Joshua to a Bible study, and the imprecatory psalms at funerals, and Paul on slavery to a congregation that includes the descendants of slaves. I will not pretend the difficulty isn't there, and I will not pretend a clever footnote dissolves it.", + "But I will tell you what I have seen. The people who sit with these passages — who refuse both the atheist's dismissal and the fundamentalist's flattening — come out with a deeper faith, not a shallower one. They find that the God of the herem is also the God who weeps over Jerusalem. They find that Scripture is honest about violence in a way that lets them be honest about their own.", + "A book that only flattered us would be useless to us. Scripture's willingness to record what humans actually did, including the parts done in God's name, is what gives it the authority to indict us.", + ], + cites: [ + "pastoral experience", + "cf. Walter Brueggemann on the imprecatory psalms", + ], + }, + }, + }, + { + id: "scale", + n: 12, + title: "The universe doesn't look made for us.", + short: "The argument from scale", + steel: + "Thirteen point eight billion years. A hundred billion galaxies, each with a hundred billion stars. And the cosmic drama is supposed to hinge on one ape species on one rock during the last two thousand years? The proportions are absurd. A universe made for humanity would not bury humanity under this much irrelevant matter.", + quote: "The eternal silence of these infinite spaces frightens me.", + quoteBy: "Blaise Pascal (cited against the believer)", + pub: "The universe is huge and we're tiny. Why would God care about us?", + related: ["evidence", "science", "hiddenness"], + counters: { + pascal: { + lede: "Man is a reed, but a thinking reed.", + body: [ + "The eternal silence of the infinite spaces frightens me too. I have looked through the same telescope as the atheist and felt the same vertigo. Between the two infinities — the immensity of the cosmos and the abyss of the atomic — man is a nothing, a midpoint, lost.", + "And yet. The universe does not know it is vast. The galaxies do not know they are galaxies. Only this small thinking reed, perched on its rock, knows the size of what would crush it. By space the universe encompasses me; by thought I encompass the universe. The mind that grasps the cosmos is the strangest fact in the cosmos.", + "That the eternal God should bend to such a creature is astonishing. But once you grant that he made the thinking reed, you have already granted the more difficult thing. The scale of the rest is decoration.", + ], + cites: ["Pensées §72, §347 (Brunschvicg numbering)"], + }, + chesterton: { + lede: "Smallness is the Christian boast, not the atheist's discovery.", + body: [ + "The atheist announces, as if he had discovered it, that man is small in a vast universe. He has discovered nothing. Christianity has been saying this for two thousand years, and Judaism for longer. What is man, that thou art mindful of him? The Psalmist beat the astronomer to the punch by three millennia.", + "What is new is not the smallness but the conclusion drawn from it. The believer says: given this smallness, the divine attention is the most extraordinary fact imaginable. The atheist says: given this smallness, the divine attention is impossible. But the data are the same. The argument from scale is not an argument; it is a mood.", + "And it is a mood that depends, oddly, on the very Christian intuition it claims to refute — the intuition that human beings matter, that their being overlooked would be a scandal. A consistent materialist should not be offended by cosmic indifference. He should expect it, and shrug.", + ], + cites: [ + 'Orthodoxy (1908), ch. 2 ("The Maniac"), ch. 4 ("The Ethics of Elfland")', + ], + }, + lewis: { + lede: "The size of the universe was not news to anyone who looked up.", + body: [ + "Ptolemy knew the earth was a point compared to the heavens. Augustine knew it. The medievals, whom we caricature as thinking the cosmos was a snug box, in fact pictured a universe whose vastness terrified them more than ours terrifies us — because they peopled it with intelligences. The discovery of more space did not produce the modern unease. The loss of meaning did.", + "The argument from size is rhetorical, not logical. A flea is small; this does not prove the flea is unimportant to its dog. A galaxy is large; this does not prove it is important to anything. Importance is not measured in cubic light-years.", + "If the Incarnation is true, then God entered the smallest possible point of his own creation — a particular Jewish carpenter, in a particular year. The scandal of Christianity has never been that it makes too much of man. It is that it makes too much of one man.", + ], + cites: [ + 'Miracles (1947), ch. 7 ("A Chapter of Red Herrings")', + "The Discarded Image (1964)", + ], + }, + mystic: { + lede: "The drop does not contain the ocean. The ocean contains the drop.", + body: [ + "You speak of scale as though God were one large object among other objects, competing for room with galaxies. He is not. He is the ground in which galaxies and atoms equally rest. The hundred billion galaxies do not dwarf God; they are sustained, moment by moment, by the same act of being that sustains the sparrow.", + "When the contemplative speaks of God's attention to the soul, she does not mean that God has stopped attending to the supernovae in order to attend to her. She means that the divine presence is undivided, total, simultaneous — that the same love that holds the cosmos in being holds her, with the same fullness, in being.", + "The vastness you find oppressive, the saint finds liberating. There is no corner of the universe she could flee to where she would be more or less held than she is now.", + ], + cites: [ + "Meister Eckhart, Sermons", + "Julian of Norwich, Revelations of Divine Love ch. 5 (the hazelnut)", + ], + }, + }, + }, + { + id: "natural-evil", + n: 13, + title: "Earthquakes have no free will.", + short: "Natural evil", + steel: + "The free-will defense, even granted, only covers moral evil — what humans do to each other. It says nothing about the tsunami, the cancer cell, the child born with a genetic disease that kills her at four. No one chose these. They are built into the fabric of the world an omnipotent, omniscient, perfectly good creator chose to make.", + quote: "If a good God made the world, why has it gone wrong?", + quoteBy: "C.S. Lewis (citing the objector before answering)", + pub: "Earthquakes and cancer aren't anyone's fault. So why does God allow them?", + related: ["evil", "hell", "hiddenness"], + counters: { + aquinas: { + lede: "Evil is not a thing. It is the absence of a good that ought to be there.", + body: [ + 'Blindness is not an entity competing with sight; it is the lack of sight in something made to see. Cancer is not a creature; it is a disordering of cells made for order. When we ask "why did God create this evil?" we have already misstated the question. God creates being, and being is good. Evil is what happens when being falls short of itself.', + "Why does God permit such falling-short in the natural order? Because he created a world of secondary causes — a world in which fire genuinely burns, plates genuinely shift, cells genuinely divide — rather than a world of constant miraculous intervention. A universe of stable causes is the precondition for any creaturely action at all. Remove the stability, and you remove the creature.", + "This does not make the suffering small. It locates it. Natural evil is the cost of a world in which finite beings genuinely act. The alternative is not a better world but no world.", + ], + cites: [ + "Summa Theologiae I.48–49 (on evil as privation)", + "Summa Contra Gentiles III.71", + ], + }, + lewis: { + lede: "A world that yields to my will would have no other will in it.", + body: [ + "If matter were soft enough to spare us every pain, it would be soft enough to spare us every action. The same hardness of wood that lets me hammer a nail lets the nail go through my hand. The same gravity that holds me to my chair pulls the climber from the cliff. To ask for a universe with all the goods of stable nature and none of its dangers is to ask for a universe that contradicts itself.", + "This does not answer why this child gets this cancer. I do not know. No one knows. But it answers a different question — why a good God might create a world in which such things are possible. The possibility is the price of a world that is genuinely other than God, with its own causal integrity.", + "Pain, when it comes, is God's megaphone to a deaf world. I do not say this lightly; I lost my wife to cancer and I have written what it cost me. But I will not unsay it. The universe that hurts us is the same universe that lets us love each other. You cannot keep one and lose the other.", + ], + cites: [ + "The Problem of Pain (1940), ch. 2, 6", + "A Grief Observed (1961)", + ], + }, + augustine: { + lede: "Creation groans because creation fell.", + body: [ + "The world as it is is not the world as it was made. Scripture's witness is consistent: the disorder we observe in nature — the predation, the disease, the seismic violence — is not the original creation but the fallen one. Creation itself will be set free from its bondage to corruption, says Paul; it is in bondage now, and was not always.", + "How a moral fall produced a physical disorder is mysterious, and I will not pretend to map it. But the intuition that something is wrong with the world is not an argument against God. It is the most basic Christian claim. The atheist's complaint — that the world is broken — is exactly what we have been telling him for two thousand years.", + "The question is not whether the world is broken. It is whether it can be healed, and by whom.", + ], + cites: ["City of God XXII.22–24", "Romans 8:19–23"], + }, + francis: { + lede: "Brother fire burns, and is still our brother.", + body: [ + "I have called the sun my brother and the moon my sister. I have called death itself my sister. The world that hurts us is the same world that feeds us, and the creature does not curse the field for having stones in it.", + "When the wolf came to Gubbio and ate the people's livestock, I did not curse the wolf. I went and spoke with him, and made peace, because the wolf was hungry and the people were afraid, and both were God's. The world is not arranged for our comfort. It is arranged for a deeper good than comfort, and we are part of it, not the center of it.", + "The cancer is real, and the earthquake is real, and I will not insult the suffering by calling them small. But the same Lord who lets the rain fall on the just and the unjust gives us each other, to bind up wounds and bury the dead and sing in the dark.", + ], + cites: [ + "Canticle of the Creatures (1224)", + "Fioretti, ch. 21 (the wolf of Gubbio)", + ], + }, + catechism: { + lede: "Creation is on a journey toward a perfection not yet attained.", + body: [ + "The world that God created was good, but it was not finished. He willed creation to be in statu viae — in a state of journeying — toward an ultimate perfection still to come. This means that physical evil exists alongside physical good in the present order: with the appearance and disappearance of certain beings, with the constructive and destructive forces of nature. Earthquakes, predation, the slow extinction of species — these belong to a creation that is unfolding, not to a creation that has been broken from above.", + "The drama deepens with the entry of moral evil. Humanity, made for communion with God and entrusted with creation, turned away. This is the Fall: not the introduction of physics into a previously placid Eden, but the rupture of the creature meant to receive creation rightly, to lift it toward its end. Death entered human experience in a new mode. Creation, deprived of its appointed steward, groans. We know that the whole creation has been groaning in travail together until now.", + "Why God permits a creation that suffers, rather than imposing a finished perfection from the start, is a mystery to which faith gives only a partial answer. Almighty God, because he is sovereignly good, would never allow any evil whatsoever to exist in his works if he were not so all-powerful and good as to cause good to emerge from evil itself. The full answer waits on the end of the journey, when God will be all in all, and creation itself will be set free from its bondage to corruption.", + ], + cites: [ + "Catechism of the Catholic Church §§310, 385, 400, 412", + "Romans 8:19–23", + "cf. Augustine, Enchiridion 11 (quoted at CCC §311)", + ], + }, + }, + }, + { + id: "many-gods", + n: 14, + title: "Pascal's Wager doesn't pick a winner.", + short: "The many-gods rebuttal", + steel: + "Even granting the wager's logic, it cannot select between mutually exclusive faiths. Bet on Christ, lose to Allah. Bet on Allah, lose to Vishnu. Bet on the Christian God, and a sincere Calvinist will tell you you've still gone to hell for picking the wrong denomination. The wager only works if you've already, by other means, narrowed the field to one candidate — which is the entire question.", + quote: "The wager works only if the choice is already binary. It is not.", + quoteBy: 'common formulation; cf. William James, "The Will to Believe"', + pub: "Pascal's Wager doesn't tell me which god to bet on.", + related: ["evidence", "hiddenness"], + counters: { + pascal: { + lede: "The wager was never a starting point. It was a closing argument.", + body: [ + "Read me whole, not in fragments. The wager appears late in the Pensées, after I have spent hundreds of fragments arguing for the historical specificity of Christianity — the prophecies, the witness of the apostles, the figure of Christ, the strange persistence of the Jewish people, the testimony of the saints. The wager is addressed to a man who has already been brought to the threshold and cannot make himself step across.", + "To such a man I say: the cost of betting wrong on Christ is bounded; the cost of betting right is infinite. Given that you have already narrowed the field, the calculation favors faith. I never claimed it would narrow the field for you. That work is done by the evidence, not by the wager.", + 'The atheist who lobs "but what about Allah?" at me has not read me. Or has read only the fragment that flatters his refutation.', + ], + cites: ["Pensées §233 (the wager) — read in the context of §§194–232"], + }, + lewis: { + lede: "Christianity is not one mythology among many. It is the one that happened.", + body: [ + "I came to Christianity through the back door of mythology. I loved the dying-and-rising gods of the pagans — Balder, Adonis, Osiris — long before I loved Christ. What converted me was not the discovery that Christianity was unique, but the discovery that it was the true version of what the myths were groping toward. The pagans had dreamed it; the Jews had been prepared for it; in Christ it actually happened, in a particular place, under a particular Roman governor.", + "The world's religions are not interchangeable bets on a roulette wheel. They make incompatible historical claims, and those claims can be examined. Christianity uniquely stakes itself on a public, datable, falsifiable event — the resurrection. If the tomb was not empty, Paul says, our faith is in vain. No other religion makes itself so vulnerable to history.", + 'The wager, properly understood, is not "pick a god, any god." It is "having examined the evidence, commit."', + ], + cites: [ + "Mere Christianity (1952), Bk. II, ch. 3", + "Miracles (1947)", + '"Myth Became Fact" in God in the Dock', + ], + }, + newman: { + lede: "Many candidates do not mean equal candidates.", + body: [ + "That a question has multiple proposed answers does not mean the answers are equally weighted. There are many theories about what causes cancer; this does not mean every theory is one-in-many and therefore none can be chosen. The investigator weighs the evidence and the candidates resolve into a probable hierarchy.", + "The same is true of the religions. Examined seriously — their historical foundations, their internal coherence, the lives they have produced, their capacity to bear philosophical weight — they do not present as a flat menu. The convergence of probabilities, what I have called the illative sense, is exactly the faculty by which a serious person navigates such a field.", + 'The atheist\'s "many gods" objection treats every religion as evidentially equivalent. No serious comparative theologian believes this, including atheist ones. The objection survives only by refusing to do the actual comparison.', + ], + cites: [ + "Grammar of Assent (1870), ch. 8", + "Apologia Pro Vita Sua (1864)", + ], + }, + logician: { + lede: "The objection misunderstands decision theory.", + body: [ + "The many-gods objection is sometimes presented as if it were a knockdown refutation of the wager. It is not. It is a refinement. Decision theory under uncertainty handles competing hypotheses the same way regardless of the domain: you weight by prior probability and expected outcome.", + "If the priors over the candidate religions were genuinely uniform — every religion equally likely on the evidence — the wager would indeed dissolve into noise. But priors are almost never uniform. Some religions have more evidential support, more internal coherence, more historical specificity than others. Updating on this, the wager reconstructs itself for the leading candidate.", + 'The atheist who deploys "but what about Zeus?" is making a claim about priors: that Zeus and Yahweh are evidentially symmetric. He should be asked to defend that claim. He almost never can.', + ], + cites: [ + 'cf. Alan Hájek, "Waging War on Pascal\'s Wager" (2003) — and the responses', + ], + }, + }, + }, + { + id: "neuroscience", + n: 15, + title: "Religious experience is just brain chemistry.", + short: "Neuroscience of the divine", + steel: + "Stimulate the temporal lobe, get a mystical experience. Take psilocybin, meet God. Epileptic seizures produce conversions; brain tumors produce visions of angels. If we can reliably trigger encounters with the sacred by poking neurons, the encounters tell us about the neurons, not the sacred.", + quote: + "Mystical experience tells us about the brain, just as a dream tells us about the dreamer.", + quoteBy: "paraphrase of contemporary cognitive science of religion", + pub: 'If a brain scan can show why someone "feels" God, isn\'t God just in their head?', + related: ["evidence", "science", "hiddenness"], + counters: { + mystic: { + lede: "Mechanism is not refutation.", + body: [ + 'When I see a tree, light strikes my retina, neurons fire, the visual cortex assembles an image. I can describe every step of this process and the tree does not vanish. The mechanism by which I perceive is not an argument against the thing perceived. To say "your experience of the tree is just neurons" is to confuse the channel with the broadcast.', + "Religious experience has a neurological substrate. Of course it does. So does mathematical insight, romantic love, and the recognition of your mother's face. Showing the substrate has never disproved the object in any other domain. It is curious that this particular argument is deployed only against the sacred.", + "The mystic does not claim that her experience of God bypasses the brain. She claims that the brain, when properly disposed, perceives what is actually there. The atheist owes us a reason to think this case is different from every other case of perception.", + ], + cites: [ + "Teresa of Ávila, Interior Castle", + "Bernard McGinn, The Foundations of Mysticism", + ], + }, + lewis: { + lede: "The genetic fallacy is still a fallacy.", + body: [ + "Tell me where a belief came from and you have told me nothing about whether it is true. Newton's apple, Kekulé's dream of the snake, Archimedes in the bath — discoveries arrive through neurons firing in particular ways, and the discoveries are still true. To call religious experience \"just brain chemistry\" is to commit the same fallacy in reverse.", + 'There is also a self-defeat at the heart of the objection. If religious experience is debunked because it has a neural cause, then every experience — including the experience of being persuaded by neuroscientific arguments — has a neural cause. The atheist\'s confidence in his own reasoning is also "just neurons firing." If the objection works against the believer, it works against the objector. If it does not work against the objector, it does not work at all.', + "The honest question is not whether religious experience has a mechanism, but whether the mechanism is reliable. That requires looking at the lives the experiences produce, not at the scans alone.", + ], + cites: [ + 'Miracles (1947), ch. 3 ("The Self-Contradiction of the Naturalist")', + '"Bulverism" in God in the Dock', + ], + }, + aquinas: { + lede: "The soul is the form of the body. Of course the brain is involved.", + body: [ + "The objection presupposes a Cartesian dualism that the Church never taught. It imagines the soul as a ghost attached to a body, and triumphantly announces that touching the body affects the ghost. But the human person is not a ghost in a machine. The soul is the form of the body — the principle by which this matter is this living, thinking person. Naturally, then, what affects the body affects the person, including in his perception of God.", + "That a stroke can change personality, that a tumor can produce visions, that psilocybin can occasion mystical experience — none of this is news to a Thomist. The intellect, in this life, depends on the senses and on the brain. Nihil in intellectu nisi prius in sensu. We always know God through the body, never apart from it.", + "What the neuroscientist can show is that religious experience uses the brain. He cannot show, by neuroscience alone, that the brain generates the object rather than perceives it. That is a philosophical claim, not a neurological one.", + ], + cites: [ + "Summa Theologiae I.75–76 (on soul and body)", + "ST I.84 (on knowledge through the senses)", + ], + }, + scientist: { + lede: "Correlation is not the whole of causation.", + body: [ + "The cognitive science of religion is a real and interesting field, and I will not dismiss it. We have good data that certain brain states correlate with reported religious experience. We have plausible evolutionary stories about why humans are disposed to detect agency, to feel awe, to seek transcendence. All of this is genuine science.", + 'But the inference from "religious experience has neural correlates" to "religious experience has no real object" is not a scientific inference. It is a philosophical one, smuggled in. The same data are equally compatible with the hypothesis that the brain evolved to detect a real transcendent dimension of reality, and with the hypothesis that it evolved to fabricate one. Choosing between these requires arguments outside neuroscience.', + "A careful scientist distinguishes what the data show from what she wishes they showed. On the question of whether the object of religious experience exists, the brain scans are silent.", + ], + cites: [ + "Andrew Newberg, Principles of Neurotheology", + "Justin Barrett, Why Would Anyone Believe in God?", + ], + }, + }, + }, + { + id: "prayer", + n: 16, + title: "Tested under controlled conditions, intercessory prayer fails.", + short: "Prayer doesn't work", + steel: + "The 2006 STEP study (Templeton-funded, ten years, 1,800 cardiac patients) found no benefit from intercessory prayer — and a slight negative effect for those who knew they were prayed for. Amputees never regrow limbs. Catholic and Protestant child mortality rates track local medicine, not local devotion. If prayer is real communication with an omnipotent friend, the silence on the line is deafening.", + quote: + "The proper, if somewhat ungainly, formulation is: those who knew they were being prayed for had a slightly higher rate of complications.", + quoteBy: "STEP Project, 2006", + pub: "If prayer worked, amputees would grow limbs back. They don't.", + related: ["evidence", "miracles", "hiddenness"], + counters: { + lewis: { + lede: "Prayer is not a vending machine.", + body: [ + 'The objection imagines prayer as a system of inputs and outputs: enough prayers in, the desired outcome out. On this model, of course prayer "fails." It would also fail as a model of friendship, or marriage, or any relation between persons. You do not summon your wife by repeating her name with sufficient sincerity. She is not a vending machine, and neither is God.', + "Prayer in the Christian tradition is not primarily a mechanism for getting things. It is the alignment of the creature with the Creator — a participation in the divine will, not a manipulation of it. Thy will be done is the model, not an afterthought. When Jesus prays in Gethsemane, he asks; he is refused; he submits. This is the pattern.", + "That said, prayers are answered. I have seen them answered. But the answer comes on God's terms and his timing, and is often not what was asked. Asked for relief, we are sometimes given strength to bear. Asked for the dead to be raised, we are sometimes given the courage to bury them.", + ], + cites: [ + '"The Efficacy of Prayer" in The World\'s Last Night (1960)', + "Letters to Malcolm: Chiefly on Prayer (1964)", + ], + }, + aquinas: { + lede: "We pray not to change God, but to be changed by God.", + body: [ + "A common confusion: that prayer is meant to alter God's mind, and that if it doesn't, it has failed. God's will is eternal and unchanging. We pray not to inform him of our needs (he knows them already) nor to persuade him to act (he has eternally willed what he wills) but because he has eternally willed that certain goods come to us through our asking.", + "Prayer is thus a real cause in the chain of providence — but its primary effect is on the one praying. To pray rightly is to conform one's desire to God's, to learn what to want by asking for it, to become the kind of creature for whom the petition makes sense. The petition that is answered changes the petitioner more than the world.", + "The Templeton study tested whether God could be made to function as a magic spell when invoked by strangers about strangers. The result — that he cannot — is exactly what the tradition predicts.", + ], + cites: [ + "Summa Theologiae II-II.83 (on prayer)", + 'ST II-II.83.2 ("Whether it is fitting to pray")', + ], + }, + augustine: { + lede: "My mother prayed for years. She got something better than she asked for.", + body: [ + "My mother Monica prayed for years that I would not go to Rome, because she feared I would be lost there. I went to Rome anyway, and there I was found — converted, baptized, returned to the faith she had wanted for me. She had asked for one thing and been given another. The thing she had been given was the thing she had really wanted, but she had not known how to name it.", + "This is the shape of prayer in a fallen world. We pray with the desires we have, which are mixed and partial. God answers, when he answers, the deeper desire we did not know we had. The prayers that look unanswered are sometimes answered at a depth we could not have specified.", + "I will not pretend this consoles every grief. The mother whose child dies prayed in a depth I have not touched. But I will say what I have seen: that those who pray long and honestly are rarely surprised, in the end, that God did not give them what they asked. They are surprised by what he gave instead.", + ], + cites: ["Confessions V.8 (Monica's prayer)", "IX.10–13 (her death)"], + }, + pastor: { + lede: "I have been at the bedsides. I will not lie about what I saw.", + body: [ + "I have prayed for healing and seen it. I have prayed for healing and watched the person die. I will not give you a clean theology that flattens this. The honest answer is that intercessory prayer is real, and its results are unpredictable, and any pastor who tells you otherwise is selling something.", + "What I have seen, more reliably than miraculous healing, is this: the people who are prayed for, and who pray, die better. They are less afraid. Their families are less shattered. The community around them is more present. None of this shows up in a Templeton study because none of this was what the study measured. The study measured cardiac complications. Prayer was never primarily about cardiac complications.", + "The amputee question is the cleanest version of the objection, and I will be plain: I do not know why limbs are not restored. I know that other things are restored — marriages, addictions, the will to live — and that I have watched it happen. The atheist is right that the data on prayer-for-things is messy. He is wrong that this settles the question of whether God listens.", + ], + cites: [ + "pastoral experience", + "cf. Tim Keller, Prayer: Experiencing Awe and Intimacy with God (2014)", + ], + }, + }, + }, + { + id: "pleasure", + n: 17, + title: "Why would God make it feel good if it's wrong?", + short: "The pleasure principle", + steel: + "The Catholic prohibitions on sex outside marriage, masturbation, contraception, and homosexual acts all run into the same wall: the activities in question are designed, by the same God who allegedly forbids them, to be intensely pleasurable. Either pleasure is a reliable signal that something is good — in which case the prohibitions are perverse — or pleasure is not a reliable signal, in which case God built a system designed to deceive us about our own good. Neither option flatters the believer.", + quote: + "If God didn't want us to enjoy it, he had a strange way of showing it.", + quoteBy: "common formulation; cf. Bertrand Russell, Marriage and Morals", + pub: "If God doesn't want me touching myself, why does it feel so good?", + related: ["morality", "bible", "evil"], + counters: { + aquinas: { + lede: "Pleasure follows the good. It does not define it.", + body: [ + "The objection assumes that pleasure is the criterion of goodness — that if an act is pleasurable, it must be good, and any prohibition must be arbitrary. This is precisely backwards. In the order of nature, pleasure is attached to goods to draw us toward them. Eating is pleasurable because eating sustains life; sex is pleasurable because it generates and binds life. The pleasure is the lure; the good is what it lures us toward.", + "What follows is that pleasure is reliable when ordered to its proper end and unreliable when severed from it. The glutton experiences real pleasure in eating beyond his need; the pleasure is genuine, but it is no longer doing the work it was designed for. The same applies to the sexual faculty. Detached from the goods it exists to serve — the union of spouses, the begetting of children — the pleasure remains, but it has been cut loose from what made it good in the first place.", + 'To say "it feels good, therefore it is good" is to mistake the signpost for the destination. A counterfeit coin still feels like money in the hand. The question is whether it spends.', + ], + cites: [ + "Summa Theologiae I-II.34 (on pleasure)", + "ST II-II.153–154 (on lust and its species)", + 'ST I-II.31.7 ("Whether bodily pleasure is greater than spiritual?")', + ], + }, + lewis: { + lede: "God invented pleasure. The devil cannot make pleasures, only steal them.", + body: [ + "I want to grant the objection more than the objector expects. Pleasure is good. Sexual pleasure is good. The Christian who pretends otherwise has already lost the argument, because he is contradicting Genesis, which calls the body very good, and the Song of Songs, which is in the canon for a reason. The enemy of Christianity here is not the hedonist but the Manichee, who thinks the flesh itself is the problem.", + "What Christianity teaches is not that pleasure is bad but that pleasure has a grain, like wood, and that working against the grain splinters the thing you are working on. The pleasure of food is good; the pleasure of food severed from nourishment produces the bulimic. The pleasure of drink is good; severed from its proper use it produces the alcoholic. Sexual pleasure is good; severed from the union it was made to seal, it produces — well, look around.", + 'The screwtape question is not "does it feel good?" but "what does more of it look like, ten years on?" The pleasures that diminish you, that need ever-larger doses, that leave you lonelier than they found you — those are the pleasures the tradition has flagged. Not because they are pleasures, but because they are pleasures pointed at nothing.', + ], + cites: [ + "The Screwtape Letters (1942), Letter IX", + 'Mere Christianity, Bk. III, ch. 5 ("Sexual Morality")', + 'The Four Loves (1960), ch. 5 ("Eros")', + ], + }, + catechism: { + lede: "The pleasure is good. The use is what the moral law addresses.", + body: [ + "The Church does not teach, and has never taught, that sexual pleasure is evil. The acts in marriage by which the intimate and chaste union of the spouses takes place are noble and honorable; the truly human performance of these acts fosters the self-giving they signify and enriches the spouses in joy and gratitude. Pleasure within the integrity of the conjugal act is a good willed by God.", + "What the moral law addresses is not pleasure itself but the use of the sexual faculty apart from its meaning. The faculty has two ends inscribed in its very structure: the union of the spouses and the transmission of life. These are not arbitrary rules imposed from outside; they are what the act is. To take the pleasure while deliberately excluding the meaning — through masturbation, through contraception within the act, through acts of their nature closed to either union or life — is to use the faculty against itself.", + "This teaching is demanding, and the Church does not pretend otherwise. Many find it difficult; many fail; the confessional exists for this reason among others. But the demand is not arbitrary cruelty. It is the recognition that the body speaks a language, and that the moral life consists in not lying with the body about what one is doing.", + ], + cites: [ + "Catechism of the Catholic Church §§2331–2336 (vocation to chastity)", + "§§2351–2356 (offenses against chastity)", + "§§2360–2365 (conjugal love)", + "Gaudium et Spes §49 (quoted at CCC §2362)", + ], + }, + chesterton: { + lede: "The fence around the garden is the reason there is a garden.", + body: [ + "The modern man looks at a fence and asks why it is there. If he is wise, he does not tear it down until he has found out. The Christian rules around sex look, from a sufficient distance, like fences around nothing — arbitrary lines drawn across an open field of pleasure. Walk closer and you find that the field is a garden, and the fence has been keeping the wolves out.", + 'The argument from pleasure proves too much. If "it feels good, therefore it is good" were a moral principle, it would license every addiction and excuse every betrayal. The man cheating on his wife also reports that it feels good. The drunk reports the same. Of course it feels good. The question every grown person eventually has to answer is whether the things that feel good are also the things that build a life worth having ten years from now, and twenty, and at the deathbed.', + "Christianity's sexual ethic is unfashionable. It has always been unfashionable. It was unfashionable in pagan Rome, which is precisely why Christianity spread there — it offered, for the first time in that world, a vision in which women and slaves and unwanted children were not disposable. The hedonist objection sounds new. It is in fact the oldest objection there is, and the strangest fact in history is how many tired hedonists, having tried the alternative, have come back to the fence and looked again at the garden.", + ], + cites: [ + 'The Thing (1929), ch. 4 ("The Drift from Domesticity") — the famous "fence" passage', + "What's Wrong with the World (1910), Part III", + "Orthodoxy (1908), ch. 7", + ], + }, + }, + }, + { + id: "projection", + n: 18, + title: "Religion is psychological projection.", + short: "The cosmic father", + steel: + "We invented God because we miss our actual fathers, fear death, and want the universe to be on our side. The doctrine of providence is the wish that someone is watching. The doctrine of heaven is the wish that we don't really die. The doctrine of judgment is the wish that the wicked don't really get away with it. Strip the wishes away and there is no residue.", + quote: + "Religious ideas are illusions, fulfilments of the oldest, strongest, and most urgent wishes of mankind.", + quoteBy: "Sigmund Freud, The Future of an Illusion", + pub: "You only believe in God because you want it to be true.", + related: ["evidence", "hiddenness", "morality"], + counters: { + lewis: { + lede: "A creature is not born with desires unless satisfaction for those desires exists.", + body: [ + "A baby feels hunger; well, there is such a thing as food. A duckling wants to swim; well, there is such a thing as water. Men feel sexual desire; well, there is such a thing as sex. If I find in myself a desire which no experience in this world can satisfy, the most probable explanation is that I was made for another world. The wish-fulfillment objection treats human longing as evidence against its object. In every other domain we treat it as evidence for one.", + "The atheist version of the argument says: you long for a Father, therefore you invented one. Run the same argument on hunger and you get: you long for food, therefore food does not exist. The structure is absurd. What the longing actually shows is that the longing is for something — and the question of whether that something is real cannot be settled by pointing out that you want it.", + "I will go further. Freud's theory is itself wish-fulfillment, for those who wish there were no Father to answer to. The desire to be free of a moral lawgiver is at least as primal as the desire to have one. If the genetic argument debunks belief, it debunks unbelief on the same terms.", + ], + cites: [ + 'Mere Christianity (1952), Bk. III, ch. 10 ("Hope")', + "The Weight of Glory (1941)", + "Surprised by Joy (1955), ch. 1, 11", + ], + }, + chesterton: { + lede: "Atheism is the most consoling religion ever invented.", + body: [ + "The man who says Christianity is a comforting fairy tale has never tried to live by it. He has confused Christianity with whatever cozy childhood pieties he is rebelling against. Real Christianity tells you that you are a sinner, that you must forgive your enemies, that the rich will have a hard time of it, that you will be judged for every idle word, and that the cost of discipleship is your life. If this is wish-fulfillment, the wishes involved are extraordinarily perverse.", + "What is actually comforting is the doctrine that there is no God to whom one must answer, no soul that survives death to face judgment, no objective moral law one can be measured against. The atheist sleeps better than the Christian and always has. The honest atheists know this. Camus knew it. Nietzsche, who wanted the death of God to terrify, knew that his contemporaries were taking it as good news and despised them for it.", + "The wish-fulfillment argument should be turned around and pointed at the one making it. Cui bono? Who benefits from the cosmic absence? The man who would rather not be watched.", + ], + cites: [ + 'Orthodoxy (1908), ch. 6 ("The Paradoxes of Christianity")', + "The Everlasting Man (1925), Part II, ch. 1", + ], + }, + logician: { + lede: "The genetic fallacy.", + body: [ + "To explain the origin of a belief is not to refute the belief. This is among the most basic distinctions in the philosophy of argument, and the wish-fulfillment objection violates it as a matter of structure. How someone came to believe X is logically independent of whether X is true. A man who believes the bridge is safe because his mother told him so may still be standing on a safe bridge.", + "Freud's argument, applied consistently, dissolves itself. The belief that religious belief is wish-fulfillment is itself a belief, held by particular humans for particular psychological reasons. If the origin of a belief settles its truth, then we can debunk Freud by examining Freud's psychology — which is exactly what later analysts have done, with results unflattering to the founder of the discipline. The argument cannot be deployed against religion without also being deployable against itself.", + "There is a legitimate question buried in the objection: given that we have psychological reasons to want X, can we still arrive at X by good evidence? The answer is yes, the same way we arrive at any belief — by examining the evidence on its merits and remaining alert to bias. This is hard, but it is hard in the same way for the atheist.", + ], + cites: [ + "Antony Flew, Thinking About Thinking (1975)", + "cf. Alvin Plantinga, Warranted Christian Belief (2000), ch. 5–6", + ], + }, + aquinas: { + lede: "The natural desire for God is evidence, not illusion.", + body: [ + "Every faculty in nature is ordered toward an object that exists. The eye is for light; light exists. The intellect is for truth; truth exists. The will is for the good; the good exists. It would be a strange exception to this universal pattern if the deepest human longing — the restlessness Augustine names, the desire for the infinite that no finite thing satisfies — pointed at nothing.", + "The argument, properly stated, is not that God exists because we want him. It is that the universal human capacity to desire what no creature can give is itself a feature of human nature requiring explanation. The materialist must explain why evolution would shape an animal that is not at home in the world it evolved for. The Christian explanation — that we are made for God and remain restless until we rest in him — is at minimum a candidate, and a candidate that fits the data better than its alternatives.", + "What the objection mistakes for projection is in fact the testimony of the creature about its own end.", + ], + cites: [ + "Summa Contra Gentiles III.48–51", + "Summa Theologiae I-II.2 (on the ultimate end of man)", + "cf. Augustine, Confessions I.1", + ], + }, + }, + }, + { + id: "faith-reason", + n: 19, + title: "Faith is the abdication of reason.", + short: "Belief without evidence", + steel: + "Science proceeds by evidence, falsification, and revision. Religion proceeds by faith — which means believing things you have no good reason to believe. The two are not complementary; they are opposites. A scientist who believed things on faith would be drummed out of his field. The religious person celebrates as a virtue what every other domain treats as a vice.", + quote: + "Faith is the great cop-out, the great excuse to evade the need to think and evaluate evidence.", + quoteBy: "Richard Dawkins", + pub: "Faith just means believing stuff without proof.", + related: ["evidence", "science", "intelligence"], + counters: { + aquinas: { + lede: "Faith is assent to truth on the authority of a trustworthy witness.", + body: [ + "The objection assumes that faith means believing without reason. This is not what the word has ever meant in the Catholic tradition. Faith is the assent of the intellect to a truth on the basis of testimony — specifically, the testimony of God, whose veracity is the ground of the assent. It is not opposed to reason; it is reason operating on a particular kind of evidence, namely the witness of one who knows.", + "You believe a great many things this way already. You believe that Australia exists, though you have not been there. You believe that the American Revolution happened, though you did not see it. You believe your mother is your mother on the testimony of those who were present at your birth. None of this is irrational. It is the ordinary operation of a finite mind that cannot verify everything firsthand and must rely on credible witnesses.", + "What faith adds is not the structure of testimonial assent but the witness — God himself, whose authority exceeds that of any human source. The reasonableness of faith therefore depends on the prior question of whether God has in fact spoken, which is a question reason can examine. The motives of credibility — miracles, prophecy, the holiness of the saints, the spread of the Church — are not faith itself but the rational grounds for entertaining faith.", + ], + cites: [ + "Summa Theologiae II-II.1–2 (on faith)", + "ST II-II.4.1 (the definition of faith)", + "Vatican I, Dei Filius ch. 3 (on faith and reason)", + ], + }, + newman: { + lede: "Most of what we know, we know by accumulated probability, not demonstration.", + body: [ + 'The model of knowledge implied by the objection — that genuine knowledge is what can be proven by deductive certainty or experimental replication, and everything else is mere "faith" — describes almost nothing of what any actual person actually knows. Outside of mathematics and a narrow band of laboratory science, we know things by the convergence of independent probabilities, weighed by what I have called the illative sense.', + "You know that your spouse loves you. You cannot prove it the way you prove a theorem. You believe it because of ten thousand small evidences — looks, gestures, sacrifices, the texture of years — none of which is decisive alone, all of which together produce certitude. This is not irrationality. It is the ordinary structure of how rational adults arrive at the most important conclusions of their lives.", + "Faith in God is reached by the same faculty. Not by a single knockdown proof but by the convergence of conscience, history, philosophical argument, the witness of the saints, the experience of grace, and the coherence of doctrine. The man who demands a syllogistic demonstration before he will believe will also, if he is consistent, never be able to say he loves his wife.", + ], + cites: [ + "An Essay in Aid of a Grammar of Assent (1870), esp. ch. 8–9", + "Apologia Pro Vita Sua (1864)", + ], + }, + logician: { + lede: "Every belief system rests on testimony.", + body: [ + "Consider what the average educated atheist actually knows about, say, evolution. He has not done the genetic sequencing. He has not dug the fossils. He has not read the original Origin of Species, much less the technical literature. He believes evolution is true because credible authorities — scientists, textbooks, teachers — have told him so, and the institutions that produced them are reliable. This is exactly the structure of religious faith: assent based on trusted testimony.", + 'The atheist\'s belief in evolution is not therefore irrational. Trust in expert testimony, when the experts are trustworthy and the institutions reliable, is a perfectly sound epistemic strategy. But it is not categorically different from the Catholic\'s belief in the resurrection. Both rest on testimony; both can be examined for the credibility of the witnesses; both involve a non-zero leap from "the witnesses seem reliable" to "I assent to what they say."', + "The Dawkins formulation — that faith means believing without evidence — is not a description of what religious people do. It is a definition rigged to make the conclusion automatic. Substitute the actual definition (assent on the basis of testimony) and the supposed gulf between faith and reason narrows to nothing.", + ], + cites: [ + "C.A.J. Coady, Testimony: A Philosophical Study (1992)", + "cf. Alvin Plantinga, Warranted Christian Belief (2000)", + ], + }, + lewis: { + lede: "Faith is holding on to what your reason has accepted, against changing moods.", + body: [ + "I want to distinguish two things that are often confused. There is faith in the sense of arriving at a belief, and faith in the sense of sticking with a belief once arrived at. The first is the work of evidence and reason; the second is the work of will and habit. The atheist's caricature confuses them deliberately.", + "When I am cheerful and well-rested, the case for Christianity seems obvious. When I am frightened, exhausted, or in love with the wrong person, the same case looks thin. This is not because the evidence has changed; it is because I have. Faith, in the second sense, is the discipline of holding to what I concluded in my best moments when I am no longer in my best moments. Every serious belief — scientific, moral, personal — requires this. The scientist who abandons his theory the first time the data look wobbly is not a better scientist than the one who holds on while checking his work.", + "The atheist who imagines that his unbelief requires no such discipline has not examined his own moods. He, too, holds his views against the pull of contrary feeling. He simply does not call it faith.", + ], + cites: [ + 'Mere Christianity (1952), Bk. III, ch. 11 ("Faith")', + "Mere Christianity, Bk. III, ch. 12 (the second kind of faith)", + ], + }, + }, + }, + { + id: "mythicism", + n: 20, + title: "Christ is a recycled myth.", + short: "Jesus never existed", + steel: + "The story of a dying-and-rising god born of a virgin, performing miracles, and being resurrected on the third day predates Christianity by centuries. Horus, Mithras, Dionysus, Osiris, Attis — the parallels are legion. The Gospels were written decades after the alleged events, by partisans, in Greek, far from Palestine. There is no contemporary non-Christian record of Jesus. The simplest explanation is that the figure is fictional, assembled from the mythological raw material of the Hellenistic world.", + quote: + "Did Jesus exist? You probably think this question is settled. It isn't.", + quoteBy: "Richard Carrier, On the Historicity of Jesus", + pub: "Jesus is just a copy of older pagan gods.", + related: ["miracles", "evidence", "science"], + counters: { + historian: { + lede: "Even the agnostic scholars say he existed.", + body: [ + "I am not a believer, and I will not pretend to be one. I am a historian of late antiquity, and I am here to tell you that the mythicist position is not held by any serious scholar of the period in any major secular university. This is not a matter of religious bias. The faculty of ancient history at Oxford, Cambridge, Harvard, Yale, the Sorbonne — populated overwhelmingly by secular and agnostic scholars — agree that Jesus of Nazareth existed and was crucified under Pontius Pilate. The dispute is over what to make of him, not whether to count him.", + "The reasons are technical but solid. Paul's letters, written within twenty to thirty years of the crucifixion, refer to Jesus's brother James as a person Paul personally met. The historian Tacitus, writing in 116 AD, mentions \"Christus, who was executed by the procurator Pontius Pilate during the reign of Tiberius\" — and Tacitus was no Christian. Josephus, a Jewish historian writing in the 90s, mentions Jesus twice, once in a passage that has been interpolated by later Christian copyists but that almost all scholars agree contains an authentic core. The criterion of embarrassment — historians ask why a community would invent details that embarrass them — gives us a crucified messiah, baptism by John (which makes Jesus look subordinate), and a Galilean origin (which made him an unlikely candidate to begin with). You do not invent these details. You inherit them.", + "The dying-and-rising-god parallels are mostly bogus. Most of the alleged parallels — Horus born of a virgin on December 25th, Mithras crucified and resurrected — are nineteenth-century inventions or massive overreadings of fragmentary evidence. Read the actual primary sources and the parallels evaporate. What you are left with is a Galilean Jewish preacher, executed under Pilate, whose followers shortly afterward began making extraordinary claims about him. That much is history. What to do with it is theology.", + ], + cites: [ + "Bart Ehrman, Did Jesus Exist? (2012)", + "Maurice Casey, Jesus: Evidence and Argument or Mythicist Myths? (2014)", + "Tacitus, Annals XV.44", + "Josephus, Antiquities XX.9.1, XVIII.3.3", + ], + }, + lewis: { + lede: "I have read myths. The Gospels are not myths.", + body: [ + "I spent my professional life reading ancient and medieval literature, and I will say something the mythicist cannot: I know what myths read like, and the Gospels do not read like them. Myths are vague about geography, vague about chronology, populated by figures who exist outside ordinary time. The Gospels name a Roman procurator, a Jewish high priest, a Galilean tetrarch, a specific tax census. They report awkward, pointless details — the pillow Jesus slept on in the boat, the way he wrote in the dust, his irritation with his disciples. Myths do not have pillows in them. Reportage has pillows in it.", + "If the Gospel writers were inventing a mythological figure, they were inventing in a genre that did not yet exist — realistic biographical fiction. No one was writing this way in the first century. The novelistic technique that produces the Jesus of the Gospels was not developed until the eighteenth century. Either the evangelists were two thousand years ahead of their literary moment, or they were doing something other than inventing. Occam suggests the latter.", + "The mythicist also has to explain the rise of Christianity. A movement that recruits Jewish monotheists into the worship of a crucified man — crucifixion being the most shameful death the ancient world could imagine — has a steep hill to climb if its central figure never existed. The hill becomes much gentler if he did.", + ], + cites: [ + '"Modern Theology and Biblical Criticism" in Christian Reflections (1967)', + '"Myth Became Fact" in God in the Dock (1970)', + "An Experiment in Criticism (1961)", + ], + }, + chesterton: { + lede: "Pontius Pilate is not a mythological figure.", + body: [ + "The genius of the Christian creed is that it grounds itself in the most embarrassing specificity. Suffered under Pontius Pilate. No mythology does this. Mythology lives in illo tempore, in the time of beginnings, when the gods walked. Christianity locates its central act under a specific Roman administrator whose career we can date, whose coins we have, whose archaeological inscriptions exist. This is not how myths work. It is the opposite of how myths work.", + 'The mythicist argument requires us to believe that early Christians, wishing to fabricate a god, chose to attach him to the most awkward possible historical handle — a recent execution, in a remote province, by a named bureaucrat. It is as if someone fabricating a religion today set it under "the second Obama administration." You do not invent legends with bureaucratic timestamps. You inherit them.', + "The dying-and-rising god parallels are the favorite weapon of the mythicist, and the weakest. Frazer's Golden Bough, on which most of the parallels depend, has been quietly demolished by every generation of subsequent anthropology. The pagan parallels, examined closely, turn out to be either much later than Christianity (and dependent on it), or so structurally different that the comparison is meaningless. The atheist owes us a citation. He almost never has one that survives examination.", + ], + cites: [ + "The Everlasting Man (1925), Part II", + 'Orthodoxy (1908), ch. 8 ("The Romance of Orthodoxy")', + ], + }, + aquinas: { + lede: "The argument from the spread of the Church.", + body: [ + "Even setting aside the textual evidence, the historical fact of the Church's expansion is itself an argument. Within a generation of the crucifixion, communities devoted to the worship of a particular Galilean Jew had spread across the Roman Empire, withstood three centuries of intermittent persecution, and converted the empire that crucified their founder. This expansion happened in literate, hostile, well-documented territory. Roman authorities, Jewish authorities, and pagan philosophers all had every motive to refute the Christian claim by producing evidence that the founder had not existed. None of them did. They argued instead that he had existed and that his followers were wrong about him.", + "This is not proof of the Resurrection. It is, however, evidence that the existence of Jesus was not a matter of dispute even among his ancient enemies. The mythicist position is not merely a modern academic minority view; it is a position the ancient world itself never seriously entertained, including the parties most motivated to entertain it.", + "What the believer adds to the historian's account is not a different set of facts but a different reading of the same facts. The historian gives us a man crucified under Pilate whose followers said impossible things about him. The believer says: those things were true.", + ], + cites: [ + "Summa Contra Gentiles I.6 (the conversion of the world as a sign)", + "Summa Theologiae II-II.1.4 ad 1", + ], + }, + }, + }, + { + id: "corruption", + n: 21, + title: "Your institution is morally bankrupt.", + short: "The corrupt church", + steel: + "The Catholic Church spent decades concealing the systematic sexual abuse of children by its clergy. The Borgia popes ran the Vatican as a criminal enterprise. The Vatican Bank has been implicated in money laundering across multiple decades. Inquisitors burned dissidents. Bishops blessed colonial conquest. An institution with this record is not a credible vehicle of divine truth, regardless of what its doctrines claim on paper.", + quote: "The Church has been weighed in the balance and found wanting.", + quoteBy: + "common formulation; cf. Boston Globe Spotlight investigation, 2002", + pub: "If the Church were really God's, why is it so corrupt?", + related: ["religion-violence", "morality", "bible"], + counters: { + pastor: { + lede: "I will not defend the indefensible. I will tell you what I have seen.", + body: [ + "The abuse crisis is the worst thing the Catholic Church has done in my lifetime, and possibly in centuries. I will not soften it, contextualize it, or compare it to other institutions. Children were raped by priests. Bishops covered for them. The institutional apparatus that should have protected the victims protected the perpetrators instead. Anyone who wants to be Catholic in this century must look at this directly, without flinching, and let it do its work on them.", + "What I can tell you is what I have also seen. I have seen a Church that, slowly and incompletely, has begun to face what it did. I have seen survivors who, against every reason, returned to the sacraments and found something there that the men who hurt them had not destroyed. I have seen priests of my generation who entered seminary knowing the cost of the collar in this era and went anyway, because they believed there was something here worth saving. I have buried good men and ordained good men, and I will not pretend either set was the whole story.", + "The question the objection asks is whether an institution this compromised can still be the vehicle of grace. The Catholic answer, hard-won and historically ancient, is yes — not because the institution deserves to be, but because grace is not contingent on the worthiness of its ministers. The God who entrusted his Church to Peter, who denied him three times, has always worked through unworthy custodians. This is not a defense of the unworthiness. It is an account of the strangeness of how grace travels.", + ], + cites: [ + "Spotlight (2002, Boston Globe) and subsequent investigations", + "the McCarrick Report (2020)", + "cf. Pope Benedict XVI, Letter to the Catholics of Ireland (2010)", + ], + }, + newman: { + lede: "The holiness of the Church does not reside in the holiness of her members.", + body: [ + "The Church is at once a divine institution and a human one, and the human side is exactly as broken as humans are. To expect otherwise is to expect what the Church has never claimed for herself. The Creed says I believe in one, holy, catholic, and apostolic Church; it does not say I believe in a Church whose members are uniformly holy. The first is a doctrinal claim about the institution's character and mission; the second would be empirically refuted on any given Tuesday.", + "What the Church claims is that, despite the sins of her members — including her highest officials, including in some periods the majority of her bishops — the deposit of faith, the validity of the sacraments, and the indefectibility of her core teaching are preserved by the action of the Holy Spirit. This is a strong claim and a humble one. It is strong because it survives the historical record; it is humble because it does not depend on pretending the historical record is better than it is. The Borgia popes did not invalidate the Eucharist. The Inquisitors did not unmake baptism. The bishops who covered for abusers did not erase the Gospel they failed to preach.", + "To grant the institution's corruption is therefore not, by Catholic lights, to refute the institution's claim. It is to confirm the doctrine of original sin, applied to the Church herself. The skeptic and the saint agree that the Church is full of sinners. They disagree about what follows.", + ], + cites: [ + "An Essay on the Development of Christian Doctrine (1845)", + "Apologia Pro Vita Sua (1864)", + "cf. Lumen Gentium §8 (the Church semper purificanda, always in need of purification)", + ], + }, + augustine: { + lede: "The Donatists asked this question first. The Church gave its answer.", + body: [ + "In my own day there was a movement, the Donatists, who held that the sacraments administered by sinful or compromised clergy were invalid. The bishops who had handed over the Scriptures during the persecutions, they said, had forfeited their priesthood; the Church needed to be a Church of the pure. I argued against them, at length and with the support of councils, and the Church's settled answer is this: the validity of the sacrament does not depend on the holiness of the minister, but on the action of Christ working through him.", + "This is not a convenient excuse. It is a hard-won doctrine, paid for by a long controversy. If the worthiness of the minister determined the validity of the sacrament, no one could ever be sure his baptism was real, his marriage sacramental, his absolution effective — because no one can be sure of another's worthiness, and most of the time the minister himself cannot be sure of his own. The doctrine ex opere operato — that the sacrament works by the work worked, not by the worker — is what makes the sacramental life possible at all.", + 'The corollary is the one the objection misses: the Church has always known she was full of sinners, including in her sanctuary. The Catholic position is not "look how holy we are." It is "look how holy the grace is that works even through us." The historical record of clerical corruption is not a refutation of this teaching. It is the situation the teaching was developed to address.', + ], + cites: [ + "Contra Litteras Petiliani", + "De Baptismo Contra Donatistas", + "cf. Catechism of the Catholic Church §1128 (on ex opere operato)", + ], + }, + chesterton: { + lede: "The Church has been going to the dogs for two thousand years and somehow keeps outliving the dogs.", + body: [ + "Every generation produces its critics who announce that this time the corruption is terminal, the Church cannot recover, the credibility is finally and definitively spent. The Arian crisis of the fourth century, when the majority of bishops were heretics. The pornocracy of the tenth century, when the papacy was openly trafficked. The Avignon captivity. The Borgias. The wars of religion. The French Revolution. The Modernist crisis. The abuse crisis. Each of these was, in its moment, the final blow. The Church somehow keeps burying her undertakers.", + "I do not say this to minimize the present scandal. I say it to put it in its actual historical context. An institution that has survived two millennia of being run by sinners, including some of the worst sinners of their respective centuries, is not on its face less credible than an institution that has been around for fifty years and has not yet had time to discredit itself. The atheist's argument requires us to believe that institutional rot is dispositive. The historical record suggests that the Catholic Church specifically has a property — call it whatever you like, divine preservation or stubborn historical accident — that makes it unusually resistant to the rot that has dispatched its peers.", + "The man who looked at the Church under Alexander VI and concluded that the institution was finished was making a reasonable bet on the evidence available. He was also wrong. This does not prove the modern critic is wrong on the same grounds. It does suggest that the kind of argument he is making has a poor track record.", + ], + cites: [ + 'The Everlasting Man (1925), Part II, ch. 6 ("The Five Deaths of the Faith")', + "The Catholic Church and Conversion (1926)", + ], + }, + }, + }, + { + id: "intelligence", + n: 22, + title: "Smart people grow out of religion.", + short: "Faith is for the unintelligent", + steel: + "Studies consistently show a negative correlation between religious belief and measures of intelligence and education. The most accomplished scientists — National Academy members, Nobel laureates — are overwhelmingly secular. Religious belief tracks with lower education, lower income, and lower scientific literacy. Whatever else religion is, it is a position that intelligent people increasingly find untenable.", + quote: + "The higher one's intelligence or education level, the less one is likely to be religious.", + quoteBy: "Lynn, Harvey, & Nyborg, Intelligence (2009)", + pub: "Religion is for people who don't know any better.", + related: ["science", "evidence", "faith-reason"], + counters: { + chesterton: { + lede: "The roster of Catholic intellectuals is the longest in history.", + body: [ + "The argument requires us to overlook, by a strange selective amnesia, almost the entire intellectual history of the West. Augustine. Aquinas. Dante. Pascal. Descartes was a believer; so was Newton, who wrote more on theology than on physics; so was Mendel, who founded genetics from a monastery. Faraday, Maxwell, Kepler, Copernicus, Lemaître — the man who proposed the Big Bang was a Catholic priest. Twentieth-century philosophy alone gives us Wittgenstein, Anscombe, MacIntyre, Plantinga, Taylor. The historian who concludes that religious belief is incompatible with intelligence has stopped reading at his own century.", + "What the modern statistic actually measures is something narrower and less interesting: that in the contemporary West, in the last fifty years, the social class most identified with formal academic credentials has been disproportionately secular. This is a sociological fact about the modern academy, not a logical fact about religious belief. The same survey conducted in 1900, or 1500, or in any non-Western culture today, would produce a wildly different result. The atheist is mistaking a local weather pattern for a law of physics.", + "When the survey is done in five hundred years, after whatever the next civilizational upheaval turns out to be, we will see whether the correlation held or whether, like every previous prediction of religion's terminal decline, it dissolved on contact with history.", + ], + cites: [ + "The Everlasting Man (1925), Part II, ch. 6", + "Orthodoxy (1908), ch. 6", + "cf. Rodney Stark, For the Glory of God (2003)", + ], + }, + lewis: { + lede: "I was an atheist because I assumed it was the intelligent position.", + body: [ + "When I came up to Oxford as an undergraduate, I was a confirmed atheist on what I took to be impeccable intellectual grounds. The clever people I knew were atheists. The professors I admired were atheists. Christianity was the position held by people I considered my intellectual inferiors — country vicars, pious aunts, the unread. My atheism was, in significant part, a matter of social positioning rather than argument.", + "What converted me, very much against my will, was reading the people I had assumed were stupid. Chesterton turned out to be funnier and sharper than the modern essayists I admired. MacDonald turned out to do things in fiction that my professional contemporaries could not do. Above all, Tolkien — a Catholic philologist of formidable intellect, not the kind of man who could be safely dismissed as not having thought about it — turned out to hold his Christianity with a depth and rigor that put my unbelief to shame. The intellectual case I had assumed was on my side turned out to be considerably weaker than the case I had assumed was beneath my notice.", + "I now suspect that the modern correlation between unbelief and academic credentials measures something other than what its proponents assume. It measures the social formation of a particular professional class, in a particular century, in a particular set of institutions. The smart people I eventually came to know — Owen Barfield, Tolkien, Anscombe, Lewis the medievalist as opposed to Lewis the schoolboy atheist — were on the other side. The roster is not as one-sided as the survey suggests.", + ], + cites: [ + "Surprised by Joy (1955), ch. 12–14", + '"The Inner Ring" in The Weight of Glory (1949)', + ], + }, + aquinas: { + lede: "The intellect's proper object is truth. Faith does not stand in its way.", + body: [ + "The Catholic tradition has never opposed faith to intellect. It has, on the contrary, produced the most sustained intellectual tradition in human history — the medieval universities (Catholic foundations, every one), the scholastic method, the doctrine of the analogical predication of being, the integration of Aristotle, the development of natural law, the philosophy of person and act. The man who claims that faith is hostile to intellect has not read the Summa, which is structured as ten thousand objections taken seriously and answered.", + 'What the modern survey calls "intelligence" is typically a narrow band of cognitive capacity — verbal facility, abstract reasoning, performance on standardized tests. This is a real human good, and the Church has cultivated it from her foundation. But it is not the whole of intellect, and its possession is not a guarantee of wisdom. The Pharisees were highly educated. So were the architects of modern totalitarianism. Intelligence in the narrow sense, separated from the orientation of the will toward the good, can produce monstrous results. The integration of intellect with virtue is what the tradition calls sapientia — wisdom — and it is what the saints possess and the merely clever often lack.', + "The genuine question is not whether intelligent people can be religious (they can, and have been, in immense numbers) but what intelligence is for. If it is for the pursuit of truth, then it cannot be hostile in principle to a religion that claims to be true. The compatibility has to be examined case by case, by the intellect itself.", + ], + cites: [ + "Summa Theologiae I.1.1–10 (sacred doctrine as a science)", + "ST I-II.66 (on the comparison of the virtues)", + "Fides et Ratio (John Paul II, 1998)", + ], + }, + logician: { + lede: "The argument is statistically illiterate.", + body: [ + "The cited correlation is real but small, contested in its interpretation, and proves nothing of what the objection wants it to prove. A correlation between belief and education tells you about the social distribution of belief, not about the truth of belief. There was a time when the correlation ran the other way — when literacy and theological belief were near-universal among the educated and unbelief was the position of the marginally schooled. No one took this as evidence for Christianity then. No one should take the inverse correlation as evidence against it now.", + "The deeper error is the appeal to authority dressed as an appeal to demographics. Smart people believe X is a fallacy whether X is theism or atheism. Smart people have believed every major position in the history of ideas, including positions that turned out to be catastrophically wrong. Aristotle believed slavery was natural. Newton believed in alchemy. Heidegger joined the Nazi Party. Intelligence does not entail correctness, and correlations between intelligence and any given position do not function as arguments. They function as social signals.", + "If the objection were taken seriously as an argument, it would commit its proponent to whatever the contemporary intellectual class happens to believe at any given moment. This is not a posture compatible with intellectual seriousness. It is, in fact, the opposite of one.", + ], + cites: [ + "Antony Flew, Thinking About Thinking (1975)", + "cf. the long literature on the genetic and ad populum fallacies", + ], + }, + }, + }, + { + id: "submission", + n: 23, + title: "Religion suppresses critical thinking.", + short: "The submission objection", + steel: + "Religion teaches you to defer to authority — Scripture, tradition, the magisterium — rather than to think for yourself. It rewards belief and punishes doubt. The catechism is a list of conclusions to be memorized, not arguments to be tested. A worldview that demands submission of the intellect is incompatible with the intellectual maturity that defines an adult.", + quote: + "Dare to know! Have courage to use your own reason — that is the motto of enlightenment.", + quoteBy: "Immanuel Kant, What is Enlightenment?", + pub: "Religion teaches you to obey instead of to think.", + related: ["faith-reason", "intelligence", "bible"], + counters: { + aquinas: { + lede: "The Summa is a book of objections.", + body: [ + "The structure of the Summa Theologiae — the central work of Catholic theology, studied for seven centuries — is not a list of conclusions handed down from above. It is a series of quaestiones, each of which begins with the objections to the position the author will eventually defend, stated in their strongest form. It seems that God does not exist, because… The Catholic tradition's flagship intellectual document opens, repeatedly and on every important question, with the case against itself.", + "This is not an accident of style. It is a methodological commitment. The truth, on the scholastic understanding, is reached through disputatio — through the testing of positions against their strongest objections, the canvassing of authorities, the exposure of one's own conclusions to the most rigorous available challenge. A medieval theology student was required to argue the case against Catholic doctrine before he was permitted to argue for it. The intellectual culture this produced was, by the standards of any age, unusually adversarial and unusually rigorous.", + "The objection mistakes catechetical instruction — which is appropriate for children learning the basics of the faith — for the entirety of the Catholic intellectual tradition. The catechism is the floor, not the ceiling. The ceiling is six centuries of scholasticism, the modern Catholic philosophical revival, and the ongoing magisterial dialogue with science, philosophy, and culture. Anyone who has spent ten minutes in the actual literature knows this.", + ], + cites: [ + "Summa Theologiae, structure passim", + "Quaestiones Disputatae", + "cf. Fides et Ratio (1998)", + ], + }, + newman: { + lede: "I have written a defense of conscience that the Church has accepted.", + body: [ + "The Catholic tradition holds that conscience is the proximate norm of moral action — that a person is bound, before any external authority, to follow his own well-formed conscience, even against the directives of his superiors. I shall drink to the Pope, if you please — still, to conscience first, and to the Pope afterwards. I wrote this, and I wrote it as a cardinal, and the Church canonized me. The doctrine is not contested.", + 'What the objection mistakes for "submission of the intellect" is in fact a mature relationship between individual conscience and inherited wisdom. The Catholic does not abandon his judgment when he assents to doctrine; he integrates his judgment with two thousand years of accumulated reflection by minds at least as serious as his own. To dismiss this inheritance as authoritarianism is to mistake humility for cowardice. The man who believes nothing he did not derive from scratch is not free; he is impoverished, cut off from the entire intellectual capital of his species.', + "Genuine intellectual maturity consists in knowing when to defer and when to dissent — and in cultivating the discernment that makes the distinction. The Catholic tradition has been working on this discernment longer than any rival has existed. It is not perfect at it. But it is not the cartoon of robotic submission the objection requires.", + ], + cites: [ + "Letter to the Duke of Norfolk (1875), §5 (on conscience)", + "Grammar of Assent (1870), ch. 5", + "cf. Catechism of the Catholic Church §§1776–1782 (on conscience)", + ], + }, + catechism: { + lede: "Faith and reason are the two wings on which the human spirit rises.", + body: [ + "The Catholic Church, far from condemning the use of reason, holds that faith and reason are mutually reinforcing rather than opposed. Though faith is above reason, there can never be any real disagreement between faith and reason, since it is the same God who reveals the mysteries and infuses faith, and who has endowed the human mind with the light of reason. The same God is the source of both, and the genuine conclusions of either, properly arrived at, cannot contradict the genuine conclusions of the other.", + "The Church therefore not only permits but requires the rigorous exercise of reason in the examination of the faith. The motives of credibility — the rational grounds for taking the Christian claim seriously — are the proper object of philosophical investigation. The compatibility of revealed doctrine with what is known by science, history, and philosophy is to be defended, where it is genuine, and where apparent contradictions arise, both sides are to be examined honestly. Methodical research in all branches of knowledge, provided it is carried out in a truly scientific manner and does not override moral laws, can never conflict with the faith, because the things of the world and the things of faith derive from the same God.", + "The image of religion as the suppressor of inquiry is a polemical fiction, contradicted by the historical record of Catholic universities, Catholic scientists, Catholic philosophers, and the Church's own magisterial teaching on the autonomy and dignity of the natural sciences. The objection survives only by ignoring what the Church actually teaches in favor of a caricature it would be easier to refute.", + ], + cites: [ + "Catechism of the Catholic Church §§154–159", + "§159 quoting Gaudium et Spes §36", + "Fides et Ratio (John Paul II, 1998), opening line", + "Vatican I, Dei Filius, ch. 4", + ], + }, + lewis: { + lede: "The free man and the obedient man are the same man.", + body: [ + "The objection assumes a particular picture of the autonomous adult: the one who derives every conviction from his own resources, defers to no authority, and treats inherited wisdom as suspicion-by-default. This is a recent picture, and it has not aged well. The man who genuinely tries to live this way ends up either reinventing the wheel — laboriously deriving conclusions his ancestors had refined over millennia — or, more commonly, simply absorbing the prejudices of his immediate social class while flattering himself that he reasoned them out.", + "There is a real form of intellectual submission that is incompatible with adulthood: the surrender of judgment to authority that has not earned it. The Church has produced this from time to time, as has every institution of any age. But there is also a form of intellectual reception — sitting at the feet of the saints and the doctors, reading them with care, allowing oneself to be taught — which is not infantile but the precondition of any real thinking. I read it; I argued with it; eventually it argued me down. This is how minds grow.", + "The truly infantile position is the one that says, I will accept nothing I have not personally derived from first principles. No adult lives this way about anything. The Catholic tradition is unusual not in expecting reception of inherited wisdom but in being honest about the expectation. The atheist receives his inheritance too. He just calls it common sense.", + ], + cites: [ + "The Abolition of Man (1943)", + "The Discarded Image (1964)", + "Surprised by Joy (1955), ch. 14", + ], + }, + }, + }, +]; + +export function findArgument(id: string): Argument | undefined { + return ARGUMENTS.find((a) => a.id === id); +} + +// Locale-aware accessors. DE comes from auto-generated apologetik.de.ts; +// EN is the source of truth. Latin falls back to EN since DeepL doesn't +// support it — fill in apologetik.la.ts manually if/when desired. +export async function getArchetypes( + lang: string, +): Promise> { + if (lang === "de") { + const m = await import("./apologetik.de"); + return m.ARCHETYPES_DE; + } + return ARCHETYPES; +} +export async function getArguments(lang: string): Promise { + if (lang === "de") { + const m = await import("./apologetik.de"); + return m.ARGUMENTS_DE; + } + return ARGUMENTS; +} +export async function findArgumentLang( + id: string, + lang: string, +): Promise { + const args = await getArguments(lang); + return args.find((a) => a.id === id); +} + +// ============================================================ +// POSITIVE CASE — Why Christianity is true +// ============================================================ + +export type PosVoice = { + id: string; + name: string; + sub: string; + color: string; + colorHex: string; + glyph: string; + font: string; + era: string; +}; + +export type PosScripture = { text: string; ref: string }; + +export type PosCounter = { + lede: string; + body: string[]; + cites: string[]; +}; + +export type PosLayer = { id: string; title: string; sub: string }; + +export type PosArgument = { + id: string; + layer: "natural" | "theism" | "christianity"; + n: number; + title: string; + claim: string; + thesis: string; + strength: 1 | 2 | 3 | 4 | 5; + note?: string; + scripture: PosScripture; + voices: Record; + related: string[]; +}; + +export const POS_VOICES: Record = { + habermas: { + id: "habermas", + name: "Gary Habermas", + sub: "the minimal-facts case", + color: "var(--nord11)", + colorHex: "#BF616A", + glyph: "✚", + font: '"Inter", Helvetica, Arial, sans-serif', + era: "b. 1950", + }, + polkinghorne: { + id: "polkinghorne", + name: "John Polkinghorne", + sub: "physicist-priest", + color: "var(--nord7)", + colorHex: "#8FBCBB", + glyph: "△", + font: '"IBM Plex Mono", ui-monospace, Menlo, monospace', + era: "1930–2021", + }, + newman: { + id: "newman", + name: "John Henry Newman", + sub: "development of doctrine", + color: "var(--nord15)", + colorHex: "#B48EAD", + glyph: "❦", + font: '"Cormorant Garamond", Georgia, serif', + era: "1801–1890", + }, + perennial: { + id: "perennial", + name: "The Perennialist", + sub: "Guénon, Evola, Schuon", + color: "var(--nord3)", + colorHex: "#4C566A", + glyph: "✶", + font: '"Cormorant Garamond", Georgia, serif', + era: "—", + }, + hart: { + id: "hart", + name: "David Bentley Hart", + sub: "classical theist", + color: "var(--nord10)", + colorHex: "#5E81AC", + glyph: "Θ", + font: '"Cormorant Garamond", Georgia, serif', + era: "b. 1965", + }, + lewis: { + id: "lewis", + name: "C.S. Lewis", + sub: "literary apologist", + color: "var(--nord8)", + colorHex: "#88C0D0", + glyph: "❧", + font: '"Spectral", "Lora", Georgia, serif', + era: "1898–1963", + }, + wright: { + id: "wright", + name: "N.T. Wright", + sub: "Resurrection historian", + color: "var(--nord12)", + colorHex: "#D08770", + glyph: "✠", + font: '"Inter", Helvetica, Arial, sans-serif', + era: "b. 1948", + }, + hahn: { + id: "hahn", + name: "Scott Hahn", + sub: "covenant scripture", + color: "var(--nord13)", + colorHex: "#EBCB8B", + glyph: "✡", + font: '"Spectral", "Lora", Georgia, serif', + era: "b. 1957", + }, + plantinga: { + id: "plantinga", + name: "Alvin Plantinga", + sub: "warrant & properly basic belief", + color: "var(--nord14)", + colorHex: "#A3BE8C", + glyph: "∴", + font: '"JetBrains Mono", ui-monospace, Menlo, monospace', + era: "b. 1932", + }, + eliade: { + id: "eliade", + name: "Mircea Eliade", + sub: "the sacred & the profane", + color: "var(--nord9)", + colorHex: "#81A1C1", + glyph: "◯", + font: '"Cormorant Garamond", Georgia, serif', + era: "1907–1986", + }, + feser: { + id: "feser", + name: "Edward Feser", + sub: "Thomistic philosopher", + color: "var(--nord1)", + colorHex: "#3B4252", + glyph: "∎", + font: '"IBM Plex Mono", ui-monospace, Menlo, monospace', + era: "b. 1968", + }, + chesterton: { + id: "chesterton", + name: "G.K. Chesterton", + sub: "paradox & common sense", + color: "var(--nord12)", + colorHex: "#D08770", + glyph: "◊", + font: '"Spectral", "Lora", Georgia, serif', + era: "1874–1936", + }, + guenon: { + id: "guenon", + name: "René Guénon", + sub: "metaphysics of tradition", + color: "var(--nord2)", + colorHex: "#434C5E", + glyph: "☩", + font: '"Cormorant Garamond", Georgia, serif', + era: "1886–1951", + }, +}; + +export const POS_LAYERS: PosLayer[] = [ + { + id: "natural", + title: "The supernatural is real", + sub: "Layer 1 · the world is more than matter", + }, + { + id: "theism", + title: "There is one God", + sub: "Layer 2 · personal, necessary, good", + }, + { + id: "christianity", + title: "Christianity is that revelation", + sub: "Layer 3 · the particular claim", + }, +]; + +export const POS_LAYER_COLORS: Record = { + natural: "#81A1C1", + theism: "#A3BE8C", + christianity: "#BF616A", +}; + +export const POS_ARGUMENTS: PosArgument[] = [ + { + id: "perennial-mystics", + layer: "natural", + n: 1, + title: "Mystics and myths converge across deep time", + claim: + "Civilizations isolated from one another by oceans and by tens of thousands of years independently arrive at the same religious structures: a sacred Center, a primordial fall, a cosmic flood, a degenerating sequence of world-ages, and mystical reports of one Reality beneath appearances. Independent invention of an identical illusion is a worse hypothesis than that they are touching something real.", + thesis: + "Naturalism predicts that religion should be a local cognitive artifact — varying with environment, drifting unpredictably across millennia, with no convergent structure. The ethnographic record shows the opposite: stable, recurrent patterns across cultures that had no possibility of contact for tens of thousands of years. The cleanest explanation is that humans across all cultures have been responding to the same transcendent Reality, with varying clarity. The modern Western refusal of that Reality is the anomaly requiring explanation — not the universal human acknowledgment of it.", + strength: 3, + note: "Cumulative rather than standalone — the inference from convergence to transcendence has degrees of freedom. Stronger when read alongside religious experience, consciousness, and moral law.", + scripture: { + text: "Where there is no vision, the people perish.", + ref: "Proverbs 29:18", + }, + voices: { + chesterton: { + lede: "The universal religious instinct is the data, not the pathology.", + body: [ + "When a thousand cultures, separated from one another by oceans and by ages, arrive at sacred mountains and sacred trees, at flood stories and fall stories, at gods who descend and heroes who ascend, the modernist response is to call this the residue of primitive cognition. But primitive cognition does not produce convergent results. It produces noise. The convergence is the signal.", + "Australian Aboriginal traditions developed in cognitive isolation from Eurasian religion for forty thousand years and more. Pre-Columbian American civilizations had no contact with the Old World for at least fifteen thousand. The Polynesian expansion, the Bantu migrations, the Inuit north — each unfolded across spans of time that dwarf the entire history of recorded religion. And yet across all of them we find the same architecture: a sky-father and an earth-mother, a sacred Center where heaven meets earth, a primordial unity from which the world was broken, a coming reckoning, a moral order written into the structure of things.", + "Naturalism asks us to believe that the same dream was dreamt independently by every isolated branch of humanity for tens of thousands of years. This is not parsimony. It is desperation. The simpler explanation is that they were all looking at the same thing, with different cultural lenses and different degrees of clarity, and reporting what they saw.", + ], + cites: ["The Everlasting Man (1925)", "Orthodoxy (1908)"], + }, + eliade: { + lede: "The convergent structures of sacred space and sacred time are too specific for coincidence.", + body: [ + "Across cultures that never met, the same architecture of the sacred recurs with startling precision. A Center where the world began and where the worlds connect. An axis mundi — a cosmic mountain, tree, or pillar — joining heaven, earth, and underworld. A primordial time, illo tempore, which ritual exists to recapitulate. A degeneration from origins requiring periodic renewal.", + "The flood is the most striking example. Mesopotamian (Gilgamesh, Atrahasis), Hebrew (Genesis), Greek (Deucalion), Hindu (Manu), Chinese (Gun-Yu), Aztec, Maya, Inca, Hopi, Aboriginal Australian, and Polynesian traditions all preserve a flood narrative with overlapping structure: divine judgment, a righteous survivor, the saving of seed, the restoration of the world. The geographic distribution spans every inhabited continent. No diffusion model accommodates it.", + "The degenerating ages are nearly as widespread. Hesiod's Five Ages descend from gold to iron. The Hindu yuga cycle moves from Satya to Kali, the present age. Daniel's statue moves from gold to iron-and-clay. Zoroastrian and Norse traditions preserve similar declensions. These are not random mythopoetic patterns. They are structurally identical responses to a shared intuition: that we live downstream of a better beginning.", + "These are not parallel inventions of comfort. They are parallel responses to a structure already there. The phenomenology is the data. Modern man is the first who has tried to live in profane time and profane space, and the result is a recognizable dis-ease: anomie, the cult of novelty, the desperate search for festivals to replace the feast days that used to do real work.", + ], + cites: [ + "The Sacred and the Profane (1957)", + "The Myth of the Eternal Return (1949)", + "A History of Religious Ideas (1976–85)", + ], + }, + guenon: { + lede: "Beneath the exoteric forms, one metaphysical doctrine — and the seeds of the Word.", + body: [ + "There is, beneath the symbolic languages of every traditional civilization, a perennial wisdom: the same metaphysical doctrine of the One, the Center, the axis mundi, the hierarchy of being descending from the unconditioned to the manifest. The Vedic rishis, the Sufi masters, the Christian contemplatives, the Daoist sages, Plotinus, the kabbalists, the Plains-Indian visionaries — separated by oceans and centuries, they describe overlapping experiences and overlapping doctrines.", + "The modern world is anomalous in having lost contact with this transcendent dimension. To call its absence the human default is provincial. The default is precisely what the rishis and the Sufi shaykhs and the Desert Fathers reported. Modernity is not the sober view at last; it is the first civilization to insist on horizontal-only sight.", + "A Christian need not endorse every metaphysical claim of the perennialists to recognize what their data shows. Justin Martyr, in the second century, called these scattered intimations the logos spermatikos — the seeds of the Word, sown by the same Logos who became flesh in Christ. That every culture has reached for them is evidence that they are real. That Christ is their fulfillment is the further claim that completes the argument.", + ], + cites: [ + "Guénon, The Reign of Quantity (1945)", + "Schuon, The Transcendent Unity of Religions (1948)", + "Huston Smith, Forgotten Truth (1976)", + "Justin Martyr, Second Apology, ch. 13", + ], + }, + }, + related: [ + "religious-experience", + "consciousness", + "beauty", + "moral-law", + "intelligibility", + ], + }, + { + id: "religious-experience", + layer: "natural", + n: 2, + title: "Religious experience is widespread and life-changing", + claim: + "Hundreds of millions of ordinary people report direct, transformative encounter with God — across every culture, education level, and skeptical disposition.", + thesis: + "These are not all delusions. The default epistemic stance toward sincere first-person testimony, replicated at scale, is provisional credence. We use the same standard for love, beauty, and moral indignation. To exempt religious experience alone is special pleading.", + strength: 3, + scripture: { + text: "Taste and see that the LORD is good.", + ref: "Psalm 34:8", + }, + voices: { + plantinga: { + lede: "Belief in God is properly basic.", + body: [ + "Belief in God, when produced by the sensus divinitatis functioning correctly in an appropriate environment, has warrant in the same way perceptual or memory beliefs have warrant. It does not need to be inferred from prior, more-certain premises.", + "The demand that the believer first prove God's existence from neutral premises smuggles in evidentialism — a position that itself fails its own test.", + "Hundreds of millions of testimonies are not noise. They are the ordinary functioning of the cognitive faculty God designed.", + ], + cites: ["Warranted Christian Belief (2000)"], + }, + hart: { + lede: "The encounter is with Being, not with a being.", + body: [ + "What the great traditions describe is not a numinous gas pocket inside the universe. It is the apprehension of the ground of being — the One in whom we live and move.", + "This is why the experience is so resistant to neuroscience: brain states correlate with it, as brain states correlate with seeing a tree, but the correlation does not exhaust the seen.", + "Atheist neurotheology says: 'we found the God circuit.' The traditions reply: 'yes — that is the organ; the music is elsewhere.'", + ], + cites: ["The Experience of God (2013)"], + }, + lewis: { + lede: "Joy is the serious business of heaven.", + body: [ + "Most people, if they had really learned to look into their own hearts, would know that they do want, and want acutely, something that cannot be had in this world.", + "Religious experience is the moment that want is briefly satisfied, or addressed, or even just turned and faced.", + "The transformation it produces is the test. By their fruits ye shall know them.", + ], + cites: ["Surprised by Joy (1955)"], + }, + }, + related: ["perennial-mystics", "consciousness", "transformation"], + }, + { + id: "consciousness", + layer: "natural", + n: 3, + title: "Consciousness resists naturalist reduction", + claim: + "The hard problem of consciousness — why there is something it is like to be you — has no traction in a purely physical ontology, despite a century of trying.", + thesis: + "Eliminative materialism asks you to deny that you are conscious. Property dualism quietly admits the supernatural under another name. The cleanest hypothesis is that mind is fundamental, not derivative — and that we are made in the image of a Mind.", + strength: 4, + scripture: { + text: "And the Spirit of God moved upon the face of the waters.", + ref: "Genesis 1:2", + }, + voices: { + hart: { + lede: "Naturalism cannot explain the simplest fact about you.", + body: [ + "There is no plausible mechanism by which arrangements of unconscious particles produce a perspective. Adding more particles, or arranging them more cleverly, does not bridge the gap. The gap is categorical.", + "Either consciousness is an illusion (in which case the illusion of consciousness is itself conscious — a contradiction), or matter has been mis-described as inert (panpsychism, which is theism's poor relation), or mind is prior.", + "The classical tradition has always said the third. We are now circling back to it from the other direction.", + ], + cites: ["The Experience of God (2013), ch. 4"], + }, + polkinghorne: { + lede: "Information is more fundamental than matter.", + body: [ + "Quantum measurement, the structure of physical law, and the very intelligibility of nature push physics toward a picture in which information — pattern, meaning, formal cause — is irreducible.", + "A universe whose deepest layer is information is a universe whose deepest layer is mind-like. This is not a covert theology. It is where the equations are pointing.", + "When the question 'why these laws?' is finally pressed, the answer that does the most work is: a Mind chose them.", + ], + cites: ["Belief in God in an Age of Science (1998)"], + }, + plantinga: { + lede: "Naturalism is self-defeating.", + body: [ + "If our cognitive faculties evolved purely for survival, we have no reason to trust them on questions that are not survival-relevant — including the question of whether naturalism is true.", + "Theism gives us a reason to trust reason: God made minds to know. Naturalism saws off the branch it sits on.", + "The conjunction of naturalism and evolution is therefore not just unproven but rationally unstable.", + ], + cites: ["Where the Conflict Really Lies (2011), ch. 10"], + }, + }, + related: ["fine-tuning", "moral-law", "perennial-mystics"], + }, + { + id: "contingency", + layer: "natural", + n: 4, + title: "There is something rather than nothing", + claim: + "Every fact about the physical world is contingent — could have been otherwise. Contingent things require explanation. The chain of explanation cannot regress forever, and it cannot be self-grounding. Something must exist whose nature is to exist.", + thesis: + "The question 'why is there something rather than nothing?' is not childish; it is the most adult question. It cannot be dismissed by appeal to physics, because every physical answer presupposes the very thing being asked about — a contingent reality whose existence is not self-explaining. The only sufficient answer is a being whose existence is not contingent: necessary, self-explaining, pure act, ipsum esse subsistens. This is not 'God of the gaps.' It is what every serious metaphysical tradition — Vedantic, Neoplatonic, Thomist, Avicennan — has converged on by independent routes.", + strength: 5, + scripture: { text: "I AM THAT I AM.", ref: "Exodus 3:14" }, + voices: { + hart: { + lede: "God is not a thing in the universe. God is the answer to why there is a universe.", + body: [ + "Every philosophical tradition that has thought hard about being — Vedanta, Neoplatonism, Aquinas, Ibn Sina, Maimonides — has arrived at the same distinction: contingent being depends, necessary being does not. The latter is what the word 'God' has always named in serious theology. Not a powerful entity within the cosmos, but the very ground of there being a cosmos at all.", + "Modern atheism, by treating God as one more entity among entities — a celestial item that might or might not exist alongside galaxies and quarks — has been arguing against an idol it built itself. The classical God is not a candidate for the inventory. Asking whether God exists in that sense is like asking whether existence exists.", + "When Hawking writes that the universe can 'create itself from nothing' because of the laws of physics, he has changed the subject. Laws of physics are not nothing. A quantum vacuum is not nothing. Nothing is the absence of everything — including laws, fields, potentialities, and possibilities. The classical question is why there is any of that at all.", + "The only answer not in the same predicament as the question is: a being whose essence is to exist. Not a thing that happens to exist, but Existence itself, in which all contingent things participate. This is what Aquinas meant by ipsum esse subsistens — subsistent being itself.", + ], + cites: [ + "The Experience of God (2013)", + 'Hart, "God, Gods, and Fairies" (2013)', + ], + }, + feser: { + lede: "The argument is not from temporal beginnings but from present dependence.", + body: [ + "The popular caricature of the cosmological argument — 'everything has a cause, so the universe has a cause, so God' — is not the argument serious theists have ever made. It misses the crucial distinction between two kinds of causal series.", + "A series ordered per accidens (per accident) is one in which earlier members are no longer required for later members to exist. Your grandfather caused your father, who caused you; your grandfather can die and you continue. Such a series can in principle extend backward indefinitely.", + "A series ordered per se (per essence) is one in which every member depends, here and now, on the simultaneous activity of what is prior to it. The cup rests on the table, which rests on the floor, which rests on the joists, which rest on the foundation. Remove any link and the whole collapses instantly. Such a series cannot regress infinitely — there must be a first member that is not itself supported by anything else, that holds the whole chain in being by its own act.", + "The argument from contingency is of the second kind. Right now, this moment, every contingent thing — including you, this sentence, the screen you read it on, the laws of physics that govern the screen — is being held in being by something more fundamental. Trace that dependency relation, and it cannot terminate in another contingent being, however vast or ancient. It must terminate in something whose existence is not derived from anything else: pure actuality, with no unrealized potential, depending on nothing.", + "This is not a god of the gaps that retreats as physics advances. It is what physics presupposes in order to advance at all. The more we learn about the contingent structure of the cosmos, the sharper the question becomes.", + ], + cites: [ + "Feser, Five Proofs of the Existence of God (2017)", + "Feser, Aquinas (2009)", + "Pruss, The Principle of Sufficient Reason (2006)", + ], + }, + newman: { + lede: "The conscience of the question testifies to the answer.", + body: [ + "That a child can ask 'why is there anything?' and expect a real answer presupposes that reality is the kind of thing that has reasons — that the Principle of Sufficient Reason is not a parochial human bias but a feature of being itself.", + "This presupposition cannot be derived from inside the universe. The cosmos does not display its own ground; physics describes the patterns within being but never accounts for being. Yet the question is not silenced by saying 'no ground.' Saying 'there is no reason' is itself an answer to the question — and a worse one than the alternative, since it abandons the very intelligibility that made the question askable.", + "Faith, in the proper sense, is not a leap against reason. It is the response of a mind that takes its own questions seriously, that follows the convergence of probabilities — contingency, fine-tuning, intelligibility, moral law, consciousness, religious experience — until assent is no longer optional.", + "No single line of evidence forces the conclusion. Together, they do. This is how all serious knowledge works: not by deductive proof from indubitable axioms, but by the cumulative weight of indications until the mind, rightly disposed, recognizes what is the case.", + ], + cites: [ + "A Grammar of Assent (1870)", + "The Idea of a University (1852)", + ], + }, + }, + related: ["fine-tuning", "consciousness", "moral-law", "intelligibility"], + }, + { + id: "fine-tuning", + layer: "theism", + n: 5, + title: "The constants of physics are exquisitely tuned", + claim: + "Roughly 30 dimensionless constants must lie within absurdly narrow ranges for any complex chemistry, any stable matter, any observers at all.", + thesis: + "Three explanations remain viable: brute coincidence (a probability vanishingly small that we are forbidden from being puzzled by), an unobservable multiverse postulating ~10^500 universes to explain one, or design. Design is by far the cleanest.", + strength: 5, + scripture: { + text: "The heavens declare the glory of God; and the firmament showeth his handywork.", + ref: "Psalm 19:1", + }, + voices: { + polkinghorne: { + lede: "The numbers are too good to be coincidence.", + body: [ + "The cosmological constant agrees with what life requires to one part in 10^120. The ratio of the strong to the electromagnetic force, the proton-to-electron mass, the early-universe entropy: each must be threaded simultaneously through a needle.", + "Theism predicts this. Naturalism does not. The multiverse is naturalism's attempt to make naturalism predict it, by postulating enough trials to make the long-shot likely. The cost is metaphysical: an infinity of unobservable worlds.", + "Between two explanations equally compatible with the data, the simpler is preferred. One God or 10^500 universes — the choice is not difficult.", + ], + cites: ["The Faith of a Physicist (1994)"], + }, + plantinga: { + lede: "The fine-tuning argument is Bayesian, and decisive.", + body: [ + "P(observed tuning | theism) is high. P(observed tuning | naturalism) is, by the physicists' own admission, vanishingly low. By Bayes' theorem, the posterior probability of theism, given the evidence, is correspondingly raised.", + "Multiverse rebuttals require: (a) the multiverse exists, (b) it has the right measure to make our universe likely, (c) we can run inferences in our own universe despite Boltzmann-brain problems. Each is contestable.", + "Theism solves all three at once.", + ], + cites: ["Where the Conflict Really Lies (2011)"], + }, + hart: { + lede: "It is not surprising that being looks designed. It is.", + body: [ + "Classical theism was never a rival hypothesis to physics. It was the explanation of why there is physics — why reality is intelligible, ordered, mathematical, and apt for minds to grasp.", + "The fine-tuning data confirms what was always claimed: that being is communicative, that the cosmos is the kind of thing whose existence is meant.", + "We are not anomalies. We are the eyes the universe was tuned to grow.", + ], + cites: ["The Experience of God (2013)"], + }, + }, + related: ["contingency", "consciousness", "beauty"], + }, + { + id: "moral-law", + layer: "theism", + n: 6, + title: "Real moral obligations require a moral lawgiver", + claim: + "We do not invent the wrongness of torturing children for fun. We discover it. Moral facts that bind every rational agent require a ground that is itself rational and binding.", + thesis: + "Naturalist meta-ethics either denies the reality of moral facts (and then cannot account for indignation) or smuggles in a non-natural source (and is theism by another name). Christianity has always said: the moral law is the character of God impressed on the conscience.", + strength: 4, + scripture: { + text: "For when the Gentiles, which have not the law, do by nature the things contained in the law, these, having not the law, are a law unto themselves.", + ref: "Romans 2:14", + }, + voices: { + lewis: { + lede: "The Tao is not invented. It is recognized.", + body: [ + "Every culture, including those isolated from one another, condemns cowardice, treachery, and cruelty to the weak. They differ on whom to count as kin; they agree on the form of the law.", + "When you say 'that's not fair,' you appeal to a standard you did not invent and that binds you whether you like it or not. That standard is the fingerprint of the Lawgiver.", + "If there is no real Right, your indignation is a chemical event. If there is, you have already conceded more than naturalism can pay for.", + ], + cites: ["The Abolition of Man (1943)", "Mere Christianity, Bk. I"], + }, + hart: { + lede: "The good is not optional. It is the structure of being.", + body: [ + "Classical metaphysics identified being, truth, and goodness as convertible — different aspects of the same fundamental reality. To know what something is is to know what it is for, and what it is for is its good.", + "Modern attempts to derive an 'ought' from a value-neutral 'is' fail because the 'is' was already gutted. Restore the classical 'is' and the 'ought' returns with it.", + "God is not a moral lawgiver in the sense of issuing arbitrary commands. God is the Good itself, in whom all our talk of goodness participates.", + ], + cites: ["The Beauty of the Infinite (2003)"], + }, + plantinga: { + lede: "Moral knowledge is properly basic.", + body: [ + "We know that gratuitous cruelty is wrong with more certainty than we know any of the premises of any meta-ethical theory. Any theory that ends by denying this is reduced ad absurdum.", + "Theism predicts moral knowledge: God has made us such that we apprehend his law. Naturalism predicts something between moral nihilism and adaptive illusion.", + "When the data and the prediction disagree, the theory loses.", + ], + cites: ["Warrant and Proper Function (1993)"], + }, + }, + related: ["consciousness", "beauty", "transformation"], + }, + { + id: "beauty", + layer: "theism", + n: 7, + title: "Beauty is meaningful, not decorative", + claim: + "The same universe that produced equations also produced Bach, Chartres, the Iguazu falls, and a face you cannot stop looking at. Beauty is not a survival hack. It is a hint.", + thesis: + "If the cosmos were brute matter, we would expect indifference to its arrangements. Instead we encounter a hierarchy of value where a sunset is more than warm photons and a cathedral is more than stacked stone. Beauty rewards attention with meaning. That fact is data.", + strength: 3, + scripture: { + text: "He hath made every thing beautiful in his time.", + ref: "Ecclesiastes 3:11", + }, + voices: { + hart: { + lede: "Beauty is the form being takes when it shows itself.", + body: [ + "The transcendentals — being, truth, goodness, beauty — are how reality discloses itself to a mind capable of receiving it. To deny beauty's objectivity is to deny that reality has a face.", + "A naturalist account of beauty as 'pattern recognition + reward' captures the response without touching the object. The object — the actual glory of a fugue or a galaxy — is exactly what is missed.", + "We cannot worship matter. We cannot help worshipping beauty. The asymmetry is a clue.", + ], + cites: ["The Beauty of the Infinite (2003)"], + }, + lewis: { + lede: "We do not want the beauty. We want the source.", + body: [ + "The books or the music in which we thought the beauty was located will betray us if we trust to them; it was not in them, it only came through them, and what came through them was longing.", + "The longing is for our own far-off country, which we have never visited. Beauty is the rumor of it.", + "If we find ourselves with a desire that nothing in this world can satisfy, the most probable explanation is that we were made for another.", + ], + cites: ["The Weight of Glory (1941)"], + }, + eliade: { + lede: "Beauty is the sacred, breaking through.", + body: [ + "What archaic societies recognized as hierophany — the sacred showing itself in a particular tree, stone, or place — modern people recognize as the experience of beauty that stops them in the street.", + "It is the same phenomenon. Only the vocabulary has been impoverished.", + "The pull toward beauty is the residual reflex of the soul that knows where it is from.", + ], + cites: ["The Sacred and the Profane (1957)"], + }, + }, + related: ["religious-experience", "moral-law", "transformation"], + }, + { + id: "intelligibility", + layer: "theism", + n: 8, + title: "The universe is intelligible to mind", + claim: + "Mathematics describes physical reality with uncanny precision. Pure thought, done in advance, predicts what the experiment will find.", + thesis: + "Wigner called this 'unreasonable.' On naturalism it is. On theism it is exactly what you'd expect: a Mind made the world, and made minds to know it. The match between intellect and cosmos is a match because they share an author.", + strength: 4, + scripture: { + text: "In the beginning was the Word, and the Word was with God, and the Word was God.", + ref: "John 1:1", + }, + voices: { + polkinghorne: { + lede: "Mathematics is not the language of nature by accident.", + body: [ + "When Dirac wrote down his equation for the electron, he discovered antimatter as a mathematical consequence. Pure thought, applied with discipline, found a feature of the world that no one had seen.", + "This is not what we'd expect if mathematics were a human cultural artifact and the universe were an indifferent slop of particles. It is what we'd expect if both were thoughts in the same Mind.", + "Theism explains why science works. Naturalism uses science and refuses to explain why it works.", + ], + cites: ["Belief in God in an Age of Science (1998)"], + }, + newman: { + lede: "The illative sense recognizes its kin.", + body: [ + "Knowledge is not built on pure deduction. It is built on the convergence of probabilities, the cumulative weight of indications, until the mind assents.", + "That assent is not arbitrary; it is the recognition that the world fits the kind of mind we have.", + "The fit is itself the argument. We were built for this.", + ], + cites: ["A Grammar of Assent (1870)"], + }, + hart: { + lede: "Logos before logic.", + body: [ + "John's gospel begins with the Word — the divine Logos — through whom all things were made. Christian metaphysics has always said: the world is meaningful because it was spoken.", + "Modern science is the exploitation of the world's logos-character, by minds that share in the same logos. To use this gift while denying it is incoherent.", + "When we read the universe, we are reading after Someone.", + ], + cites: ["The Experience of God (2013)"], + }, + }, + related: ["fine-tuning", "consciousness", "contingency"], + }, + { + id: "resurrection", + layer: "christianity", + n: 9, + title: "The Resurrection is the best explanation of the minimal facts", + claim: + "Five facts are conceded by virtually all New Testament historians, including skeptical ones: Jesus died by crucifixion, his disciples believed they saw him alive, Paul's life was changed by what he believed was an appearance, James was converted by what he believed was an appearance, and the tomb was empty.", + thesis: + "Naturalist alternatives — hallucination, conspiracy, legend, swoon, wrong tomb — each fail on at least one fact. The Resurrection accounts for all five. By the standard historiographical criterion of inference to the best explanation, it wins.", + strength: 5, + scripture: { + text: "And if Christ be not raised, your faith is vain; ye are yet in your sins.", + ref: "1 Corinthians 15:17", + }, + voices: { + habermas: { + lede: "Five facts. One explanation.", + body: [ + "1. Jesus died by Roman crucifixion. Conceded by every serious historian. The swoon theory was abandoned in the 19th century.", + "2. The disciples had real experiences they believed were appearances of the risen Jesus. Conceded — even Bart Ehrman concedes this. Hallucination theories fail because group hallucinations of the same content do not occur and would not include physical eating.", + "3. Paul, persecutor of the church, was converted by what he believed was an appearance. He had no incentive to lie; he died for the testimony.", + "4. James, Jesus' skeptical brother, became a leader of the Jerusalem church on the basis of an appearance. Same dynamic.", + "5. The tomb was empty. Otherwise the Jewish authorities, with motive and access, would have produced the body.", + "Each naturalist alternative fails on at least one of these. The Resurrection explains all five.", + ], + cites: [ + "Habermas & Licona, The Case for the Resurrection of Jesus (2004)", + ], + }, + wright: { + lede: "Second-Temple Judaism had no category for this.", + body: [ + "In first-century Jewish thought, 'resurrection' meant the bodily raising of all the righteous at the end of history. No one expected one man to be raised in the middle. No one expected a crucified Messiah at all — crucifixion was a sign of God's curse.", + "What the disciples claimed required them to invent two new categories simultaneously, against the grain of every expectation they held. The simplest explanation of this innovation is that it happened.", + "And the movement they founded grew explosively in the very city where the body could be produced. It was not.", + ], + cites: ["The Resurrection of the Son of God (2003)"], + }, + plantinga: { + lede: "The probability calculus runs in our favor.", + body: [ + "The prior probability of a resurrection is low only on the assumption of no God. Conditional on the existence of God and on the prior probability of an Incarnation given that existence, the prior of a Resurrection becomes substantial.", + "Combined with the historical evidence, the posterior is decisively in favor.", + "The atheist who calls the historical case 'insufficient' is doing so by ruling out the conclusion in advance.", + ], + cites: ["Warranted Christian Belief (2000)"], + }, + }, + related: ["transformation", "scripture-prophecy", "church-persistence"], + }, + { + id: "transformation", + layer: "christianity", + n: 10, + title: "The transformation of saints is empirical", + claim: + "Christianity has produced, in every generation, a recognizable kind of person — Francis, Teresa of Avila, Vincent de Paul, Maximilian Kolbe, Mother Teresa — whose lives are difficult to explain on naturalist grounds.", + thesis: + "These are not pious legends. They are people whose biographies are documented, whose holiness was tested under extreme pressure, and whose effect on those around them was transformative. A tree is known by its fruit. Strange fruit, repeated for two thousand years, is data.", + strength: 4, + scripture: { + text: "By their fruits ye shall know them.", + ref: "Matthew 7:20", + }, + voices: { + newman: { + lede: "Holiness is the proper proof of Christianity.", + body: [ + "Doctrine alone does not convert. The doctrine plus a saint does. The saint is the doctrine made visible — the embodied argument that the Gospel is not merely true on paper.", + "Across nineteen centuries, in every culture Christianity has reached, the same kind of human being has been produced: marked by joyful self-gift, peace under suffering, and an enlarged capacity to love unattractive people.", + "This kind of person is not produced by other ideologies in anything like the same density. The fact is unwelcome but it is a fact.", + ], + cites: [ + "Apologia Pro Vita Sua (1864)", + "An Essay on the Development of Christian Doctrine (1845)", + ], + }, + hahn: { + lede: "The covenant family produces these lives by structural reason.", + body: [ + "Christianity is not primarily an ethics or a philosophy. It is a covenant — God's binding self-gift to a family he is gathering. Inside that family, the ordinary means of grace (Eucharist, confession, Scripture, prayer) reshape persons over time.", + "The saints are not super-Christians. They are the ordinary outcome of the ordinary means, when the means are not resisted.", + "What needs explaining is not that there are saints. It is that there are not more.", + ], + cites: ["The Lamb's Supper (1999)"], + }, + lewis: { + lede: "Christianity makes new kinds of men.", + body: [ + "It is not the moral teachings of Christianity that constitute its uniqueness. They are largely shared with high paganism. It is the claim that, joined to Christ, a man becomes a new creature — that the old man dies and a son of God is born.", + "And it works. Imperfectly, slowly, with relapses. But ask anyone who has known a real Christian closely whether they have known an ordinary good person.", + "The two are not the same kind of thing.", + ], + cites: ["Mere Christianity, Bk. IV"], + }, + }, + related: ["resurrection", "religious-experience", "church-persistence"], + }, + { + id: "scripture-prophecy", + layer: "christianity", + n: 11, + title: "Scripture is unified across a millennium", + claim: + "The Bible is seventy-three books written by some forty authors over fifteen hundred years, on three continents and in three languages, telling one progressively-revealed story that culminates in a person. The structural correspondences between Old and New Testaments are too specific, too numerous, and too distributed across independent authors to be the product of editorial coordination.", + thesis: + "Typology is the test case. A handful of loose thematic echoes could be coincidence or retroactive reading. What we actually find is something else: tight clusters of structural identity — same mountain, same wood, same beloved son, same three-day pattern, same substitute — threaded through texts written a thousand years apart by authors who could not have seen the whole. Read in canonical order, the Old Testament reads like a problem whose solution is already encoded in the problem itself. This is the literary signature of an Author behind the authors.", + strength: 4, + scripture: { + text: "Then opened he their understanding, that they might understand the scriptures.", + ref: "Luke 24:45", + }, + voices: { + hahn: { + lede: "The Akedah is the fingerprint pressed deepest into the page.", + body: [ + "Read Genesis 22 with the Passion in mind and the correspondences are not impressionistic — they are structural. Abraham is told to take his son, his only son, whom he loves, to the land of Moriah and offer him there. Two Chronicles 3:1 identifies Moriah as the Temple Mount. Calvary sits on the same Jerusalem ridge. Father offers son on the same mountain.", + "Isaac carries the wood for his own sacrifice up the mountain. Christ carries the wood of his cross up the same mountain. Isaac asks where the lamb is; Abraham answers, 'God himself will provide the lamb.' A thousand years later, John the Baptist points at Jesus and says, 'Behold the Lamb of God.' The providing has happened.", + "When the angel stays Abraham's hand, the substitute is found: a ram caught in a thicket of thorns. The animal that dies in Isaac's place wears a crown of thorns before being slain. Christ wears the crown of thorns and dies as the substitute. The Akedah does not merely prefigure the Cross in the abstract — it prefigures its specific image.", + "Add the rabbinic tradition that Isaac was a willing adult at the binding, not a child carried to the altar. Add the three-day journey from Beersheba to Moriah, during which Isaac is, from Abraham's perspective, as good as dead — a journey Hebrews 11:19 explicitly reads as a typological resurrection on the third day. Add the Father's voice at Christ's baptism — \"This is my beloved Son\" — which quotes the Septuagint of Genesis 22 word for word.", + "These correspondences are not loose. They are not the kind of pattern a clever reader can find in any sufficiently long text. They are tight, specific, mutually reinforcing, and distributed across authors who lived a millennium apart and could not have coordinated. The Akedah is one chapter of Genesis. The Bible has hundreds of such chapters.", + "And the Akedah does more than prefigure. It answers in advance the deepest objection to the Cross. What kind of God asks for the death of his beloved Son? The same God who, in figure, asked it first of Abraham — and then, in fact, asked it of himself.", + ], + cites: [ + "Hahn, A Father Who Keeps His Promises (1998)", + "Hahn, Kinship by Covenant (2009)", + "Catechism of the Catholic Church, §§128–130", + ], + }, + wright: { + lede: "The whole canon has the same shape, and the shape is the argument.", + body: [ + "The Old Testament has the shape of a problem. Israel was meant to be the light to the nations and could not be. The covenant was meant to undo the Adamic curse and reproduced it. The Davidic kingdom was meant to be the throne of God on earth and ended in exile. Each successive Old Testament arc reaches further and falls shorter. The book ends not with resolution but with longing.", + "The New Testament is the surprising form of the answer: the faithful Israelite who fulfills, from inside Israel, the vocation Israel could not. He is the new Adam who does not fall, the new Israel who is faithful, the true son of David whose throne does not end. He is also, scandalously, more than any of these — because the problem turned out to be deeper than Israel's alone, and the solution had to come from outside the system that had failed.", + "The Akedah is the deepest example, but the pattern is everywhere. Adam in a garden by a tree; Christ in a garden by a tree. The Passover lamb slain at the ninth hour; Christ slain at the ninth hour. Israel passing through water to wilderness to promised land; the believer passing through baptism to discipleship to glory. The bronze serpent lifted up; the Son of Man lifted up. Jonah three days in the deep; the Son of Man three days in the earth.", + "No single author plotted this. The plot is the cumulative shape that emerges across the whole. Looking back, every shock has been prepared for. Looking forward from any point in the Old Testament, the next move is genuinely surprising. This is not how anthologies behave. It is how stories with an Author behave.", + ], + cites: [ + "The New Testament and the People of God (1992)", + "Jesus and the Victory of God (1996)", + "The Day the Revolution Began (2016)", + ], + }, + newman: { + lede: "Doctrine develops because Scripture has depth.", + body: [ + "The seed of every later Catholic doctrine is in the original deposit. The Trinity is in the baptismal formula. Marian doctrine is in the new-Eve typology and the Magnificat. The Eucharistic real presence is in the Bread of Life discourse and the Emmaus breaking-of-bread. The papacy is in the keys given at Caesarea Philippi. Time unfolds what was already given.", + "This unfolding is itself an argument for the unity of Scripture. An invented religion would either freeze and become brittle, or evolve and become incoherent. Christian doctrine has done neither. It has grown the way a living thing grows — by drawing out from a single source what was always there in seed, never repudiating what came before, always recognizing itself in its earlier forms.", + "Such organic continuity, sustained across two millennia of cultural translation and intellectual challenge, is the signature of a real living source. Not a committee. Not an evolving consensus. A given deposit, with depth that takes centuries to plumb.", + ], + cites: [ + "An Essay on the Development of Christian Doctrine (1845)", + "A Grammar of Assent (1870)", + ], + }, + }, + related: ["resurrection", "church-persistence", "transformation"], + }, + { + id: "church-persistence", + layer: "christianity", + n: 12, + title: "The Church has survived itself", + claim: + "Across two millennia, the Catholic Church has been led by saints and by criminals, has prevailed against the Roman empire, Arian heresy, the fall of Rome, the Reformation, the French Revolution, Marxism, and modernity, and is still teaching the same Creed.", + thesis: + "On purely sociological terms, this should not have happened. Institutions led that badly do not survive that long. The persistence of the Church through her own corruption is a stronger argument than her flourishing under saints would have been. What needs explaining is not that Christianity has good periods — every movement does — but that this particular institution, with this particular structure and creed, has persisted at this scale through repeated catastrophic failures of its own leadership.", + strength: 3, + scripture: { + text: "And the gates of hell shall not prevail against it.", + ref: "Matthew 16:18", + }, + voices: { + newman: { + lede: "She has died often, and risen often.", + body: [ + "I count many times the Church has been declared dead — by Diocletian, by Julian, by the Goths, by the Iconoclasts, by Voltaire, by Napoleon, by the architects of the cult of Reason, by Bismarck, by Stalin. After each, she has risen, often in places her opponents had not thought to watch.", + "An institution that can survive its own emperors, its own popes, its own scandals, and its own intellectuals, and continue to draw new converts on every continent, is not an ordinary institution.", + "Compare this to the Protestant fragmentation that began in the sixteenth century. What started as a reform movement has produced, by the most cautious counts, tens of thousands of denominations within five hundred years — an order of magnitude more division in a quarter of the time. This is not a sneer; it is a structural observation. Visible institutional unity, sustained through centuries under strain, is precisely what Christ promised when he said the gates of hell would not prevail. The contrast is what makes the Catholic case visible.", + "She is held by something other than her merits.", + ], + cites: [ + "Apologia Pro Vita Sua (1864)", + "Essay on the Development of Christian Doctrine (1845)", + ], + }, + hahn: { + lede: "The covenant is unbreakable from God's side.", + body: [ + "The Church's persistence is not because her members are reliable. They are not. It is because the covenant is not a contract. A contract is an exchange of services and breaks at the first material failure. A covenant is a self-gift and is not voided by the unfaithfulness of the recipient.", + "Israel proved this in the Old Testament, again and again. The Church proves it in the New. The drama of failure-and-mercy is the engine of the story, not a flaw in it.", + "Note the contrast with Islamic institutional history, which has its own remarkable longevity but a different structure. Sunni Islam, by deliberate design, has no centralized magisterium; authority is distributed among the ulama and the schools of jurisprudence. Shia Islam has imams, but the visible imamate ended in occultation. Neither tradition makes the same kind of claim the Catholic Church makes — a single visible head, in unbroken succession, teaching one Creed across two thousand years. Whether that claim is true is the question. But it is a distinct claim, and its survival is a distinct phenomenon requiring its own explanation.", + "If Christianity were merely human, the corruption would have ended it. Its endurance through corruption is the argument.", + ], + cites: [ + "A Father Who Keeps His Promises (1998)", + "The Lamb's Supper (1999)", + ], + }, + wright: { + lede: "What started in an upper room is in every nation.", + body: [ + "Twelve unimpressive Galileans, in a backwater province of the Roman Empire, founded a movement that within three centuries had captured the empire that had killed its founder. They had no military, no money, no political program. By any standard sociological model, this should not occur.", + "The natural objection: but Judaism is older than the Church, and has shown comparable or greater fidelity through worse trials. This is true and worth honoring. Judaism is the elder covenantal partner whose continuity Christians read as confirmation — not refutation — of God's promise-keeping character. The covenant with Israel has not been revoked.", + "But the historical picture is more textured than the simple chronology suggests. The Temple fell in AD 70. The sacrificial cult that had defined Israelite worship for a millennium ended. What we now call Rabbinic Judaism — Torah-centered, synagogue-based, codified in the Mishnah around AD 200 and the Talmuds over the following centuries — is itself a first-century reconstruction, emerging in roughly the same window as the Christian movement, out of the same Second Temple matrix. Both traditions are heirs of a shared inheritance. Both made interpretive moves to account for the catastrophe of 70. Christians said: the sacrificial system has been fulfilled in the once-for-all sacrifice of the Messiah. The rabbis said: Torah study and prayer stand in the place of sacrifice until the Temple is restored.", + "These are two coherent answers to one shared question. Which is the legitimate continuation is exactly what is at issue between the two communities, and it cannot be settled by appeal to age alone — both, in their current institutional forms, are roughly contemporary developments. The argument from persistence does not refute Judaism; it joins Judaism in pointing to the kind of God who keeps covenants across catastrophe. What it specifically commends is the Christian claim that this God has acted decisively in Christ, and that the community he founded has, against all sociological expectation, endured.", + "The simplest explanation of the endurance is the one the first witnesses gave: he is risen.", + ], + cites: [ + "The New Testament and the People of God (1992)", + "Simply Christian (2006)", + ], + }, + }, + related: ["resurrection", "transformation", "scripture-prophecy"], + }, +]; + +export function findPositiveArgument(id: string): PosArgument | undefined { + return POS_ARGUMENTS.find((a) => a.id === id); +} + +export async function getPosVoices( + lang: string, +): Promise> { + if (lang === "de") { + const m = await import("./apologetik.de"); + return m.POS_VOICES_DE; + } + return POS_VOICES; +} +export async function getPosLayers(lang: string): Promise { + if (lang === "de") { + const m = await import("./apologetik.de"); + return m.POS_LAYERS_DE; + } + return POS_LAYERS; +} +export async function getPosArguments(lang: string): Promise { + if (lang === "de") { + const m = await import("./apologetik.de"); + return m.POS_ARGUMENTS_DE; + } + return POS_ARGUMENTS; +} +export async function findPositiveArgumentLang( + id: string, + lang: string, +): Promise { + const args = await getPosArguments(lang); + return args.find((a) => a.id === id); +} diff --git a/src/lib/server/scriptureLookup.ts b/src/lib/server/scriptureLookup.ts new file mode 100644 index 00000000..5bfbaa21 --- /dev/null +++ b/src/lib/server/scriptureLookup.ts @@ -0,0 +1,115 @@ +import { lookupReference } from './bible'; +import { resolveStaticAsset } from './staticAsset'; + +// English-bookname → German citation parts. +// tsv: abbreviation that allioli.tsv understands (used to look up verse) +// full: the full German book name as written in Allioli (used for display) +const EN_TO_DE_BOOK: Record = { + Genesis: { tsv: '1Mo', full: '1 Mose' }, + Exodus: { tsv: '2Mo', full: '2 Mose' }, + Leviticus: { tsv: '3Mo', full: '3 Mose' }, + Numbers: { tsv: '4Mo', full: '4 Mose' }, + Deuteronomy: { tsv: '5Mo', full: '5 Mose' }, + Joshua: { tsv: 'Jos', full: 'Josua' }, + Judges: { tsv: 'Ri', full: 'Richter' }, + Ruth: { tsv: 'Rt', full: 'Rut' }, + '1 Samuel': { tsv: '1Sam', full: '1 Samuel' }, + '2 Samuel': { tsv: '2Sam', full: '2 Samuel' }, + '1 Kings': { tsv: '1Kö', full: '1 Könige' }, + '2 Kings': { tsv: '2Kö', full: '2 Könige' }, + '1 Chronicles': { tsv: '1Chr', full: '1 Chronik' }, + '2 Chronicles': { tsv: '2Chr', full: '2 Chronik' }, + Ezra: { tsv: 'Esr', full: 'Esra' }, + Nehemiah: { tsv: 'Neh', full: 'Nehemia' }, + Esther: { tsv: 'Est', full: 'Ester' }, + Job: { tsv: 'Hi', full: 'Hiob' }, + Psalm: { tsv: 'Ps', full: 'Psalm' }, + Psalms: { tsv: 'Ps', full: 'Psalm' }, + Proverbs: { tsv: 'Spr', full: 'Sprüche' }, + Ecclesiastes: { tsv: 'Pred', full: 'Prediger' }, + 'Song of Solomon': { tsv: 'Hl', full: 'Hohelied' }, + Isaiah: { tsv: 'Jes', full: 'Jesaja' }, + Jeremiah: { tsv: 'Jer', full: 'Jeremia' }, + Lamentations: { tsv: 'Kla', full: 'Klagelieder' }, + Ezekiel: { tsv: 'Hes', full: 'Hesekiel' }, + Daniel: { tsv: 'Dan', full: 'Daniel' }, + Hosea: { tsv: 'Hos', full: 'Hosea' }, + Joel: { tsv: 'Joe', full: 'Joel' }, + Amos: { tsv: 'Am', full: 'Amos' }, + Obadiah: { tsv: 'Ob', full: 'Obadja' }, + Jonah: { tsv: 'Jon', full: 'Jona' }, + Micah: { tsv: 'Mi', full: 'Micha' }, + Nahum: { tsv: 'Nah', full: 'Nahum' }, + Habakkuk: { tsv: 'Hab', full: 'Habakuk' }, + Zephaniah: { tsv: 'Zeph', full: 'Zephanja' }, + Haggai: { tsv: 'Hagg', full: 'Haggai' }, + Zechariah: { tsv: 'Sach', full: 'Sacharja' }, + Malachi: { tsv: 'Mal', full: 'Maleachi' }, + Matthew: { tsv: 'Mt', full: 'Matthäus' }, + Mark: { tsv: 'Mk', full: 'Markus' }, + Luke: { tsv: 'Lk', full: 'Lukas' }, + John: { tsv: 'Joh', full: 'Johannes' }, + Acts: { tsv: 'Apg', full: 'Apostelgeschichte' }, + Romans: { tsv: 'Röm', full: 'Römer' }, + '1 Corinthians': { tsv: '1Kor', full: '1 Korinther' }, + '2 Corinthians': { tsv: '2Kor', full: '2 Korinther' }, + Galatians: { tsv: 'Gal', full: 'Galater' }, + Ephesians: { tsv: 'Eph', full: 'Epheser' }, + Philippians: { tsv: 'Phil', full: 'Philipper' }, + Colossians: { tsv: 'Kol', full: 'Kolosser' }, + '1 Thessalonians': { tsv: '1Thes', full: '1 Thessalonicher' }, + '2 Thessalonians': { tsv: '2Thes', full: '2 Thessalonicher' }, + '1 Timothy': { tsv: '1Tim', full: '1 Timotheus' }, + '2 Timothy': { tsv: '2Tim', full: '2 Timotheus' }, + Titus: { tsv: 'Tit', full: 'Titus' }, + Philemon: { tsv: 'Phim', full: 'Philemon' }, + Hebrews: { tsv: 'Heb', full: 'Hebräer' }, + James: { tsv: 'Jak', full: 'Jakobus' }, + '1 Peter': { tsv: '1Petr', full: '1 Petrus' }, + '2 Peter': { tsv: '2Petr', full: '2 Petrus' }, + '1 John': { tsv: '1Jo', full: '1 Johannes' }, + '2 John': { tsv: '2Jo', full: '2 Johannes' }, + '3 John': { tsv: '3Jo', full: '3 Johannes' }, + Jude: { tsv: 'Jud', full: 'Judas' }, + Revelation: { tsv: 'Offb', full: 'Offenbarung' } +}; + +// Splits "1 Corinthians 15:17" into ["1 Corinthians", "15:17"]. +function splitRef(ref: string): { book: string; chapVerse: string } | null { + const m = ref.match(/^(.+?)\s+(\d+\s*[:,]\s*\d+(?:\s*-\s*\d+)?)$/); + if (!m) return null; + return { book: m[1].trim(), chapVerse: m[2].replace(/\s+/g, '') }; +} + +export type ResolvedScripture = { text: string; ref: string }; + +export function resolveScriptureForLang( + enRef: string, + lang: 'en' | 'de' | 'la' +): ResolvedScripture { + const split = splitRef(enRef); + if (lang === 'de') { + const map = split ? EN_TO_DE_BOOK[split.book] : null; + if (split && map) { + const lookupRef = `${map.tsv} ${split.chapVerse}`; + const tsvPath = resolveStaticAsset('allioli.tsv'); + const result = lookupReference(lookupRef, tsvPath); + if (result && result.verses.length) { + const text = result.verses.map((v) => v.text).join(' '); + const display = `${map.full} ${split.chapVerse.replace(':', ',')}`; + return { text, ref: display }; + } + } + // Fallback: return original English ref unchanged + return { text: '', ref: enRef }; + } + + // Default: English (faith / fides — drb.tsv) + const tsvPath = resolveStaticAsset('drb.tsv'); + const result = lookupReference(enRef, tsvPath); + if (result && result.verses.length) { + const text = result.verses.map((v) => v.text).join(' '); + return { text, ref: enRef }; + } + return { text: '', ref: enRef }; +} diff --git a/src/params/apologetikSlug.ts b/src/params/apologetikSlug.ts new file mode 100644 index 00000000..c1fdbfc6 --- /dev/null +++ b/src/params/apologetikSlug.ts @@ -0,0 +1,5 @@ +import type { ParamMatcher } from '@sveltejs/kit'; + +export const match: ParamMatcher = (param) => { + return param === 'apologetik' || param === 'apologetics'; +}; diff --git a/src/routes/[faithLang=faithLang]/+layout.svelte b/src/routes/[faithLang=faithLang]/+layout.svelte index 2c615205..ce126714 100644 --- a/src/routes/[faithLang=faithLang]/+layout.svelte +++ b/src/routes/[faithLang=faithLang]/+layout.svelte @@ -13,6 +13,7 @@ const eastertide = isEastertide(); const prayersHref = $derived(isLatin ? '/fides/orationes' : `/${data.faithLang}/${isEnglish ? 'prayers' : 'gebete'}`); const rosaryHref = $derived(`/${data.faithLang}/${isLatin ? 'rosarium' : isEnglish ? 'rosary' : 'rosenkranz'}`); const calendarHref = $derived(`/${data.faithLang}/${isLatin ? 'calendarium' : isEnglish ? 'calendar' : 'kalender'}`); +const apologetikHref = $derived(isLatin ? '/faith/apologetics' : `/${data.faithLang}/${isEnglish ? 'apologetics' : 'apologetik'}`); const angelusHref = $derived(eastertide ? `${prayersHref}/regina-caeli` : `${prayersHref}/angelus`); @@ -22,6 +23,7 @@ const labels = $derived({ prayers: isLatin ? 'Orationes' : isEnglish ? 'Prayers' : 'Gebete', rosary: isLatin ? 'Rosarium' : isEnglish ? 'Rosary' : 'Rosenkranz', catechesis: isEnglish ? 'Catechesis' : 'Katechese', + apologetics: isLatin ? 'Apologetica' : isEnglish ? 'Apologetics' : 'Apologetik', calendar: isLatin ? 'Calendarium' : isEnglish ? 'Calendar' : 'Kalender' }); @@ -49,6 +51,7 @@ const prayersActive = $derived(isActive(prayersHref) && !isActive(angelusHref));
  • {angelusLabel}
  • {/if}
  • {labels.catechesis}
  • +
  • {labels.apologetics}
  • {labels.calendar}
  • {/snippet} diff --git a/src/routes/[faithLang=faithLang]/+page.svelte b/src/routes/[faithLang=faithLang]/+page.svelte index 74c8ff66..30f32476 100644 --- a/src/routes/[faithLang=faithLang]/+page.svelte +++ b/src/routes/[faithLang=faithLang]/+page.svelte @@ -8,6 +8,7 @@ const prayersPath = $derived(isLatin ? 'orationes' : isEnglish ? 'prayers' : 'gebete'); const rosaryPath = $derived(isLatin ? 'rosarium' : isEnglish ? 'rosary' : 'rosenkranz'); const calendarPath = $derived(isLatin ? 'calendarium' : isEnglish ? 'calendar' : 'kalender'); + const apologetikHref = $derived(isLatin ? '/faith/apologetics' : `/${data.faithLang}/${isEnglish ? 'apologetics' : 'apologetik'}`); const eastertide = isEastertide(); const labels = $derived({ @@ -19,6 +20,7 @@ : 'Hier findet man einige Gebete und einen interaktiven Rosenkranz zum katholischen Glauben. Ein Fokus auf Latein und den alten Ritus wird zu bemerken sein.', prayers: isLatin ? 'Orationes' : isEnglish ? 'Prayers' : 'Gebete', rosary: isLatin ? 'Rosarium Vivum' : isEnglish ? 'Rosary' : 'Rosenkranz', + apologetics: isLatin ? 'Apologetica' : isEnglish ? 'Apologetics' : 'Apologetik', calendar: isLatin ? 'Calendarium' : isEnglish ? 'Calendar' : 'Kalender' }); @@ -128,6 +130,10 @@

    Katechese

    + + +

    {labels.apologetics}

    +

    {labels.calendar}

    diff --git a/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/+layout.server.ts b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/+layout.server.ts new file mode 100644 index 00000000..e3221f77 --- /dev/null +++ b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/+layout.server.ts @@ -0,0 +1,22 @@ +import { redirect } from '@sveltejs/kit'; +import type { LayoutServerLoad } from './$types'; + +const expectedSlug = { de: 'apologetik', en: 'apologetics' } as const; + +export const load: LayoutServerLoad = async ({ params, parent, url }) => { + const { lang, faithLang } = await parent(); + + const prefix = `/${faithLang}/${params.apologetikSlug}`; + const tail = url.pathname.startsWith(prefix) ? url.pathname.slice(prefix.length) : ''; + + if (lang === 'la') { + throw redirect(307, `/faith/apologetics${tail}${url.search}`); + } + + const want = expectedSlug[lang as 'de' | 'en']; + if (params.apologetikSlug !== want) { + throw redirect(307, `/${faithLang}/${want}${tail}${url.search}`); + } + + return { apologetikSlug: want }; +}; diff --git a/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/+page.svelte b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/+page.svelte new file mode 100644 index 00000000..7df19934 --- /dev/null +++ b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/+page.svelte @@ -0,0 +1,241 @@ + + + + {t.title} · bocken.org + + + +
    + + diff --git a/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/+page.svelte b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/+page.svelte new file mode 100644 index 00000000..f714e739 --- /dev/null +++ b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/+page.svelte @@ -0,0 +1,553 @@ + + + + {heading} · bocken.org + + + + + + +
    + + +
    +

    {heading}

    +

    {lede}

    +
    + +
    +
    {legendTitle}
    +
    + {#each archetypes as a (a.id)} + + {/each} +
    + {#if filterArchId} + {@const sel = ARCHETYPES[filterArchId]} +
    + + {filterLabels.filteringBy} + + + {sel.name} + + · {filteredArguments.length}/{ARGUMENTS.length} + + +
    + {/if} +
    + + ({ + id: a.id, + n: a.n, + short: a.short, + title: a.title, + href: `#arg-${a.id}` + }))} + {activeId} + onItemClick={(e, id) => jumpTo(e, id)} + /> + +
    + {#each filteredArguments as arg (arg.id)} +
    + +
    + {String(arg.n).padStart(2, '0')} + {objectionLabel} +
    +
    + {arg.short} +

    {arg.title}

    +

    {arg.steel}

    +
    {arg.quote}
    +
    — {arg.quoteBy}
    + +
    + {answeredByLabel} + {#each Object.keys(arg.counters) as archId (archId)} + {@const a = ARCHETYPES[archId]} + + + {a.name} + + {/each} +
    +
    +
    + {/each} +
    +
    + + diff --git a/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/+page.ts b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/+page.ts new file mode 100644 index 00000000..6c8835e0 --- /dev/null +++ b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/+page.ts @@ -0,0 +1,8 @@ +import { getArchetypes, getArguments } from '$lib/data/apologetik'; +import type { PageLoad } from './$types'; + +export const load: PageLoad = async ({ parent }) => { + const { lang } = await parent(); + const [archetypes, args] = await Promise.all([getArchetypes(lang), getArguments(lang)]); + return { archetypes, args }; +}; diff --git a/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/[argId]/+page.svelte b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/[argId]/+page.svelte new file mode 100644 index 00000000..545feb76 --- /dev/null +++ b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/[argId]/+page.svelte @@ -0,0 +1,516 @@ + + + + {arg.title} · {isLatin ? 'Apologia' : isGerman ? 'Apologetik' : 'Arguments'} · bocken.org + + + + + + + + +
    + {labels.back} + +
    + {labels.eyebrowPrefix} + {String(arg.n).padStart(2, '0')} · {arg.short} +
    +

    {arg.title}

    + +
    +

    {labels.objectionTitle}

    +

    {arg.steel}

    +
    {arg.quote}
    +
    — {arg.quoteBy}
    +

    {labels.plain}{arg.pub}

    +
    + +
    + {#each archIds as id (id)} + {@const a = ARCHETYPES[id]} + {@const isActive = id === activeId} + { + e.preventDefault(); + selectArch(id); + }} + > + + {a.name} + + {/each} +
    + + {#if arch && counter} +
    +
    + +
    +
    {arch.name}
    +
    {arch.sub}
    + {#if arch.era !== '—'} +
    {arch.era}
    + {/if} +
    +
    + +

    {counter.lede}

    +
    + {#each counter.body as p, i (i)} +

    {p}

    + {/each} +
    + + {#if counter.cites.length > 0} +
    + {labels.citations} + {counter.cites.join(' · ')} +
    + {/if} +
    + {/if} + + {#if arg.related.length > 0} + + {/if} +
    + + diff --git a/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/[argId]/+page.ts b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/[argId]/+page.ts new file mode 100644 index 00000000..02e1ceaa --- /dev/null +++ b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/contra/[argId]/+page.ts @@ -0,0 +1,16 @@ +import { error } from '@sveltejs/kit'; +import { findArgumentLang, getArchetypes, getArguments } from '$lib/data/apologetik'; +import type { PageLoad } from './$types'; + +export const load: PageLoad = async ({ params, parent }) => { + const { lang } = await parent(); + const [arg, archetypes, args] = await Promise.all([ + findArgumentLang(params.argId, lang), + getArchetypes(lang), + getArguments(lang) + ]); + if (!arg) { + error(404, 'Argument not found'); + } + return { argument: arg, archetypes, args }; +}; diff --git a/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/+page.server.ts b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/+page.server.ts new file mode 100644 index 00000000..5e329564 --- /dev/null +++ b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/+page.server.ts @@ -0,0 +1,30 @@ +import type { PageServerLoad } from './$types'; +import { + getPosArguments, + getPosLayers, + getPosVoices, + POS_ARGUMENTS as EN_POS_ARGUMENTS +} from '$lib/data/apologetik'; +import { resolveScriptureForLang } from '$lib/server/scriptureLookup'; + +export const load: PageServerLoad = async ({ parent }) => { + const { lang } = await parent(); + const [voices, layers, args] = await Promise.all([ + getPosVoices(lang), + getPosLayers(lang), + getPosArguments(lang) + ]); + + const lng: 'en' | 'de' = lang === 'de' ? 'de' : 'en'; + const argsWithScripture = args.map((a) => { + const en = EN_POS_ARGUMENTS.find((x) => x.id === a.id); + if (!en) return a; + const resolved = resolveScriptureForLang(en.scripture.ref, lng); + return { + ...a, + scripture: resolved.text ? resolved : a.scripture + }; + }); + + return { voices, layers, args: argsWithScripture }; +}; diff --git a/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/+page.svelte b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/+page.svelte new file mode 100644 index 00000000..0605de20 --- /dev/null +++ b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/+page.svelte @@ -0,0 +1,643 @@ + + + + {labels.heading} · bocken.org + + + + + + +
    + jumpTo(e, id)} + /> + + + +
    +

    {labels.heading}

    +

    {labels.lede}

    +
    + +
    +
    {labels.cumulativeTitle}
    +

    {labels.cumulativeSub}

    + + {#each cumulativeItems as it (it.id)} + {@const stroke = POS_LAYER_COLORS[it.layer]} + {@const opacity = 0.25 + (it.strength / 5) * 0.55} + {@const sw = 0.8 + it.strength * 0.6} + + + {String(it.n).padStart(2, '0')} — {it.title} + + + + {String(it.n).padStart(2, '0')} + + + {/each} + + + + {labels.convergeLabel} + {labels.convergeSub} + +
    + {labels.layerLabels.natural} + {labels.layerLabels.theism} + {labels.layerLabels.christianity} +
    +
    + + {#each POS_LAYERS as layer (layer.id)} +
    +
    + {layer.sub} +
    +

    {layer.title}

    + + {#each byLayer(layer.id) as arg (arg.id)} +
    + +
    + {String(arg.n).padStart(2, '0')} + {labels.evidenceLabel} +
    +
    +

    {arg.title}

    +

    {arg.claim}

    + {#if arg.note} +
    {arg.note}
    + {/if} +
    + {labels.strengthLabel} + + {#each [1, 2, 3, 4, 5] as i (i)} + + {/each} + +
    + +

    {arg.thesis}

    + +
    + {labels.articulatedBy} + {#each Object.keys(arg.voices) as vid (vid)} + {@const v = POS_VOICES[vid]} + + + {v.name} + + {/each} +
    +
    +
    + {/each} +
    + {/each} +
    + + diff --git a/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/[posArgId]/+page.server.ts b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/[posArgId]/+page.server.ts new file mode 100644 index 00000000..34a34cfc --- /dev/null +++ b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/[posArgId]/+page.server.ts @@ -0,0 +1,44 @@ +import { error } from '@sveltejs/kit'; +import type { PageServerLoad } from './$types'; +import { + findPositiveArgumentLang, + getPosArguments, + getPosLayers, + getPosVoices, + POS_ARGUMENTS as EN_POS_ARGUMENTS +} from '$lib/data/apologetik'; +import { resolveScriptureForLang } from '$lib/server/scriptureLookup'; + +export const load: PageServerLoad = async ({ params, parent }) => { + const { lang } = await parent(); + const [arg, voices, layers, args] = await Promise.all([ + findPositiveArgumentLang(params.posArgId, lang), + getPosVoices(lang), + getPosLayers(lang), + getPosArguments(lang) + ]); + if (!arg) { + error(404, 'Argument not found'); + } + + const lng: 'en' | 'de' = lang === 'de' ? 'de' : 'en'; + const enArg = EN_POS_ARGUMENTS.find((x) => x.id === arg.id); + const argument = enArg + ? (() => { + const resolved = resolveScriptureForLang(enArg.scripture.ref, lng); + return { + ...arg, + scripture: resolved.text ? resolved : arg.scripture + }; + })() + : arg; + + const argsWithScripture = args.map((a) => { + const en = EN_POS_ARGUMENTS.find((x) => x.id === a.id); + if (!en) return a; + const resolved = resolveScriptureForLang(en.scripture.ref, lng); + return { ...a, scripture: resolved.text ? resolved : a.scripture }; + }); + + return { argument, voices, layers, args: argsWithScripture }; +}; diff --git a/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/[posArgId]/+page.svelte b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/[posArgId]/+page.svelte new file mode 100644 index 00000000..c1c2521b --- /dev/null +++ b/src/routes/[faithLang=faithLang]/[apologetikSlug=apologetikSlug]/pro/[posArgId]/+page.svelte @@ -0,0 +1,561 @@ + + + + {arg.title} · {isLatin ? 'Argumenta pro' : isGerman ? 'Positives' : 'Positive case'} · bocken.org + + + + + + + + +
    + {labels.back} + + {#if layer} +
    {layer.sub}
    + {/if} +
    {labels.eyebrow} {String(arg.n).padStart(2, '0')}
    +

    {arg.title}

    + +
    +

    {labels.claimTitle}

    +

    {arg.claim}

    +

    {arg.thesis}

    + {#if arg.note} +
    {arg.note}
    + {/if} +
    + +
    + {labels.strengthLabel} + + {#each [1, 2, 3, 4, 5] as i (i)} + + {/each} + +
    + + + +
    + {#each voiceIds as id (id)} + {@const v = POS_VOICES[id]} + {@const isActive = id === activeId} + { + e.preventDefault(); + selectVoice(id); + }} + > + + {v.name} + + {/each} +
    + + {#if voice && counter} +
    +
    + +
    +
    {voice.name}
    +
    {voice.sub}
    + {#if voice.era !== '—'} +
    {voice.era}
    + {/if} +
    +
    + +

    {counter.lede}

    +
    + {#each counter.body as p, i (i)} +

    {p}

    + {/each} +
    + + {#if counter.cites.length > 0} +
    + {labels.citations} + {counter.cites.join(' · ')} +
    + {/if} +
    + {/if} + + {#if arg.related.length > 0} + + {/if} +
    + + diff --git a/src/routes/[faithLang=faithLang]/katechese/zehn-gebote/+page.svelte b/src/routes/[faithLang=faithLang]/katechese/zehn-gebote/+page.svelte index 6ff39812..bf5da9e4 100644 --- a/src/routes/[faithLang=faithLang]/katechese/zehn-gebote/+page.svelte +++ b/src/routes/[faithLang=faithLang]/katechese/zehn-gebote/+page.svelte @@ -1,7 +1,9 @@