Skip to content

Commit 16291f6

Browse files
committed
fix: fallacies blog improvements
1 parent 33800b4 commit 16291f6

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed

public/posts/encyclopedia-of-bad-arguments.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ This happens when someone makes a universal claim ("All X do Y"), gets presented
7676
* **Alice:** "No Scotsman puts sugar on his porridge."
7777
* **Bob:** "But my uncle Angus is Scottish, and he loves sugar on his porridge."
7878
* **Alice:** "Ah, yes, but no *true* Scotsman puts sugar on his porridge."
79-
* **Why it's wrong:** It's an ad-hoc rescue of a flawed argument. You change the rules mid-game to avoid being wrong.
79+
* **Why it's wrong:** It's an **[ad-hoc](/vocab/ad-hoc)** rescue of a flawed argument. You change the rules mid-game to avoid being wrong.
8080

8181
---
8282

@@ -97,10 +97,12 @@ Also known as confusing **[correlation](/vocab/correlation-vs-relation)** with c
9797
* **The Reality:** There is a hidden third variable: Summer heat. People eat ice cream when it's hot, and they swim in the ocean when it's hot.
9898

9999
### 3. The Texas Sharpshooter
100-
Imagine a cowboy shooting his gun randomly at the side of a barn. Afterward, he walks up, paints a bullseye around the tightest cluster of bullet holes, and claims he's a sharpshooter.
100+
Imagine a cowboy shooting his gun randomly at the side of a barn. Afterward, he walks up, paints a bullseye around the tightest cluster of bullet holes, and claims he's a sharpshooter.
101101

102102
This fallacy occurs when a person emphasizes similarities in data but ignores the differences, artificially creating a pattern where none exists. (This is common in conspiracy theories and numerology).
103103

104+
* **The Fallacy:** "Look at these three successful tech CEOs. They all dropped out of college, they all drink green tea, and they all own golden retrievers. Therefore, dropping out of college and drinking green tea with a golden retriever is the secret formula for building a billion-dollar startup!"
105+
* **Why it's wrong:** The speaker is ignoring the thousands of college dropouts with green tea and golden retrievers who went bankrupt, cherry-picking only the data points that fit their desired narrative.
104106
---
105107

106108
## Part IV: Weapons of Distraction
@@ -145,6 +147,8 @@ Continuing a behavior or endeavor as a result of previously invested resources (
145147
A cognitive bias whereby people with low ability, expertise, or experience regarding a certain type of task or area of knowledge tend to overestimate their ability or knowledge.
146148
* Essentially: The less you know about a subject, the simpler it seems, leading to overconfidence. (See: Every person who argues with an epidemiologist on Twitter).
147149

150+
![Dunning-Kruger Effect Curve](https://upload.wikimedia.org/wikipedia/commons/4/46/Dunning%E2%80%93Kruger_Effect_01.svg)
151+
148152
---
149153

150154
## Conclusion: How to Survive the Noise

src/data/vocab/ad-hoc.jsx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import React from 'react';
2+
3+
export default function AdHoc() {
4+
return (
5+
<div className="space-y-6 font-mono text-sm leading-relaxed">
6+
<p>
7+
An <strong className="text-current">Ad Hoc</strong> (Latin for "to this") argument or rescue is an explanation entirely invented after the fact to save a flawed theory from being disproven.
8+
</p>
9+
10+
<div className="border-l-2 border-emerald-500/50 pl-4 py-1 italic opacity-70 text-xs">
11+
Changing the rules of the game just so you don't lose.
12+
</div>
13+
14+
<p>Key characteristics:</p>
15+
<ul className="space-y-2 text-xs opacity-80 list-disc pl-4">
16+
<li>
17+
<strong>Post-Facto:</strong> It is not a prediction or a premise; it is an excuse created exactly at the moment it is needed.
18+
</li>
19+
<li>
20+
<strong>Untestable:</strong> Often, the ad hoc rescue introduces a new variable that cannot be independently tested or verified. E.g., "The psychic's powers didn't work because your negative energy interfered with them."
21+
</li>
22+
<li>
23+
<strong>Complexity:</strong> It violates Occam's Razor by constantly adding new, unnecessary complexities to a theory just to keep it alive.
24+
</li>
25+
</ul>
26+
</div>
27+
);
28+
}

src/data/vocabulary.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ export const vocabulary = {
33
title: 'Absurdism',
44
loader: () => import('./vocab/absurdism'),
55
},
6+
'ad-hoc': {
7+
title: 'Ad Hoc',
8+
loader: () => import('./vocab/ad-hoc'),
9+
},
610
antikythera: {
711
title: 'Antikythera Mechanism',
812
loader: () => import('./vocab/antikythera'),

0 commit comments

Comments
 (0)