Initial commit — Singular Particular Space v1

Homepage (site/index.html): integration-v14 promoted, Writings section
integrated with 33 pieces clustered by type (stories/essays/miscellany),
Writings welcome lightbox, content frame at 98% opacity.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-27 12:09:22 +02:00
commit 5422131782
359 changed files with 117437 additions and 0 deletions

View File

@@ -0,0 +1,903 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Why the "Master Race" Makes Sense to Some People — Annotated Edition</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Playfair+Display+SC:wght@400;700&family=UnifrakturMaguntia&display=swap" rel="stylesheet">
<style>
:root {
--parchment: #f2e8d5;
--parchment-dark: #e0d0b0;
--ink: #1a0d08;
--ink-faded: #5a3a28;
--burgundy: #5c1a2e;
--burgundy-light: #7a2540;
--gold: #9a7020;
--gold-light: #c89030;
--verdigris: #2a5a50;
--rule: #9a7020;
--shadow: rgba(26,13,8,0.22);
}
* { box-sizing: border-box; margin:0; padding:0; }
body {
background: #2c1a10;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
font-family: 'IM Fell English', 'Georgia', serif;
color: var(--ink);
min-height: 100vh;
}
/* NAV */
nav {
position: sticky; top: 0; z-index: 1000;
background: var(--ink);
border-bottom: 3px double var(--gold);
display: flex; gap: 0; overflow-x: auto;
}
nav button {
font-family: 'Playfair Display SC', serif;
font-size: 0.78rem;
letter-spacing: 0.1em;
background: none; border: none;
color: #c8a870;
padding: 0.75rem 1.4rem;
cursor: pointer;
white-space: nowrap;
border-bottom: 3px solid transparent;
margin-bottom: -3px;
transition: color 0.2s, border-color 0.2s;
}
nav button:hover { color: var(--parchment); }
nav button.active { color: var(--parchment); border-bottom-color: var(--gold); }
/* WRAPPER */
.page-wrap { max-width: 760px; margin: 0 auto; padding: 2rem 1rem 5rem; }
/* TAB SYSTEM */
.tab-content { display: none; }
.tab-content.active { display: block; }
/* PAPER */
.paper {
background: var(--parchment);
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='600' height='600' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
border: 2px solid var(--gold);
box-shadow: 4px 6px 28px var(--shadow), inset 0 0 60px rgba(26,13,8,0.04);
padding: 2.5rem 3rem 3rem;
position: relative;
}
.paper::before {
content: '';
position: absolute;
inset: 6px;
border: 1px solid rgba(154,112,32,0.3);
pointer-events: none;
}
/* ORNAMENTAL RULE */
.ornament {
text-align: center;
color: var(--gold);
font-size: 1.3rem;
margin: 1.4rem 0;
letter-spacing: 0.25em;
line-height: 1;
}
.ornament::before, .ornament::after {
content: ' ✦ ';
font-size: 0.7em;
}
hr.rule {
border: none;
border-top: 1px solid var(--rule);
margin: 1.4rem 0;
}
hr.rule-double {
border: none;
border-top: 3px double var(--rule);
margin: 1.8rem 0;
}
/* TYPOGRAPHY */
h1 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
font-weight: 900;
text-align: center;
line-height: 1.2;
color: var(--ink);
margin-bottom: 0.3rem;
}
.h1-sub {
font-family: 'Playfair Display', serif;
font-style: italic;
font-size: 1.15rem;
text-align: center;
color: var(--ink-faded);
margin-bottom: 0.4rem;
}
h2 {
font-family: 'Playfair Display', serif;
font-weight: 700;
font-size: 1.35rem;
color: var(--burgundy);
margin: 2rem 0 0.6rem;
text-align: center;
}
h3 {
font-family: 'Playfair Display SC', serif;
font-size: 0.95rem;
letter-spacing: 0.08em;
color: var(--verdigris);
margin: 1.4rem 0 0.4rem;
}
.masthead {
font-family: 'UnifrakturMaguntia', cursive;
font-size: 3.2rem;
text-align: center;
color: var(--burgundy);
line-height: 1.1;
margin-bottom: 0.1rem;
letter-spacing: 0.02em;
}
.byline {
font-family: 'Playfair Display SC', serif;
font-size: 0.75rem;
letter-spacing: 0.12em;
text-align: center;
color: var(--ink-faded);
margin-bottom: 1rem;
}
.byline a { color: var(--gold); text-decoration: none; }
.byline a:hover { text-decoration: underline; }
/* PROSE */
p {
font-size: 1.02rem;
line-height: 1.85;
margin-bottom: 1.1rem;
text-align: justify;
hyphens: auto;
}
p:first-of-type::first-letter {
font-family: 'Playfair Display', serif;
font-size: 3.2em;
font-weight: 900;
float: left;
line-height: 0.75;
margin-right: 0.08em;
margin-top: 0.12em;
color: var(--burgundy);
}
strong { color: var(--ink); }
/* SECTION HEADERS in essay */
.section-head {
font-family: 'Playfair Display SC', serif;
font-size: 1.05rem;
letter-spacing: 0.1em;
text-align: center;
color: var(--burgundy);
margin: 2rem 0 0.8rem;
}
.summary-box {
border: 1px solid var(--gold);
padding: 1rem 1.2rem;
margin: 1.2rem 0;
background: rgba(154,112,32,0.05);
font-size: 0.95rem;
line-height: 1.7;
}
.summary-box ol { padding-left: 1.4rem; }
.summary-box li { margin-bottom: 0.5rem; }
/* CAVEAT / ANNOTATION CALLOUT */
.caveat {
border-left: 4px solid var(--burgundy);
background: rgba(92,26,46,0.06);
padding: 0.7rem 1rem;
margin: 1rem 0;
font-size: 0.9rem;
line-height: 1.65;
font-style: italic;
}
.caveat strong {
font-style: normal;
font-family: 'Playfair Display SC', serif;
font-size: 0.82rem;
letter-spacing: 0.08em;
color: var(--burgundy);
display: block;
margin-bottom: 0.2rem;
}
.caveat a { color: var(--gold); }
/* SIGN OFF */
.signoff {
font-family: 'Playfair Display', serif;
font-style: italic;
color: var(--ink-faded);
text-align: center;
margin-top: 1.5rem;
font-size: 1.05rem;
line-height: 1.8;
}
.signoff strong { font-style: normal; }
/* DECODER */
.decoder { display: inline; position: relative; }
.decoder-trigger {
font-family: inherit; font-size: inherit; font-style: inherit;
background: none; border: none;
border-bottom: 1px dotted var(--burgundy);
color: var(--burgundy);
cursor: pointer; padding: 0 1px;
}
.decoder-trigger::after { content: '\2038'; font-size: 0.65em; vertical-align: super; color: var(--gold); }
.decoder-trigger.open::after { content: '\2039'; }
.decoder-panel {
display: none; position: absolute;
top: calc(100% + 6px); left: 0; z-index: 500;
width: 310px;
background: var(--ink);
color: var(--parchment);
border: 1px solid var(--gold);
padding: 0.85rem 1rem;
box-shadow: 3px 5px 20px var(--shadow);
font-size: 0.86rem; line-height: 1.6;
font-style: normal;
}
.decoder-panel.open { display: block; }
.decoder-panel.flip-left { left: auto; right: 0; }
.decode-label {
display: block;
font-family: 'Playfair Display SC', serif;
font-size: 0.7rem; letter-spacing: 0.12em;
color: var(--gold-light); margin-bottom: 0.2rem;
}
.decode-term {
display: block;
font-family: 'Playfair Display', serif;
font-size: 1.05rem; font-weight: 700;
margin-bottom: 0.35rem;
}
.decode-link {
display: block; margin-top: 0.45rem;
color: var(--gold-light); text-decoration: none;
font-family: 'Playfair Display SC', serif; font-size: 0.75rem;
}
.decode-link:hover { text-decoration: underline; }
/* LIGHTBOX TRIGGER */
.lb-trigger {
font-family: inherit; font-size: inherit; font-style: inherit;
background: rgba(92,26,46,0.07); border: 1px solid var(--burgundy-light);
color: var(--burgundy); cursor: pointer; padding: 0 3px;
border-radius: 1px; transition: background 0.15s;
}
.lb-trigger:hover { background: rgba(92,26,46,0.16); }
/* LIGHTBOX */
.lightbox-overlay {
display: none; position: fixed; inset: 0;
background: rgba(26,13,8,0.75); z-index: 2000;
align-items: center; justify-content: center; padding: 1rem;
}
.lightbox-overlay.open { display: flex; }
.lightbox-box {
background: var(--parchment);
border: 2px solid var(--gold);
max-width: 600px; width: 100%;
max-height: 88vh; overflow-y: auto;
}
.lightbox-header {
display: flex; justify-content: space-between; align-items: center;
padding: 0.9rem 1.2rem;
border-bottom: 1px solid var(--gold);
position: sticky; top: 0; background: var(--parchment);
}
.lightbox-title {
font-family: 'Playfair Display', serif;
font-size: 1.2rem; font-weight: 700; color: var(--burgundy);
}
.lightbox-close {
background: none; border: none;
font-size: 1.1rem; cursor: pointer; color: var(--ink-faded);
}
.lightbox-body {
padding: 1.2rem 1.5rem 1.5rem;
font-size: 0.93rem; line-height: 1.72;
}
.lightbox-body h3 {
text-align: left; margin-top: 0.9rem; margin-bottom: 0.35rem;
font-family: 'Playfair Display SC', serif; font-size: 0.9rem;
color: var(--verdigris); letter-spacing: 0.07em;
}
.lightbox-body p { margin-bottom: 0.75rem; text-align: left; font-size: 0.93rem; }
.lightbox-body p::first-letter { font-size: 1em; float: none; }
.lightbox-body a { color: var(--burgundy); }
/* ACCORDION */
.accordion-item { border-bottom: 1px solid var(--gold); }
.accordion-trigger {
width: 100%; background: none; border: none; text-align: left;
padding: 0.85rem 0;
font-family: 'Playfair Display', serif;
font-size: 1.0rem; font-style: italic;
color: var(--ink); cursor: pointer;
display: flex; justify-content: space-between; align-items: center;
}
.accordion-trigger:hover { color: var(--burgundy); }
.accordion-trigger.open { color: var(--burgundy); }
.accordion-arrow { font-style: normal; font-size: 0.85rem; color: var(--gold); transition: transform 0.2s; }
.accordion-trigger.open .accordion-arrow { transform: rotate(180deg); }
.accordion-panel { display: none; padding: 0 0 1rem; font-size: 0.95rem; line-height: 1.78; }
.accordion-panel.open { display: block; }
.accordion-panel p { margin-bottom: 0.7rem; text-align: left; }
.accordion-panel p::first-letter { font-size: 1em; float: none; }
.accordion-panel a { color: var(--burgundy); }
/* FACT BOX */
.fact-box {
background: var(--ink); color: var(--parchment);
border: 1px solid var(--gold);
padding: 1rem 1.2rem; margin: 1.2rem 0;
font-size: 0.9rem; line-height: 1.65;
}
.fact-box strong { color: var(--gold-light); font-family: 'Playfair Display SC', serif; font-size: 0.85rem; }
.fact-box p { text-align: left; margin-bottom: 0.5rem; color: var(--parchment); }
.fact-box p:last-child { margin-bottom: 0; }
.fact-box p::first-letter { font-size: 1em; float: none; }
/* TIMELINE */
.timeline { list-style: none; padding: 0; margin: 1rem 0; }
.timeline li {
padding: 0.5rem 0 0.5rem 2rem;
border-left: 2px solid var(--gold);
position: relative; font-size: 0.92rem; line-height: 1.65;
}
.timeline li::before {
content: ''; width: 9px; height: 9px;
background: var(--burgundy); border: 1px solid var(--gold);
position: absolute; left: -5px; top: 0.8rem;
}
.timeline li strong { font-family: 'Playfair Display SC', serif; font-size: 0.88rem; color: var(--verdigris); display: block; }
/* READING CARDS */
.reading-section { margin-bottom: 1.8rem; }
.reading-section h3 { text-align: left; border-bottom: 1px solid var(--gold); padding-bottom: 0.3rem; }
.reading-card {
display: block; background: rgba(154,112,32,0.07);
border: 1px solid var(--parchment-dark);
border-left: 3px solid var(--gold);
padding: 0.65rem 0.9rem; margin-bottom: 0.5rem;
text-decoration: none; color: var(--ink);
font-size: 0.9rem; line-height: 1.55;
transition: border-left-color 0.15s;
}
.reading-card:hover { border-left-color: var(--burgundy); }
.reading-card strong { display: block; color: var(--burgundy); font-family: 'Playfair Display', serif; font-size: 1.0rem; font-style: italic; }
.reading-card span { font-size: 0.8rem; color: var(--ink-faded); }
/* STAMP */
.stamp {
font-family: 'Playfair Display SC', serif;
font-size: 0.68rem; letter-spacing: 0.15em;
color: var(--burgundy); border: 1.5px solid var(--burgundy);
padding: 0.2em 0.7em; display: inline-block;
transform: rotate(-1.2deg); opacity: 0.65; margin-bottom: 1rem;
}
/* ESSAY-SPECIFIC: lazy-summary box */
.lazy-summary {
background: rgba(154,112,32,0.07);
border: 1px solid var(--gold);
padding: 1rem 1.2rem; margin: 1.2rem 0;
font-size: 0.93rem; line-height: 1.7;
}
.lazy-summary ol { padding-left: 1.4rem; }
.lazy-summary li { margin-bottom: 0.4rem; }
.lazy-summary em { font-size: 0.85rem; color: var(--ink-faded); }
</style>
</head>
<body>
<nav>
<button class="active" onclick="showTab('essay',this)">⬛ The Essay</button>
<button onclick="showTab('before',this)">📜 Before the Essay</button>
<button onclick="showTab('after',this)">🌍 Since 2018</button>
<button onclick="showTab('reading',this)">📚 Further Reading</button>
</nav>
<div class="page-wrap">
<!-- ===== TAB 1: THE ESSAY ===== -->
<div id="tab-essay" class="tab-content active">
<div class="paper">
<span class="stamp">Steemit · 9 September 2018 · Annotated Edition</span>
<div class="masthead">The Master Race</div>
<div class="h1-sub">Why the Concept Makes Sense to Some People —<br>and Why Those People are Wrong</div>
<p class="byline">by <a href="https://steemit.com/@your-nomad-soul" target="_blank">your-nomad-soul</a><br>
<em>Annotations & fact-checks in the margins. Click underlined terms for context; bracketed passages for deeper caveats.</em></p>
<hr class="rule-double">
<p>I was tempted to leave the parenthetical out of the headline, but decided against it because I'm pretty sure that, as enlightened as folks on Steemit may be, many would see the headline and assume they know what this article will be about.</p>
<div class="lazy-summary">
<strong style="font-family:'Playfair Display SC',serif; font-size:0.88rem; letter-spacing:0.08em; color:var(--burgundy);">A Summary for the Lazy Reader.</strong>
<p style="margin-top:0.4rem;">This post will argue (without any evidence, because I'm lazy) that:</p>
<ol>
<li>From the perspective of Europeans alive before WW2, the idea that they were the "Master Race" was a logical conclusion to draw from the world they saw around them.</li>
<li>The logic of this conclusion can still be applied today. The modern variants of this concept are so subtle and insidious that they have been woven into the fabric of our Modern World in ways that most people will never notice or question.</li>
<li>To truly be rid of the concept of a "Master Race", humanity needs to actively dismantle, and then replace, some of the fundamental structures of the world as we know it.</li>
</ol>
<p><em>Annotator's note: The "without any evidence" disclaimer is self-deprecating but shouldn't be taken literally — most of what follows is historically defensible, with some important exceptions noted throughout.</em></p>
</div>
<div class="ornament">· · ·</div>
<h2>One — Why the "Master Race" Makes Sense.</h2>
<hr class="rule">
<p>This section is going to require some mental gymnastics and a fair bit of imagination for those of you who aren't
<span class="decoder" id="dec-nazis"><button class="decoder-trigger" onclick="toggleDecoder('dec-nazis',this)">Nazis</button>
<span class="decoder-panel"><span class="decode-label">Definition</span><span class="decode-term">National Socialists (NSDAP)</span>Members of the National Socialist German Workers' Party, which governed Germany 19331945 under Adolf Hitler. The term "Nazi" derives from the German pronunciation of "National." They promoted Aryan racial supremacy, antisemitism, and violent expansionism.
<a class="decode-link" href="https://encyclopedia.ushmm.org/content/en/article/nazi-racism" target="_blank">→ Holocaust Encyclopedia</a></span></span>,
because I'm going to try and convince you that you could be one in a world where you didn't know any better.</p>
<p>So, imagine that you have been born to European parents in the Year of Our Lord 1900. You are 12, white, and male. Let's say you live in England. In two years, the End of Your World will begin and the cycle of that Apocalypse will finally complete itself by the time you turn 45. But you don't know that yet. So, as your first few armpit hairs begin to grow, this is what you are told about your world:</p>
<div class="section-head">The Empire is Everything</div>
<p>You are a subject of the greatest territorial
<span class="decoder" id="dec-empire"><button class="decoder-trigger" onclick="toggleDecoder('dec-empire',this)">Empire</button>
<span class="decoder-panel"><span class="decode-label">Historical context</span><span class="decode-term">The British Empire, c. 1900</span>At its territorial peak around 1920, the British Empire covered approximately 24% of the Earth's land surface — around 35.5 million km². In 1900 it already encompassed India, large parts of Africa, Australia, Canada, and numerous other territories.
<a class="decode-link" href="https://en.wikipedia.org/wiki/British_Empire" target="_blank">→ Wikipedia</a></span></span>
mankind has ever forged. So vast and far-reaching are the lands that fly the
<span class="decoder" id="dec-union"><button class="decoder-trigger" onclick="toggleDecoder('dec-union',this)">Union Jack</button>
<span class="decoder-panel"><span class="decode-label">Symbol</span><span class="decode-term">The Union Flag (Union Jack)</span>The national flag of the United Kingdom, combining the crosses of St. George (England), St. Andrew (Scotland), and St. Patrick (Ireland). Its display across colonial territories was a deliberate symbol of sovereignty and ownership.
</span></span>, that your schoolteachers have often said that the Sun never sets on them. These distant lands, you are told, are peopled with all manner of strange looking humans, all of whom have, after much fuss and adventure, seen the sense of bowing to the Crown.</p>
<p>Everything good about the world you live in, so you're told, is a result of this state of affairs. You owe your past, present and future to the success of the Empire. Without it, you are told, the world you know would fall apart.</p>
<p>If you so choose, you can go to a public library, and find all sorts of information about the world you live in. Books upon books upon books of tales and treatises that expound for you the "Marvels of the Modern World" and how it came to be.</p>
<p>In the Sciences section, you will find tomes that tell of inventions and discoveries that have, in but a few short centuries, led to the heaving, groaning, ever-growing machines at the heart of the Empire's success. The Locomotive, the Steamship, the Printing Press, the
<span class="decoder" id="dec-maxim"><button class="decoder-trigger" onclick="toggleDecoder('dec-maxim',this)">Maxim Machine Gun</button>
<span class="decoder-panel"><span class="decode-label">Technology of empire</span><span class="decode-term">The Maxim Gun (invented 1884)</span>The world's first self-powered machine gun, invented by Hiram Stevens Maxim. Widely deployed by British colonial forces, it was decisive in such massacres as the Battle of Omdurman (1898), where 10,00012,000 Sudanese were killed in a single morning. Writer Hilaire Belloc captured the colonial calculus: "We have got the Maxim gun, and they have not."
<a class="decode-link" href="https://en.wikipedia.org/wiki/Maxim_gun" target="_blank">→ Wikipedia</a></span></span>,
Penicillin, Hydraulics, Machine Tools and Clockworks. You will find the thoughts of Newton, Euler, Plato, Marcus Aurelius and Darwin as well as countless others and the commentaries of those they influenced. There is already so much, just in this part of the library, that you can never hope to learn it all in one lifetime. But the names and portraits are almost all white, male and European.</p>
<div class="caveat"><strong>Annotator's Caveat — What the Library Left Out</strong>
The essay correctly identifies how curated knowledge reinforced racial hierarchy. But the 1900 library's omissions were also deliberate: Islamic scholars had transmitted Greek philosophy to Europe through the medieval period; Indian mathematicians developed the numeral system in use globally; Chinese engineers invented printing, paper, and gunpowder. The library's whiteness was not a reflection of history — it was an active construction of it.
<a href="https://thereader.mitpress.mit.edu/a-prehistory-of-scientific-racism/" target="_blank">→ MIT Press: Prehistory of Scientific Racism</a></div>
<p>In the Geography section, you find descriptions of far off lands, many of them part of the Empire, full of savages of different sizes and colours. The pictures of these humanoid creatures that you find are so different from the world you know and the descriptions that you encounter can easily convince you that, even if they are human, they are not the same <em>kind</em> of human as you. While you're in this section, reading these things, your mind may wander to the dark skinned folk that you've seen here and there doing some sort of low-skill labour here and there.</p>
<p>In the History section, you will encounter slavery. You will learn, quite quickly, that slaves were a central part of the functioning of Empires until your Empire, by the Grace of God, brought it to an end a few generations ago after
<span class="decoder" id="dec-wilberforce"><button class="decoder-trigger" onclick="toggleDecoder('dec-wilberforce',this)">Wilberforce and the Abolitionists</button>
<span class="decoder-panel"><span class="decode-label">Historical figure</span><span class="decode-term">William Wilberforce (17591833)</span>British MP and abolitionist who led the parliamentary campaign to abolish the slave trade. The Slave Trade Act of 1807 abolished the trade within the British Empire; the Slavery Abolition Act of 1833 freed enslaved people in most British territories. Crucially, British slaveholders were compensated; the enslaved were not.
<a class="decode-link" href="https://en.wikipedia.org/wiki/William_Wilberforce" target="_blank">→ Wikipedia</a></span></span>
finally convinced Parliament that it was a Sin to force a Man to work without wage. Most of the books in this section will speak of the World in terms of Masters and Servants, of Conquerers and Conquered, the Victors and the Vanquished. Subjugation, subordination and hierarchies are how things are because that is how they have always been.</p>
<p>And if you were to go into the Religion section, you will discover that there is only one. Near endless texts on Christianity and its superiority. All other faiths are only mentioned in order to demonstrate them as false. There is One God, One Savior and One Faith worth believing in.</p>
<p>This is your world. And when you turn 14, it will Begin to End.</p>
<hr class="rule">
<p>Okay, I'm done with that little picture of an English boy in 1912. That image is necessary though, for this next part of the first bit.</p>
<p>Here's a question: How much of a leap is it for that little boy to believe that he is by virtue of his birth alone, a member of a group of Masters? Not much. That much, I think, is easy to see.</p>
<p>What is more difficult to see, is where the seed of the "Master Race" concept truly takes root. You see, it's not in the fact that different shades of people exist (that is to say, the conception of Race, and more specifically the myths of
<span class="decoder" id="dec-race"><button class="decoder-trigger" onclick="toggleDecoder('dec-race',this)">Race</button>
<span class="decoder-panel"><span class="decode-label">Scientific status</span><span class="decode-term">"Race" as a social construct</span>Modern genetics has conclusively established that "race" is not a biologically meaningful category. Human genetic variation does not cluster into the discrete groups that racial ideology assumes. The concept of biological races was invented in the 17th19th centuries to justify colonialism and slavery, and persists as a social and political reality despite having no scientific basis.
<a class="decode-link" href="https://en.wikipedia.org/wiki/Scientific_racism" target="_blank">→ Wikipedia: Scientific Racism</a></span></span>
that were formulated and proliferated to justify and perpetuate
<span class="decoder" id="dec-chattel"><button class="decoder-trigger" onclick="toggleDecoder('dec-chattel',this)">Chattel Slavery</button>
<span class="decoder-panel"><span class="decode-label">Definition</span><span class="decode-term">Chattel Slavery</span>A form of slavery in which people are treated as personal property that can be bought, sold, and inherited. The transatlantic chattel slave trade operated from the 16th to 19th centuries, forcibly transporting an estimated 12.5 million Africans to the Americas. Racial ideology largely developed <em>after</em> the trade began — as justification rather than cause.
<a class="decode-link" href="https://en.wikipedia.org/wiki/Atlantic_slave_trade" target="_blank">→ Wikipedia</a></span></span>
and (post-Abolition) Segregationist thinking). It is not simply down to propaganda, either. It is, at least in my opinion, in the concept of a Master.</p>
<p>You see, when you think about the word Master, you find two concepts hiding inside — <em>Excellence</em> and <em>Dominion</em>.</p>
<p>A Master Craftsman is one thing.<br>
The Master of the Plantation is another.</p>
<p>Masterful Mastery is the Mark of the Master.</p>
<p>Now, think about the last 300 years of human history. There is, in a sense, a case to be made, that the descendants of the Peoples of Europe forged themselves into the Masters of the World. The simplest version of this idea is two words: <strong>"Master Race."</strong> Makes Sense, doesn't it?</p>
<div class="ornament">· · ·</div>
<h2>Two — How It All Falls Apart. And Gets Built Again.</h2>
<hr class="rule">
<p>Let's be clear about something here — evil has a way of convincing you that it isn't. Put another way: the greatest villains are those who can convince you that they're heroes. This is important going forward with this meandering mess of an article.</p>
<p>By now, dear reader, you should have a vague sense of how the Myth of a Master Race came to be accepted by so many in the world before the World Wars. It is a matter of fact that most of the planet had, by the beginning of the 20th Century, been brought under the heel of White Men (many of whom were cousins) in some fashion or another, and had been turned into a machine that made the White Man wealthy. To those who lived then, it was the 'way of things'; ordained by God, won by Gun, driven by Gold.</p>
<p>And then the World Wars happened. Everything changed. The Old World Order ended, a New One rose in its place.</p>
<p>As Europe crashed and burned the first time, a very important thing happened to the minds of those who survived... They suffered the privations they had wrought on those they had subjugated. Suddenly Kings and Emperors were not so fine and beautiful. If a Young Man came back from the front, he returned broken — betrayed by his Masters. In the wake of "The Great War", monarchies crumbled. But the Myth of Race survived. As did the Empires.</p>
<hr class="rule">
<p>This was a big part of why, when the fever-dream of the 20s crashed hard into the Hangover of the 30s,
<span class="decoder" id="dec-hitler"><button class="decoder-trigger" onclick="toggleDecoder('dec-hitler',this)">Hitler's ideas</button>
<span class="decoder-panel"><span class="decode-label">Historical context</span><span class="decode-term">Rise of National Socialism</span>Hitler's appeal in the late 1920s30s drew on the "stab-in-the-back" myth (that Germany was betrayed by Jews and socialists, not defeated militarily in WW1), the humiliation of the Treaty of Versailles, hyperinflation, mass unemployment, and a pre-existing culture of racial antisemitism running deep in European thought since the Middle Ages.
<a class="decode-link" href="https://www.annefrank.org/en/anne-frank/go-in-depth/why-did-hitler-hate-jews/" target="_blank">→ Anne Frank House</a></span></span>
found fertile ground in the minds of his countrymen.</p>
<p>Living memory was all it took, to remind folks of the Good Ol' Days. Bad Masters were to blame for the whole thing going crater-shaped. Hitler's whole shtick and spiel boiled down to —
<button class="lb-trigger" onclick="openLightbox('lb-hitler')">"Jews are the Masters but they shouldn't be; Aryans aren't the Masters but they should; I should be the Master of the Masters."</button></p>
<div class="caveat"><strong>Fact-Check — Hitler's Antisemitism Requires Precision</strong>
The essay's gloss here is rhetorically useful but historically imprecise. Nazi ideology did not frame Jews as an admirable "master" class that had unfairly seized control. Instead, Nazis portrayed Jews as a <em>parasitic</em> and <em>corrupting</em> race — dangerous precisely because they supposedly disguised their destructive influence behind the façade of civilisation. This is a meaningful distinction: Hitler's antisemitism was not envy of Jewish achievement but conspiratorial terror of Jewish existence. See the lightbox above for a fuller account.
<a href="https://encyclopedia.ushmm.org/content/en/article/nazi-racism" target="_blank">→ Holocaust Encyclopedia</a></div>
<p>People often look at the Third Reich as the Zenith of the Master Race as a concept in the world, but upon closer inspection, you'll start to see it more as the Swansong. A nasty, evil, awful Swansong.</p>
<p>If World War One was about the Tyranny of the Master, then World War Two was about the Tyranny of Race.</p>
<hr class="rule">
<p>1946 was not a good year... For anyone. It was a shitshow of shitshows. Europe had blown itself into bankruptcy and the US had become the biggest swinging dick in the geopolitical room. And like all swinging dicks, it found that it was feeling a little insecure thanks to the other swinging dick in the room... the USSR. Both of them agreed, however, that the Old World Empires were ending, and so the question was "What will take their place?".
<button class="lb-trigger" onclick="openLightbox('lb-roosevelt')">Stalin favored a territorial empire with a radically different rule-set, while Roosevelt saw the value in an economic empire that could change its rules whenever enough people felt like it.</button></p>
<p><strong>"Any man can be a master and every race is essential to us all."</strong></p>
<p>It took a loooong time to really catch on, and some might say that it still hasn't caught on as much as it should have by now.</p>
<p>That's because the truth is, if you look at the world today there is a race that still has dominion over significant chunks of the world. There is a race still that enjoys a higher standard of living than many others. There is a group of humans, that can decide the fate of all the rest, almost on a whim. There is still, by the thinking of that 12 year old boy in 1912, still a "Master Race". Because they never gave anyone else a shot. At least not in the last few hundred years.</p>
<p>Earlier, I mentioned that the word "Master" is what really lodges in peoples' brains and that it was connected to two common understandings of the word — Excellence and Dominion.</p>
<p>This is how you can convince young white men to carry
<span class="decoder" id="dec-tikitorches"><button class="decoder-trigger" onclick="toggleDecoder('dec-tikitorches',this)">tiki-torches through the streets of a US Town</button>
<span class="decoder-panel"><span class="decode-label">Contemporary reference</span><span class="decode-term">Charlottesville, Virginia — August 2017</span>The "Unite the Right" rally. Individuals from at least 35 US states marched through Charlottesville carrying tiki torches, chanting "Jews will not replace us" and "Blood and Soil" (a Nazi slogan). One counterprotester, Heather Heyer, was killed when a neo-Nazi drove a car into the crowd. It was the largest gathering of white supremacists in a generation.
<a class="decode-link" href="https://www.pbs.org/wgbh/frontline/article/white-supremacist-violence-online-extremism-charlottesville-terrorgram/" target="_blank">→ PBS Frontline</a></span></span>,
<em>and</em> how you can convince young not-white men that flying a plane into a building is a worthy cause.</p>
<div class="caveat"><strong>Caveat — A Contested Moral Equivalence</strong>
The essay draws a parallel between white supremacist violence and jihadist violence, suggesting both stem from the same psychology of "mastery." This is intellectually interesting but has attracted criticism when made carelessly: the two phenomena have distinct historical, political, and theological drivers. The underlying psychological insight — that both exploit a sense of righteous belonging and existential threat — is supported by radicalisation research, but the symmetry should not be overstated.</div>
<div class="ornament">· · ·</div>
<h2>Three — No Masters, No World.</h2>
<hr class="rule">
<p>If you've made it this far, you may think I have a solution to the many and varied problems I have pointed out. I don't really. Just more problems. I know, I'm an asshole.</p>
<p>We have to face facts, we live in a world largely conceived by, and built for, white people. The
<span class="decoder" id="dec-gfs"><button class="decoder-trigger" onclick="toggleDecoder('dec-gfs',this)">Global Financial System</button>
<span class="decoder-panel"><span class="decode-label">Structural context</span><span class="decode-term">The Bretton Woods System &amp; its legacy</span>After WW2, the global financial system was designed at Bretton Woods (1944) primarily by the US and UK. The US dollar became the world reserve currency; the IMF and World Bank were structured to favour "developed" (predominantly Western) economies. Critics argue this created structural dependency relationships that replicated colonial extraction through financial means.
<a class="decode-link" href="https://en.wikipedia.org/wiki/Bretton_Woods_system" target="_blank">→ Wikipedia</a></span></span>
favours "Developed Economies" which are (surprise!) White Economies. This is not news, and it shouldn't be controversial... It is fairly self-evident. It's also symptomatic.</p>
<p>The problem, really, as you may have guessed... Is the existence of Masters.</p>
<p>Excellence is essential and good. A Master Craftsman is a boon to all who have the privilege of his work.</p>
<p>Dominion is obviously where the problem has always been. It also sits at the heart of how the World as we know it is structured.
<span class="decoder" id="dec-sovereignty"><button class="decoder-trigger" onclick="toggleDecoder('dec-sovereignty',this)">Sovereignty requires dominion, legally speaking.</button>
<span class="decoder-panel"><span class="decode-label">Legal concept</span><span class="decode-term">Sovereignty</span>In international law, sovereignty means the exclusive right of a state to govern its territory without external interference. The Westphalian system (from 1648) established this as the basis of international order. The essay correctly identifies that the concept is inherently dominion-based — which is why decolonisation was contested: sovereignty transferred, but the structures built within it often did not.
</span></span></p>
<p>For Humanity to rid itself forever of the blight that is the concept of a "Master Race" and all that it entails, it is not enough to simply embrace racial diversity and champion different tones of skin... We must defy, at every turn, those who seek dominion over others. We must make it unpalatable, unprofitable and unsustainable for the violent to dominate the gentle. Power should be a dirty word.</p>
<p>For Humanity to Survive on Mothership Earth, the Meek Must Be at the Helm.</p>
<p style="text-align:center;font-style:italic;font-size:1.05rem;">or, in other words…</p>
<p style="text-align:center;font-style:italic;"><em>Blessed are the Meek, for they shall inherit the Earth (because they're the only ones who can be trusted with it.)</em></p>
<hr class="rule-double">
<div class="signoff">
Peace, Love and a Little Madness<br>
<strong>Nomad.</strong>
</div>
</div><!-- .paper -->
</div><!-- tab-essay -->
<!-- ===== TAB 2: BEFORE THE ESSAY ===== -->
<div id="tab-before" class="tab-content">
<div class="paper">
<span class="stamp">Historical Analysis</span>
<h1>White Supremacy Before the Essay</h1>
<p class="h1-sub" style="font-style:italic; color:var(--ink-faded); text-align:center; margin-bottom:1rem;">The ideology's origins, development, and institutionalisation — from the Atlantic slave trade to the moment this essay was written in 2018</p>
<hr class="rule-double">
<div class="fact-box">
<p><strong>Key Premise:</strong> The essay correctly identifies that the "Master Race" concept was legible to a 1900 Englishman — but the ideology runs centuries deeper. White supremacy was not a product of European confidence. It was a product of European <em>anxiety about justification</em>: the need to explain why one group of humans could enslave, colonise, and kill another without moral consequence.</p>
</div>
<h2>Origins</h2>
<div class="accordion-item">
<button class="accordion-trigger" onclick="toggleAccordion(this)"><span>Before "race" — how the concept was invented</span><span class="accordion-arrow"></span></button>
<div class="accordion-panel">
<p>The concept of biological "race" as we understand it barely existed before the 1600s. Slavery existed throughout the ancient world, but was not primarily organised by skin colour — it followed the logic of conquest and debt. This changed with the transatlantic slave trade, which created an economic system requiring moral cover. Racial ideology emerged largely <em>to justify</em> the trade after it was already running, not before.</p>
<p>In 1684, French physician François Bernier published one of the first attempts to classify humanity by physical characteristics. By the late 18th century, German anthropologist Johann Friedrich Blumenbach had produced his five-race taxonomy — introducing the term "Caucasian" — ranking white skin the highest. These were not neutral scientific observations; they were ideological frameworks dressed as science.</p>
</div>
</div>
<div class="accordion-item">
<button class="accordion-trigger" onclick="toggleAccordion(this)"><span>Scientific racism — the machinery of justification</span><span class="accordion-arrow"></span></button>
<div class="accordion-panel">
<p>From the 17th to mid-20th century, "scientific racism" was the dominant paradigm shaping international relations and racial policy. Thinkers like Arthur de Gobineau (whose 1853 <em>Essay on the Inequality of the Human Races</em> was enormously influential in Germany), Samuel Morton (skull measurements), and Houston Stewart Chamberlain provided pseudoscientific cover for racial hierarchy.</p>
<p>Social Darwinism — the misapplication of Darwin's evolutionary ideas to human societies — gave this a new vocabulary. Herbert Spencer's "survival of the fittest" was used to argue that white European dominance was natural, inevitable, and even beneficial. Darwin himself was a committed abolitionist, and his work was consistently distorted by those who used it to justify racial hierarchy.</p>
<p>By the time the essay's imaginary 12-year-old was born in 1900, scientific racism was not fringe thought — it was the consensus of most European and American institutions, universities, and governments. The essay is right to treat this as background noise rather than propaganda: it was simply the water the boy swam in.</p>
</div>
</div>
<div class="accordion-item">
<button class="accordion-trigger" onclick="toggleAccordion(this)"><span>Three "overtly racist regimes" of the 20th century</span><span class="accordion-arrow"></span></button>
<div class="accordion-panel">
<p>Historian George M. Fredrickson identifies three regimes that gave white supremacy its most complete political and legal expression: Nazi Germany (19331945), Jim Crow America (1870s1960s), and apartheid South Africa (19481994). All three shared key features: legal prohibitions on interracial marriage, social segregation, exclusion from political participation, and restricted economic opportunity.</p>
<p>The essay's focus on Nazism as the "Zenith" of the Master Race concept is reasonable as a rhetorical choice, but worth complicating: the Jim Crow system operated for nearly a century, and apartheid South Africa survived for nearly five decades after the Holocaust ended. White supremacy as state policy was not uniquely German, nor was its end in 1945.</p>
</div>
</div>
<div class="accordion-item">
<button class="accordion-trigger" onclick="toggleAccordion(this)"><span>Post-WW2: the ideology retreats but does not die</span><span class="accordion-arrow"></span></button>
<div class="accordion-panel">
<p>After 1945, scientific racism became professionally untenable. UNESCO's 1950 and 1951 "Statement on Race" formally rejected the scientific basis for racial hierarchy. But the underlying power structures did not simply dissolve. Decolonisation was often nominal: economic systems, legal frameworks, and physical infrastructures remained shaped by colonial logic. The Bretton Woods financial system (1944), designed largely by the US and UK, entrenched "developed economy" advantages that still operate.</p>
<p>In the United States, the Civil Rights Movement of the 1950s60s dismantled formal legal segregation, but researchers consistently found that white supremacist ideology persisted in subtler forms — in housing policy, policing, education funding, and wealth distribution. Sociologist Howard Winant described the mid-1970s as the end of "monolithic white supremacy" in the US — meaning it became a minority view rather than a majority one, not that it ended.</p>
<p>By the time this essay was written in September 2018, the ideology had been visibly re-energised. The previous year had seen the Charlottesville "Unite the Right" rally — the largest gathering of white supremacists in a generation, ending in murder. The author's tiki-torch reference was current events, not history.</p>
</div>
</div>
<h2>Timeline of Key Moments</h2>
<ul class="timeline">
<li><strong>1600s1700s</strong> Transatlantic slave trade becomes systematised. Racial ideology develops to justify it. Virginia Slave Codes (1705) formalise separation of white colonists from enslaved Africans.</li>
<li><strong>16841795</strong> Early racial taxonomies by Bernier, Blumenbach. Race becomes "biology." Concept of Caucasian supremacy enters European scientific discourse.</li>
<li><strong>1807 / 1833</strong> Britain abolishes the slave trade (1807) and slavery in most territories (1833). Slaveholders compensated; the enslaved are not. Racial ideology persists.</li>
<li><strong>18531855</strong> Gobineau's <em>Essay on the Inequality of the Human Races</em> — enormously influential, especially in Germany. Argues Aryan/Nordic races represent the pinnacle of civilisation.</li>
<li><strong>1880s1900s</strong> "Scramble for Africa" — European powers divide the continent at the Berlin Conference (188485). Social Darwinism provides ideological cover.</li>
<li><strong>1900</strong> The essay's imaginary boy is born into this world.</li>
<li><strong>19141918</strong> World War One. The essay notes correctly that the experience of mass slaughter on an industrial scale shook confidence in empire and masters — but did not end racial ideology.</li>
<li><strong>1920s1930s</strong> Houston Stewart Chamberlain, Madison Grant (<em>The Passing of the Great Race</em>, 1916 — "Hitler's Bible") and others provide the intellectual scaffolding for Nazism.</li>
<li><strong>19331945</strong> Nazi Germany. The Holocaust. Six million Jews murdered; millions more Roma, disabled people, Slavs, and others killed.</li>
<li><strong>1944</strong> Bretton Woods system establishes US-dollar-centred global finance, embedding "developed economy" structural advantages.</li>
<li><strong>1948</strong> Apartheid formally established in South Africa. Also: UN Universal Declaration of Human Rights.</li>
<li><strong>19501951</strong> UNESCO Statements on Race formally reject the scientific basis of racial hierarchy.</li>
<li><strong>1960s</strong> US Civil Rights Act (1964); Voting Rights Act (1965). Legal dismantling of Jim Crow. Formal apartheid survives until 1994.</li>
<li><strong>20162017</strong> Trump's presidential campaign energises white nationalist movements. Charlottesville rally, August 2017. The author is writing in its immediate aftermath.</li>
</ul>
</div>
</div>
<!-- ===== TAB 3: SINCE 2018 ===== -->
<div id="tab-after" class="tab-content">
<div class="paper">
<span class="stamp">Since September 2018</span>
<h1>White Supremacy Since This Essay Was Written</h1>
<p style="font-style:italic; color:var(--ink-faded); text-align:center; margin-bottom:1.2rem;">The author wrote in September 2018. In the years since, the trends they identified have developed — not faded.</p>
<hr class="rule-double">
<div class="fact-box">
<p><strong>Context:</strong> The essay was written one year after Charlottesville (2017) and in the same month as the Pittsburgh Tree of Life synagogue shooting (October 2018). The author's reference to tiki-torch marchers was not a historical metaphor — it was a description of last year's news.</p>
</div>
<h2>Key Developments</h2>
<div class="accordion-item">
<button class="accordion-trigger" onclick="toggleAccordion(this)"><span>20182019 — The bloodiest years for domestic extremism since the 1990s</span><span class="accordion-arrow"></span></button>
<div class="accordion-panel">
<p>The month after this essay was published, a white supremacist killed 11 Jewish worshippers at the Tree of Life synagogue in Pittsburgh — the deadliest antisemitic attack in American history. The killer believed Jews were orchestrating white replacement through immigration. His manifesto cited online communities that had been radicalising young white men for years.</p>
<p>2018 saw 50 deaths from domestic extremists in the US, with the majority linked specifically to white supremacy — making it the fourth-deadliest year for domestic extremist violence since 1970. The Anti-Defamation League recorded a 182% increase in white supremacist propaganda distribution compared to 2017.</p>
<p>In March 2019, a white supremacist killed 51 Muslim worshippers at two mosques in Christchurch, New Zealand — livestreaming the attack. He had published a manifesto citing Charlottesville and the Pittsburgh killer as inspiration, and described Trump as "a symbol of renewed white identity." The attack inspired copycat violence in El Paso, Texas (2019, 23 killed) and elsewhere.</p>
</div>
</div>
<div class="accordion-item">
<button class="accordion-trigger" onclick="toggleAccordion(this)"><span>The US government names white supremacy the primary domestic threat</span><span class="accordion-arrow"></span></button>
<div class="accordion-panel">
<p>In October 2020, the US Department of Homeland Security issued a formal threat assessment declaring white supremacist extremists the "most persistent and lethal threat in the Homeland" — noting that 2019 had been the most lethal year for domestic violent extremism since the Oklahoma City bombing in 1995. This was a significant institutional acknowledgement that the threat the author describes had not faded.</p>
<p>The January 6, 2021 assault on the US Capitol — in which a mob attempted to overturn the results of a democratic election — included multiple individuals with documented ties to white supremacist and far-right extremist groups. Researchers noted that the event marked a transition from the white power movement's historically defensive posture to one of attempted political capture.</p>
</div>
</div>
<div class="accordion-item">
<button class="accordion-trigger" onclick="toggleAccordion(this)"><span>Global resurgence — from Europe to Australia</span><span class="accordion-arrow"></span></button>
<div class="accordion-panel">
<p>The essay's claim that white dominance persists globally has found continued empirical support — but the political expression of that dominance has also become more organised and internationally connected. Far-right parties with explicit or implicit white nationalist appeals made electoral gains across Europe in the years following 2018: in Hungary, Italy, France, Germany, the Netherlands, and Sweden.</p>
<p>Europol found that right-wing extremist arrests on the continent nearly doubled between 2016 and 2017, and the trend continued. Researchers at the Boston Review observed that white nationalism had become "transnational" — with figures, manifestos, and memes crossing borders in ways that made individual national movements part of a global network rather than isolated phenomena.</p>
</div>
</div>
<div class="accordion-item">
<button class="accordion-trigger" onclick="toggleAccordion(this)"><span>Online radicalisation — the essay's "subtle and insidious" weaving</span><span class="accordion-arrow"></span></button>
<div class="accordion-panel">
<p>The author's claim in point two — that modern white supremacy is woven into the fabric of the world in ways "most people will never notice or question" — found new resonance in the years after the essay, as research into online radicalisation matured. Between 2018 and 2019, there was a 120% increase in the distribution of white supremacist propaganda across the United States, much of it through platforms like 4chan, Telegram, and Discord.</p>
<p>The Southern Poverty Law Center documented a 50% growth in active white nationalist groups in the US between 2022 and 2023 — reaching a historic high. The pattern the essay identifies — where mainstream-seeming grievances (immigration, cultural change, economic displacement) are used to introduce more radical racial ideology — is precisely what researchers call the "gateway" effect of the online far right.</p>
</div>
</div>
<div class="accordion-item">
<button class="accordion-trigger" onclick="toggleAccordion(this)"><span>Where the essay's argument holds up — and where it needs updating</span><span class="accordion-arrow"></span></button>
<div class="accordion-panel">
<p>The essay's core thesis — that "Master Race" ideology was a logical conclusion from within a particular historical context, that it didn't end with WW2, and that dismantling it requires structural change, not just changed attitudes — has been broadly validated by subsequent research and events.</p>
<p>The essay is somewhat more optimistic about the post-WW2 liberal international order than events warranted. The author implies that the US-led system represented a genuine turn toward "any man can be a master" universalism. Critics across the political spectrum have argued this was always a selective universalism: one that maintained racial hierarchies through economic rather than military means, that supported colonialism where convenient, and that was vulnerable to being captured by the very forces it claimed to oppose.</p>
<p>Written in 2018 with the tiki-torch marchers as the emblematic image of resurgent white supremacy, the essay could not have anticipated Christchurch, January 6, or the SPLC's documented historic-high growth in white nationalist groups through 2023. The author's conclusion — "the Meek must be at the Helm" — reads as both more urgent and more distant than it did when written.</p>
</div>
</div>
<h2>Since 2018: A Brief Timeline</h2>
<ul class="timeline">
<li><strong>Oct 2018</strong> Pittsburgh Tree of Life synagogue shooting. 11 killed. Deadliest antisemitic attack in US history. Killer motivated by white replacement conspiracy.</li>
<li><strong>Mar 2019</strong> Christchurch mosque shootings, New Zealand. 51 killed. Shooter cited Charlottesville; praised Trump. Livestreamed on Facebook. Inspired international copycat attacks.</li>
<li><strong>Aug 2019</strong> El Paso Walmart shooting. 23 killed. Shooter's manifesto cited Christchurch and "Hispanic invasion."</li>
<li><strong>Oct 2020</strong> US Department of Homeland Security formally names white supremacist extremists the "most persistent and lethal" domestic threat. 2019 declared most lethal year for domestic violent extremism since Oklahoma City bombing (1995).</li>
<li><strong>Jan 2021</strong> US Capitol assault. Multiple white supremacist and far-right group members documented as participants in the attempt to overturn the 2020 election result.</li>
<li><strong>20222023</strong> SPLC documents historic high in active white nationalist groups in the US — 165 groups, a 50% increase from 2022. White power movement holds 191 demonstrations in 2022 alone.</li>
<li><strong>20222024</strong> Far-right parties make electoral gains across Europe: Italy (Brothers of Italy), Netherlands (Party for Freedom), France (National Rally). "White nationalist" rhetoric increasingly adopted by mainstream conservative parties.</li>
<li><strong>2025</strong> White supremacist extremism remains the primary domestic terrorist threat identified by US law enforcement.</li>
</ul>
</div>
</div>
<!-- ===== TAB 4: FURTHER READING ===== -->
<div id="tab-reading" class="tab-content">
<div class="paper">
<span class="stamp">A Scholarly Commonplace Book</span>
<h1>Further Reading</h1>
<p class="byline">Selected resources for those who wish to go deeper than a 2018 Steemit essay.</p>
<hr class="rule-double">
<div class="reading-section">
<h3>Origins of Racial Ideology</h3>
<a class="reading-card" href="https://thereader.mitpress.mit.edu/a-prehistory-of-scientific-racism/" target="_blank">
<strong>A Prehistory of Scientific Racism — MIT Press Reader</strong>
Clear account of how racial classification moved from religious explanation to pseudoscience between 16001900. Essential context for the essay's "library" section.
<span>thereader.mitpress.mit.edu</span>
</a>
<a class="reading-card" href="https://aeon.co/essays/modern-racism-rests-on-scientific-theories-from-the-19th-century" target="_blank">
<strong>Modern Racism Rests on 19th-Century Science — Aeon</strong>
Traces how polygenism and evolutionary misreadings gave white supremacy its scientific scaffolding — and how that scaffolding persists.
<span>aeon.co</span>
</a>
<a class="reading-card" href="https://en.wikipedia.org/wiki/Scientific_racism" target="_blank">
<strong>Scientific Racism — Wikipedia</strong>
Comprehensive overview from the Enlightenment to the present. Covers Blumenbach, Gobineau, Social Darwinism, the Nazi use of eugenics, and the UNESCO rejection of race as a scientific category.
<span>wikipedia.org</span>
</a>
</div>
<div class="reading-section">
<h3>Nazi Ideology Specifically</h3>
<a class="reading-card" href="https://encyclopedia.ushmm.org/content/en/article/nazi-racism" target="_blank">
<strong>Nazi Racism — United States Holocaust Memorial Museum</strong>
Authoritative account of the specific ideology Hitler developed, including the precise nature of Nazi antisemitism and why it differed from simple racial hierarchy.
<span>encyclopedia.ushmm.org</span>
</a>
<a class="reading-card" href="https://www.annefrank.org/en/anne-frank/go-in-depth/why-did-hitler-hate-jews/" target="_blank">
<strong>Why Did Hitler Hate the Jews? — Anne Frank House</strong>
Careful analysis of the specific origins of Hitler's antisemitism. Important for correcting the essay's oversimplification of Nazi ideology.
<span>annefrank.org</span>
</a>
</div>
<div class="reading-section">
<h3>Contemporary Resurgence</h3>
<a class="reading-card" href="https://www.splcenter.org/resources/reports/white-power-movement/" target="_blank">
<strong>The White Power Movement — Southern Poverty Law Center</strong>
Annual tracking report. Documents the historic growth in white nationalist groups 20222023 and the shift in tactics.
<span>splcenter.org</span>
</a>
<a class="reading-card" href="https://www.bostonreview.net/articles/daniel-geary-camilla-schofield-jennifer-sutton-toward-global-history-white-supremacy/" target="_blank">
<strong>Toward a Global History of White Supremacy — Boston Review</strong>
Argues for understanding white nationalism as transnational rather than country-specific. Traces connections between US, UK, and Australian white nationalist movements.
<span>bostonreview.net</span>
</a>
<a class="reading-card" href="https://www.pbs.org/wgbh/frontline/article/white-supremacist-violence-online-extremism-charlottesville-terrorgram/" target="_blank">
<strong>Charlottesville to Terrorgram — PBS Frontline</strong>
Longitudinal documentary journalism tracing the evolution of the white supremacist movement from the 2017 rally to present online networks.
<span>pbs.org</span>
</a>
</div>
<div class="reading-section">
<h3>Structural Racism &amp; Global Systems</h3>
<a class="reading-card" href="https://blogs.worldbank.org/en/nasikiliza/an-incomplete-transition-overcoming-the-legacy-of-exclusion-in-south-africa" target="_blank">
<strong>An Incomplete Transition — World Bank Blog</strong>
On why structural racial inequality survives formal legal equality. Uses South Africa as a case study but the argument is global.
<span>worldbank.org</span>
</a>
<a class="reading-card" href="https://en.wikipedia.org/wiki/Bretton_Woods_system" target="_blank">
<strong>Bretton Woods System — Wikipedia</strong>
Background on the post-WW2 financial architecture the essay refers to. Useful for understanding how "economic empire" replaced territorial empire.
<span>wikipedia.org</span>
</a>
</div>
</div>
</div>
</div><!-- page-wrap -->
<!-- ===== LIGHTBOXES ===== -->
<div class="lightbox-overlay" id="lb-hitler" onclick="closeLightboxOnOverlay(event,'lb-hitler')">
<div class="lightbox-box">
<div class="lightbox-header">
<span class="lightbox-title">Hitler's Antisemitism — A Necessary Precision</span>
<button class="lightbox-close" onclick="closeLightbox('lb-hitler')"></button>
</div>
<div class="lightbox-body">
<h3>The Essay's Formulation</h3>
<p>The author summarises Hitler's ideology as: "Jews are the Masters but they shouldn't be; Aryans aren't the Masters but they should be." This is rhetorically neat but historically imprecise in ways that matter.</p>
<h3>What Nazi Ideology Actually Said</h3>
<p>Nazi antisemitism did not portray Jews as a legitimate "master class" that had unfairly seized control of something Aryans deserved. That would imply a kind of grudging respect for Jewish achievement. Instead, Hitler's ideology portrayed Jews as a <em>parasitic race</em> — one that disguised its destructive, corrupting influence behind the appearance of cultural and economic participation. Jews were not enviable masters; they were an existential biological threat.</p>
<p>This distinction matters because it explains the character of the Holocaust. Envy of Jewish achievement might have produced discrimination or expulsion. The belief in Jewish biological contamination produced genocide.</p>
<h3>Where the Essay Gets It Right</h3>
<p>The essay is accurate that Hitler's movement drew heavily on "stab-in-the-back" mythology — the false claim that Germany had been betrayed by Jews and socialists (the "November Criminals") rather than defeated militarily. The fertile ground Hitler found in the 1930s was indeed produced by the combination of Weimar-era humiliation, economic collapse, and a pre-existing culture of European antisemitism stretching back centuries. The author's instinct that Nazi ideology was <em>created by context</em>, not invented from nothing, is correct.</p>
<h3>Further Reading</h3>
<p><a href="https://encyclopedia.ushmm.org/content/en/article/nazi-racism" target="_blank">Holocaust Encyclopedia: Nazi Racism</a><br>
<a href="https://www.annefrank.org/en/anne-frank/go-in-depth/why-did-hitler-hate-jews/" target="_blank">Anne Frank House: Why Did Hitler Hate the Jews?</a></p>
</div>
</div>
</div>
<div class="lightbox-overlay" id="lb-roosevelt" onclick="closeLightboxOnOverlay(event,'lb-roosevelt')">
<div class="lightbox-box">
<div class="lightbox-header">
<span class="lightbox-title">Roosevelt, Stalin, and 1946 — A Factual Note</span>
<button class="lightbox-close" onclick="closeLightbox('lb-roosevelt')"></button>
</div>
<div class="lightbox-body">
<h3>The Factual Issue</h3>
<p>The author writes that "Stalin favored a territorial empire... while Roosevelt saw the value in an economic empire." This is a fair characterisation of the ideological split — but Franklin D. Roosevelt died on <strong>12 April 1945</strong>, before the end of the war in Europe. He did not participate in the 1946 world order the author describes.</p>
<p>The postwar settlement — including the Bretton Woods financial system, the establishment of the UN, the Marshall Plan, and the early Cold War framing — was shaped primarily by <strong>Harry S. Truman</strong>, Roosevelt's vice president and successor. The Yalta Conference (February 1945), attended by Roosevelt, Churchill, and Stalin, did establish some of the framework, but Roosevelt died before it could be implemented.</p>
<h3>The Larger Point Stands</h3>
<p>The essay's underlying argument — that the post-WW2 settlement replaced territorial empire with an economic system that still favoured "white economies" while nominally espousing universalism — is a mainstream position in post-colonial studies, shared by scholars across the political spectrum. The error is one of attribution, not argument. The vision the author ascribes to Roosevelt was pursued by Truman (and, in a different form, by the architects of the Marshall Plan and Bretton Woods).</p>
<h3>Why It Matters</h3>
<p>The distinction is worth noting because the ideological character of the postwar settlement was genuinely contested. Roosevelt had shown some appetite for genuine anti-colonialism, pressuring Churchill on India. Truman's administration was more willing to accommodate colonial powers where anti-communism required it. The "economic empire vs territorial empire" framing obscures this real tension within the Western bloc.</p>
</div>
</div>
</div>
<script>
function showTab(id, btn) {
document.querySelectorAll('.tab-content').forEach(t => t.classList.remove('active'));
document.querySelectorAll('nav button').forEach(b => b.classList.remove('active'));
document.getElementById('tab-' + id).classList.add('active');
btn.classList.add('active');
window.scrollTo(0, 0);
}
function toggleDecoder(id, btn) {
const wrapper = document.getElementById(id);
const panel = wrapper.querySelector('.decoder-panel');
const isOpen = panel.classList.contains('open');
document.querySelectorAll('.decoder-panel.open').forEach(p => p.classList.remove('open'));
document.querySelectorAll('.decoder-trigger.open').forEach(b => b.classList.remove('open'));
if (!isOpen) {
panel.classList.add('open'); btn.classList.add('open');
const rect = panel.getBoundingClientRect();
if (rect.right > window.innerWidth - 16) panel.classList.add('flip-left');
else panel.classList.remove('flip-left');
}
}
document.addEventListener('click', function(e) {
if (!e.target.closest('.decoder')) {
document.querySelectorAll('.decoder-panel.open').forEach(p => p.classList.remove('open'));
document.querySelectorAll('.decoder-trigger.open').forEach(b => b.classList.remove('open'));
}
});
function toggleAccordion(btn) {
const panel = btn.nextElementSibling;
const isOpen = btn.classList.contains('open');
document.querySelectorAll('.accordion-trigger.open').forEach(b => {
b.classList.remove('open'); b.nextElementSibling.classList.remove('open');
});
if (!isOpen) { btn.classList.add('open'); panel.classList.add('open'); }
}
function openLightbox(id) { document.getElementById(id).classList.add('open'); document.body.style.overflow='hidden'; }
function closeLightbox(id) { document.getElementById(id).classList.remove('open'); document.body.style.overflow=''; }
function closeLightboxOnOverlay(e, id) { if (e.target === document.getElementById(id)) closeLightbox(id); }
document.addEventListener('keydown', function(e) {
if (e.key === 'Escape') {
document.querySelectorAll('.lightbox-overlay.open').forEach(el => { el.classList.remove('open'); document.body.style.overflow=''; });
}
});
</script>
</body>
</html>