Skip to content

Commit 50e1697

Browse files
committed
content(vocab): baader meinhof
1 parent 97ca4e2 commit 50e1697

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

src/data/vocab/baader-meinhof.jsx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import React from 'react';
2+
3+
export default function BaaderMeinhof() {
4+
return (
5+
<div className="space-y-6 font-mono text-sm leading-relaxed">
6+
<p>
7+
The <strong className="text-current">Baader-Meinhof Phenomenon</strong>, also known as the Frequency Illusion, occurs when something you've just noticed, experienced, or been told about suddenly seems to crop up everywhere.
8+
</p>
9+
10+
<p>
11+
It is a cognitive bias caused by two processes: <em>selective attention</em> (your brain subconsciously looking out for the new information) and <em>confirmation bias</em> (reassuring you that each sighting is proof that the thing has gained overnight ubiquity).
12+
</p>
13+
14+
<div className="border-l-2 border-emerald-500/50 pl-4 py-2 my-6">
15+
<h4 className="text-xs font-bold text-emerald-400 uppercase tracking-widest mb-3">
16+
Why "Baader-Meinhof"?
17+
</h4>
18+
<p className="text-xs text-gray-400 leading-relaxed">
19+
The name was coined in 1994 by a commenter on a St. Paul Pioneer Press discussion board, who had recently learned about the 1970s West German militant group, the Baader-Meinhof Gang, and then suddenly started hearing about them everywhere. The scientific term for it is the <strong>Frequency Illusion</strong>.
20+
</p>
21+
</div>
22+
</div>
23+
);
24+
}

src/data/vocabulary.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ export const vocabulary = {
1515
title: 'Anti-Pattern',
1616
loader: () => import('./vocab/anti-pattern'),
1717
},
18+
'baader-meinhof': {
19+
title: 'Baader-Meinhof Phenomenon',
20+
loader: () => import('./vocab/baader-meinhof'),
21+
},
1822
'barnum-effect': {
1923
title: 'Barnum Effect',
2024
loader: () => import('./vocab/barnum-effect'),

0 commit comments

Comments
 (0)