Skip to content

Instantly share code, notes, and snippets.

@notactuallytreyanastasio
Created May 27, 2025 19:55
Show Gist options
  • Select an option

  • Save notactuallytreyanastasio/f907af038e5bf850bc77431513091069 to your computer and use it in GitHub Desktop.

Select an option

Save notactuallytreyanastasio/f907af038e5bf850bc77431513091069 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nathan Fielder: A History</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background: white;
color: #000;
min-height: 100vh;
padding: 20px;
overflow-x: hidden;
}
.container {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 40px;
}
.header {
text-align: center;
margin-bottom: 50px;
}
.main-title {
font-size: 2.5rem;
font-weight: normal;
color: #000;
margin-bottom: 40px;
}
.bio-section {
background: white;
padding: 0;
}
.timeline {
position: relative;
padding-left: 30px;
}
.timeline::before {
content: '';
position: absolute;
left: 15px;
top: 0;
bottom: 0;
width: 1px;
background: #ccc;
}
.timeline-item {
position: relative;
margin-bottom: 30px;
padding: 15px 0;
border-left: 2px solid #000;
padding-left: 20px;
}
.timeline-item::before {
content: '';
position: absolute;
left: -16px;
top: 20px;
width: 8px;
height: 8px;
background: #000;
border-radius: 50%;
}
.year {
font-size: 1rem;
font-weight: bold;
color: #000;
margin-bottom: 5px;
}
.event-title {
font-size: 1.1rem;
font-weight: bold;
color: #000;
margin-bottom: 8px;
}
.event-description {
color: #333;
line-height: 1.5;
font-size: 0.95rem;
}
.section-title {
font-size: 1.4rem;
font-weight: bold;
color: #000;
margin-bottom: 20px;
cursor: pointer;
padding: 10px 0;
border-bottom: 1px solid #ccc;
position: relative;
}
.section-title::after {
content: '▼';
position: absolute;
right: 0;
transition: transform 0.3s ease;
}
.section-title::before {
content: '';
position: absolute;
right: 35px;
font-size: 0.9rem;
color: #666;
transition: opacity 0.3s ease;
}
.section-title.collapsed::after {
transform: rotate(-90deg);
}
.section-title.collapsed::before {
content: '(expand)';
}
.highlight {
font-weight: bold;
color: #000;
}
.collapsible-content {
max-height: 2000px;
overflow: hidden;
transition: max-height 0.3s ease;
}
.collapsible-content.collapsed {
max-height: 0;
}
.show-premise {
margin-bottom: 30px;
}
.premise-grid {
display: grid;
grid-template-columns: 1fr auto 1fr;
gap: 20px;
align-items: center;
margin-bottom: 30px;
}
.premise-box {
border: 1px solid #ccc;
padding: 20px;
background: #f9f9f9;
}
.premise-box h3 {
font-size: 1.1rem;
margin-bottom: 15px;
font-weight: bold;
}
.tv-format {
font-size: 1.1rem;
font-weight: bold;
margin-bottom: 10px;
}
.description {
margin-bottom: 10px;
font-style: italic;
}
.example {
font-size: 0.9rem;
color: #555;
}
.vs-divider {
font-size: 1.2rem;
font-weight: bold;
text-align: center;
}
.case-study {
margin-bottom: 30px;
padding: 20px;
border: 1px solid #ddd;
background: #fafafa;
}
.case-study h4 {
font-size: 1.2rem;
margin-bottom: 15px;
font-weight: bold;
}
.case-steps {
display: flex;
flex-direction: column;
gap: 15px;
}
.step {
display: flex;
align-items: flex-start;
gap: 15px;
}
.step-number {
background: #000;
color: white;
width: 25px;
height: 25px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
font-weight: bold;
flex-shrink: 0;
}
.step-content {
flex: 1;
line-height: 1.4;
}
.analysis-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin-bottom: 30px;
}
.comedy-comparison, .reality-blur {
padding: 20px;
border: 1px solid #ddd;
background: #f9f9f9;
}
.comedy-comparison h4, .reality-blur h4 {
font-size: 1.1rem;
margin-bottom: 15px;
font-weight: bold;
}
.comparison-item, .blur-example {
margin-bottom: 12px;
line-height: 1.4;
}
.amnf-cnf-emergence {
padding: 20px;
border: 2px solid #000;
background: #f5f5f5;
}
.amnf-cnf-emergence h4 {
font-size: 1.2rem;
margin-bottom: 20px;
font-weight: bold;
text-align: center;
}
.character-evolution {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}
.evolution-stage {
width: 100%;
padding: 15px;
border: 1px solid #999;
background: white;
}
.evolution-stage strong {
display: block;
margin-bottom: 10px;
font-size: 1.05rem;
}
.evolution-stage ul {
margin-left: 20px;
line-height: 1.4;
}
.evolution-stage li {
margin-bottom: 5px;
}
.evolution-arrow {
font-size: 1.5rem;
font-weight: bold;
}
@media (max-width: 768px) {
.premise-grid {
grid-template-columns: 1fr;
gap: 15px;
}
.vs-divider {
order: 2;
}
.analysis-grid {
grid-template-columns: 1fr;
}
}
.central-mystery {
margin-bottom: 30px;
padding: 20px;
border: 2px solid #000;
background: #f9f9f9;
}
.mystery-statement h3 {
font-size: 1.2rem;
margin-bottom: 15px;
font-weight: bold;
}
.mystery-statement p {
font-size: 1.05rem;
line-height: 1.5;
font-style: italic;
}
.evidence-section {
margin-bottom: 30px;
}
.evidence-section h4 {
font-size: 1.2rem;
margin-bottom: 20px;
font-weight: bold;
}
.evidence-grid {
display: grid;
gap: 20px;
}
.evidence-item {
margin-bottom: 15px;
}
.evidence-item strong {
display: block;
margin-bottom: 5px;
font-size: 1.05rem;
}
.evidence-detail {
color: #333;
line-height: 1.4;
margin-bottom: 10px;
}
.philosophical-problem {
margin-bottom: 30px;
}
.philosophical-problem h4 {
font-size: 1.2rem;
margin-bottom: 20px;
font-weight: bold;
}
.philosophy-grid {
display: grid;
gap: 20px;
margin-bottom: 20px;
}
.problem-statement, .identity-question {
margin-bottom: 15px;
}
.problem-statement strong, .identity-question strong {
display: block;
margin-bottom: 5px;
font-size: 1.05rem;
}
.problem-detail, .identity-detail {
line-height: 1.4;
margin-bottom: 10px;
}
.existential-note {
padding: 15px;
background: #e9e9e9;
border-left: 4px solid #666;
font-size: 0.95rem;
line-height: 1.4;
}
.timeline-gap {
margin-bottom: 30px;
}
.timeline-gap h4 {
font-size: 1.2rem;
margin-bottom: 20px;
font-weight: bold;
}
.gap-explanation {
margin-bottom: 15px;
}
.gap-explanation strong {
display: block;
margin-bottom: 5px;
font-size: 1.05rem;
}
.gap-details {
line-height: 1.4;
color: #333;
}
.premise-intro {
margin-bottom: 25px;
}
.premise-intro h4 {
font-size: 1.2rem;
margin-bottom: 10px;
font-weight: bold;
}
.premise-intro p {
font-size: 1.05rem;
line-height: 1.4;
color: #333;
}
.trivia-case {
margin-bottom: 30px;
}
.trivia-case h4 {
font-size: 1.2rem;
margin-bottom: 15px;
font-weight: bold;
}
.problem-setup, .solution-layers {
margin-bottom: 20px;
}
.problem-setup strong, .solution-layers strong {
display: block;
margin-bottom: 8px;
font-size: 1.05rem;
}
.layer-breakdown {
margin-left: 15px;
}
.layer {
display: flex;
align-items: flex-start;
gap: 10px;
margin-bottom: 12px;
line-height: 1.4;
}
.layer-number {
font-weight: bold;
min-width: 60px;
color: #333;
}
.meta-moment {
background: #f0f0f0;
padding: 15px;
border-left: 3px solid #666;
margin-bottom: 20px;
}
.meta-moment strong {
display: block;
margin-bottom: 8px;
font-size: 1.05rem;
}
.reality-note {
font-style: italic;
line-height: 1.4;
}
.shift-analysis, .evolution-note {
margin-bottom: 25px;
}
.shift-analysis h4, .evolution-note h4 {
font-size: 1.2rem;
margin-bottom: 15px;
font-weight: bold;
}
.shift-description, .comparison-note {
margin-bottom: 15px;
line-height: 1.4;
}
.philosophical-emergence strong {
display: block;
margin-bottom: 8px;
font-size: 1.05rem;
}
.philosophical-emergence ul {
margin-left: 20px;
line-height: 1.4;
}
.philosophical-emergence li {
margin-bottom: 5px;
}
.covid-disruption, .family-experiment, .character-breakdown, .identity-crisis, .transition-note {
margin-bottom: 25px;
}
.covid-disruption h4, .family-experiment h4, .character-breakdown h4, .identity-crisis h4, .transition-note h4 {
font-size: 1.2rem;
margin-bottom: 10px;
font-weight: bold;
}
.disruption-description, .experiment-description, .crisis-description, .transition-description {
line-height: 1.4;
margin-bottom: 15px;
}
.breakdown-analysis {
margin-bottom: 15px;
}
.breakdown-point {
margin-bottom: 15px;
line-height: 1.4;
}
.breakdown-point strong {
display: block;
margin-bottom: 5px;
font-size: 1.05rem;
}
.fundamental-question {
background: #f5f5f5;
padding: 15px;
border-left: 3px solid #333;
font-size: 1.05rem;
line-height: 1.4;
}
.aside-section {
border: 2px solid #666;
background: #f9f9f9;
padding: 20px;
margin: 30px 0;
position: relative;
}
.aside-label {
position: absolute;
top: -10px;
left: 15px;
background: white;
padding: 2px 8px;
font-size: 0.9rem;
font-weight: bold;
color: #666;
}
.format-shift, .show-premise, .thematic-scope, .three-observations, .evolution-significance {
margin-bottom: 25px;
}
.format-shift h4, .show-premise h4, .thematic-scope h4, .three-observations h4, .evolution-significance h4 {
font-size: 1.2rem;
margin-bottom: 10px;
font-weight: bold;
}
.format-description, .significance-note {
line-height: 1.4;
}
.premise-layers {
margin-bottom: 15px;
}
.premise-layer {
margin-bottom: 15px;
line-height: 1.4;
}
.premise-layer strong {
display: block;
margin-bottom: 5px;
font-size: 1.05rem;
}
.wikipedia-note {
margin-bottom: 8px;
font-size: 0.95rem;
}
.themes-list {
font-style: italic;
line-height: 1.4;
padding: 10px;
background: #f0f0f0;
border-left: 3px solid #999;
}
.observation {
margin-bottom: 15px;
}
.observation strong {
display: block;
margin-bottom: 5px;
font-size: 1.05rem;
}
.observation-detail {
line-height: 1.4;
margin-left: 15px;
}
.evolution-complete, .advocacy-premise, .authenticity-paradox, .construction-reveal, .deeper-themes, .final-assessment {
margin-bottom: 25px;
}
.evolution-complete h4, .advocacy-premise h4, .authenticity-paradox h4, .construction-reveal h4, .deeper-themes h4, .final-assessment h4 {
font-size: 1.2rem;
margin-bottom: 10px;
font-weight: bold;
}
.evolution-description, .paradox-description, .reveal-description, .themes-description, .assessment-description {
line-height: 1.4;
margin-bottom: 15px;
}
.premise-setup {
margin-bottom: 15px;
}
.setup-point {
margin-bottom: 15px;
line-height: 1.4;
}
.setup-point strong {
display: block;
margin-bottom: 5px;
font-size: 1.05rem;
}
.central-question-final {
background: #f0f0f0;
padding: 15px;
border-left: 3px solid #333;
font-size: 1.05rem;
line-height: 1.4;
margin-top: 15px;
}
.final-question {
background: #e9e9e9;
padding: 20px;
border: 2px solid #333;
margin-top: 20px;
text-align: center;
}
.final-question strong {
font-size: 1.1rem;
line-height: 1.4;
}
.deeper-commentary, .fundamental-difficulty, .existential-question, .shared-confusion {
margin-bottom: 25px;
}
.deeper-commentary h4, .fundamental-difficulty h4, .existential-question h4, .shared-confusion h4 {
font-size: 1.2rem;
margin-bottom: 10px;
font-weight: bold;
}
.commentary-description, .difficulty-description, .confusion-reflection {
line-height: 1.4;
margin-bottom: 15px;
}
.question-setup {
line-height: 1.4;
margin-bottom: 15px;
}
.central-fear {
background: #f5f5f5;
padding: 15px;
border-left: 4px solid #333;
margin-bottom: 15px;
}
.central-fear strong {
font-size: 1.05rem;
line-height: 1.4;
}
.universal-question {
line-height: 1.4;
font-style: italic;
color: #333;
}
.final-resonance {
background: #e9e9e9;
padding: 15px;
text-align: center;
border: 1px solid #ccc;
margin-top: 15px;
font-size: 1.05rem;
line-height: 1.4;
}
.hbo-connection, .cnf-amnf-advocacy, .network-significance {
margin-bottom: 15px;
}
.connection-description, .advocacy-description, .significance-description {
line-height: 1.4;
}
.advocacy-description a {
color: #333;
text-decoration: underline;
}
.advocacy-description a:hover {
color: #000;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1 class="main-title">Nathan Fielder</h1>
</div>
<div class="bio-section">
<h2 class="section-title" onclick="toggleCollapse(this)">Nathan's Origin: The Facts I Can Gather</h2>
<div class="collapsible-content">
<div class="timeline">
<div class="timeline-item">
<div class="year">1983</div>
<div class="event-title">Birth & Family</div>
<div class="event-description">
Born to <span class="highlight">Eric and Deb Fielder</span>, both social workers, in a Jewish family in Vancouver. Grew up in a middle-class household with younger sister Becca. From an early age, exhibited a love for elaborate pranks and constructed elaborate stories to cope with feelings of inadequacy and shyness.
</div>
</div>
<div class="timeline-item">
<div class="year">1996-2001</div>
<div class="event-title">High School & Early Performance</div>
<div class="event-description">
Attended <span class="highlight">Point Grey Secondary School</span> where he joined the improv comedy group alongside future star <span class="highlight">Seth Rogen</span>. Also developed a keen interest in magic, beginning work as a magician at age 13 - a hobby that would remain lifelong (still a member of The Magic Castle in Los Angeles).
</div>
</div>
<div class="timeline-item">
<div class="year">2001-2005</div>
<div class="event-title">University Years</div>
<div class="event-description">
Pursued a <span class="highlight">Bachelor of Commerce degree</span> at the University of Victoria, graduating in 2005. This business education would later become the foundation for his satirical approach to corporate practices and consumer culture in his comedy work.
</div>
</div>
<div class="timeline-item">
<div class="year">2005-2006</div>
<div class="event-title">The Pivot</div>
<div class="event-description">
After graduation, briefly worked as a <span class="highlight">broker</span> before deciding to follow his passion for comedy. Relocated to Toronto and enrolled in a comedy course at <span class="highlight">Humber College</span>. In 2006, received the prestigious <span class="highlight">Tim Sims Encouragement Fund Award</span> for Outstanding Canadian Comedy Newcomer.
</div>
</div>
<div class="timeline-item">
<div class="year">2007-2008</div>
<div class="event-title">First Professional Work</div>
<div class="event-description">
Landed his first major writing job on <span class="highlight">Canadian Idol</span> (2007), where his work caught the attention of CBC executive producer Michael Donovan. This led to his breakthrough role as a field correspondent on <span class="highlight">"This Hour Has 22 Minutes"</span> (2008-2009), creating the popular recurring segment <span class="highlight">"Nathan on Your Side"</span> - the precursor to his future success.
</div>
</div>
</div>
</div>
</div>
<div class="bio-section">
<h2 class="section-title" onclick="toggleCollapse(this)">Nathan For You: The Establishment of AMNF vs CNF</h2>
<div class="collapsible-content">
<div class="show-premise">
<div class="premise-grid">
<div class="premise-box">
<h3>What It Says It Is</h3>
<div class="premise-content">
<div class="tv-format">📺 Business Help Show</div>
<div class="description">Expert arrives to help struggling small business</div>
<div class="example">Standard format: consultant analyzes problem → provides solution → business improves</div>
</div>
</div>
<div class="vs-divider">vs.</div>
<div class="premise-box">
<h3>What It Actually Is</h3>
<div class="premise-content">
<div class="tv-format">🎭 Comedy Central Show</div>
<div class="description">Comedian with business degree suggests absurd solutions</div>
<div class="example">Nathan's format: real problem → ridiculous solution → commit completely</div>
</div>
</div>
</div>
</div>
<div class="case-study">
<h4>Case Study: The Poop Flavored Yogurt</h4>
<div class="case-steps">
<div class="step">
<span class="step-number">1</span>
<div class="step-content">
<strong>The Problem:</strong> Froyo shop needs more customers
</div>
</div>
<div class="step">
<span class="step-number">2</span>
<div class="step-content">
<strong>Nathan's Solution:</strong> Offer poop-flavored frozen yogurt
</div>
</div>
<div class="step">
<span class="step-number">3</span>
<div class="step-content">
<strong>The Commitment:</strong> Hires lab to formulate safe poop-tasting formula
</div>
</div>
<div class="step">
<span class="step-number">4</span>
<div class="step-content">
<strong>The Result:</strong> Customers order it, taste it: "This tastes like shit."
<br><em>Response: "Well, you did order poop ice cream."</em>
</div>
</div>
</div>
</div>
<div class="analysis-grid">
<div class="comedy-comparison">
<h4>Not Typical Cringe Comedy</h4>
<div class="comparison-item">
<strong>Typical Cringe:</strong> "I am doing something uncomfortable → you feel uncomfortable → ha ha"
</div>
<div class="comparison-item">
<strong>Nathan's Method:</strong> Complete deadpan commitment → pulls strange interactions from real people → genuine confusion/absurdity
</div>
</div>
<div class="reality-blur">
<h4>When Comedy Becomes Reality</h4>
<div class="blur-example">
<strong>The Problem:</strong> Several Nathan for You segments went legitimately viral during filming
</div>
<div class="blur-example">
<strong>The Effect:</strong> Real businesses got real attention, blurring the line between "comedy show" and actual business consulting
</div>
<div class="blur-example">
<strong>The Question:</strong> Is Nathan playing a character, or is this just how Nathan is?
</div>
</div>
</div>
<div class="amnf-cnf-emergence">
<h4>The Birth of CNF from AMNF</h4>
<div class="character-evolution">
<div class="evolution-stage">
<strong>AMNF (Actual Man Nathan Fielder):</strong>
<ul>
<li>Genuine business education from University of Victoria</li>
<li>Real social awkwardness</li>
<li>Authentic dedication to completing tasks</li>
<li>Sincere belief in his problem-solving abilities</li>
</ul>
</div>
<div class="evolution-arrow">↓</div>
<div class="evolution-stage">
<strong>Early CNF (Character Nathan Fielder):</strong>
<ul>
<li>AMNF traits amplified for television</li>
<li>Awkwardness becomes performance tool</li>
<li>Business knowledge weaponized for comedy</li>
<li>Commitment becomes extreme dedication to absurdity</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="bio-section">
<h2 class="section-title" onclick="toggleCollapse(this)">The Central Question: Where Does Nathan End and "Nathan" Begin?</h2>
<div class="collapsible-content">
<div class="central-mystery">
<div class="mystery-statement">
<h3>The Fundamental Problem</h3>
<p>Is Nathan playing a character? Or is that just him? When he does press, he never breaks character. But what if there's no character to break?</p>
</div>
</div>
<div class="evidence-section">
<h4>The Investigation</h4>
<div class="evidence-grid">
<div class="evidence-item">
<strong>Historical Consistency:</strong>
<div class="evidence-detail">People have dug into his past. Pictures of him as an awkward teen look exactly like the way he's awkward now. Same mannerisms, same social positioning, same deadpan delivery.</div>
</div>
<div class="evidence-item">
<strong>Press Appearances:</strong>
<div class="evidence-detail">In interviews, podcasts, public appearances - he maintains the exact same persona. No "breaking character" moments, no winking at the audience, no "real Nathan" emerging.</div>
</div>
<div class="evidence-item">
<strong>Peer Testimony:</strong>
<div class="evidence-detail">People who knew him before fame (including Seth Rogen from high school improv) describe him as essentially the same person he appears to be on screen.</div>
</div>
</div>
</div>
<div class="philosophical-problem">
<h4>The Deeper Issue</h4>
<div class="philosophy-grid">
<div class="problem-statement">
<strong>The Paradox:</strong>
<div class="problem-detail">
It seems definitive that he's playing a character. But the "I think" qualifier is still WILD.
It's a character that appears to be a very thin augmentation of his actual self.
</div>
</div>
<div class="identity-question">
<strong>The Identity Problem:</strong>
<div class="identity-detail">
If you play a character so often and for so long, doesn't that kind of become you?
What does it even mean to "be a person" when the performance and the self become indistinguishable?
</div>
</div>
</div>
<div class="existential-note">
<em>That these questions are even raised is what makes Nathan's work compelling.
Even during the original Nathan for You run (2013-2017), these philosophical implications were present.</em>
</div>
</div>
<div class="timeline-gap">
<h4>The Disappearance</h4>
<div class="gap-analysis">
<div class="show-timeline">
<div class="timeline-point">
<strong>February 2013 - November 2017:</strong> Nathan for You runs for 4 seasons
</div>
<div class="timeline-gap-visual">
<span class="gap-line">━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━</span>
<div class="gap-label">5 YEAR GAP</div>
</div>
<div class="timeline-point">
<strong>July 2022:</strong> The Rehearsal Season 1 premieres on HBO
</div>
</div>
<div class="gap-explanation">
<strong>What happened during the gap?</strong>
<div class="gap-details">
Nathan largely disappeared from public view (at least for many viewers). He did some behind-the-scenes work on other people's projects, but no major solo work. The questions about his identity and performance seemingly went dormant... until they exploded back to life with The Rehearsal.
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bio-section">
<h2 class="section-title" onclick="toggleCollapse(this)">The Rehearsal - When Performance Becomes Reality</h2>
<div class="collapsible-content">
<div class="premise-intro">
<h4>The New Premise</h4>
<p>After five years away, Nathan returns with a deceptively simple idea: <em>Big moments in life are stressful. What if we could rehearse for them?</em></p>
</div>
<div class="trivia-case">
<h4>The Trivia Deception: A Case Study in Meta-Reality</h4>
<div class="problem-setup">
<strong>The Problem:</strong> A man from Craigslist has been lying to his trivia friends for ten years about having a graduate degree. It's eating at him. He wants to come clean but doesn't know how.
</div>
<div class="solution-layers">
<strong>Nathan's "Solution" - Layer by Layer:</strong>
<div class="layer-breakdown">
<div class="layer">
<span class="layer-number">Layer 1:</span>
Nathan visits the man's apartment for what seems like a casual conversation about his problem.
</div>
<div class="layer">
<span class="layer-number">Layer 2:</span>
Nathan asks: "Do you think that conversation went well?" The man says yes.
</div>
<div class="layer">
<span class="layer-number">Layer 3:</span>
<strong>The Reveal:</strong> Two weeks earlier, Nathan faked a gas leak to get laser scanners into the apartment. He built an exact replica in a warehouse and rehearsed this conversation repeatedly with an actor playing the man.
</div>
<div class="layer">
<span class="layer-number">Layer 4:</span>
They will now build a replica of the bar, hire actors for all the patrons and staff, and create conversation flowcharts so he can practice revealing his lie.
</div>
</div>
</div>
<div class="meta-moment">
<strong>The Visceral Reality:</strong>
<div class="reality-note">
When you see the recreated bar on screen - if you've been to that actual place - the perfection of the recreation is intense. You're watching a TV show that created a fake version of a real place you know, in order to practice being at the real place. The layers of reality become dizzying.
</div>
</div>
</div>
<div class="shift-analysis">
<h4>The Shift: From Helping Others to Self-Examination</h4>
<div class="shift-description">
What begins as helping someone else with their problem gradually becomes something else entirely. As the show progresses, it becomes clear that Nathan is using "rehearsal" as a vehicle to explore his own questions about identity, authenticity, and human connection. The show becomes an ouroboros - Nathan rehearsing being Nathan.
</div>
<div class="philosophical-emergence">
<strong>The Core Questions Emerge:</strong>
<ul>
<li>What is reality when everything can be perfectly replicated?</li>
<li>Who are we when we can rehearse being ourselves?</li>
<li>What does it mean to be human when human interaction becomes scripted?</li>
<li>If you practice authenticity, does it cease to be authentic?</li>
</ul>
</div>
</div>
<div class="evolution-note">
<h4>The Evolution from Nathan for You</h4>
<div class="comparison-note">
The Rehearsal is both very different from Nathan for You and exactly the same. The commitment to the bit is still extreme, the deadpan delivery intact, but now the "bit" is Nathan's own existence. Where Nathan for You asked "Is Nathan playing a character?", The Rehearsal asks "What happens when Nathan uses that character to figure out who he really is?"
</div>
</div>
</div>
</div>
<div class="bio-section">
<h2 class="section-title" onclick="toggleCollapse(this)">The COVID Pivot - When Character Becomes Person</h2>
<div class="collapsible-content">
<div class="covid-disruption">
<h4>The Forced Evolution</h4>
<div class="disruption-description">
COVID-19 hits during production, fundamentally altering the show's trajectory. What was designed as a controlled experiment in rehearsing life becomes an uncontrolled experiment in living. The external world forces Nathan to abandon his carefully constructed scenarios and confront something more immediate and real.
</div>
</div>
<div class="family-experiment">
<h4>The Parenting Rehearsal</h4>
<div class="experiment-description">
Nathan begins exploring scenarios around family and parenting - territory that's deeply personal and impossible to fully script. Unlike business advice or social interactions, parenting touches something fundamental about identity, legacy, and human connection that can't be reduced to conversation flowcharts.
</div>
</div>
<div class="character-breakdown">
<h4>The Collapse of AMNF vs CNF</h4>
<div class="breakdown-analysis">
<div class="breakdown-point">
<strong>The Problem:</strong>
When Nathan starts "rehearsing" being a parent, the distinction between his character and himself becomes impossible to maintain. You can't fake-parent for an extended period without it affecting who you actually are.
</div>
<div class="breakdown-point">
<strong>The Reality:</strong>
The character changes Nathan experiences while grappling with family scenarios are very real. He's not performing fatherhood for comedy - he's using the framework of performance to explore genuine questions about family, connection, and his own capacity for intimacy.
</div>
<div class="breakdown-point">
<strong>The Paradox:</strong>
Nathan is simultaneously using his show to explore authentic human experience while being filmed for television. The most genuine moments of self-discovery are happening within the most artificial construct possible.
</div>
</div>
</div>
<div class="identity-crisis">
<h4>The Complete Ouroboros</h4>
<div class="crisis-description">
By this point, Nathan isn't helping other people rehearse their lives - he's using other people to rehearse his own. The show becomes an investigation into Nathan's capacity for authentic human connection, conducted through the most inauthentic means possible. The "rehearsal" becomes the reality, and the reality becomes impossible to distinguish from performance.
</div>
<div class="fundamental-question">
<em>The central question is no longer "Is Nathan playing a character?" but "Can Nathan stop playing a character long enough to figure out who he actually is?" And the terrifying possibility: "What if there's no difference?"</em>
</div>
</div>
<div class="bio-section aside-section">
<div class="aside-label">ASIDE</div>
<h4 style="margin-top: 0; padding-top: 10px;">How To with John Wilson: The HBO Connection</h4>
<div class="hbo-connection">
<div class="connection-description">
During this period, Nathan executive produced <strong>How To with John Wilson</strong> on HBO (2020-2023). This gave him crucial network relationships that would later enable his own HBO projects. The show featured John Wilson's unique documentary style exploring everyday New York life through ostensibly instructional segments.
</div>
</div>
<div class="cnf-amnf-advocacy">
<div class="advocacy-description">
<strong>The Meta-Performance:</strong> In <a href="https://www.youtube.com/watch?v=RCNsx_NyNOU" target="_blank">this YouTube video</a>, we see Nathan (as CNF) advocating publicly for the show he's making as AMNF. He's performing the role of executive producer while simultaneously being an executive producer, creating another layer in the reality/performance distinction that defines his work.
</div>
</div>
<div class="network-significance">
<div class="significance-description">
This HBO relationship would prove crucial for The Rehearsal, giving Nathan the platform and budget to conduct his most ambitious identity experiments yet. The network trust built through John Wilson's success enabled Nathan's complete creative freedom.
</div>
</div>
</div>
<div class="transition-note">
<h4>Setting the Stage</h4>
<div class="transition-description">
The Rehearsal transforms Nathan from a comedian with an unusual approach into something resembling a postmodern performance artist conducting live experiments in identity construction. The questions raised here about authenticity, performance, and the construction of self would set the stage for his next evolution.
</div>
</div>
</div>
</div>
<div class="bio-section aside-section">
<div class="aside-label">ASIDE</div>
<h2 class="section-title collapsed" onclick="toggleCollapse(this)">The Curse - Scripted Reality as Performance Art</h2>
<div class="collapsible-content collapsed">
<div class="format-shift">
<h4>The Format Evolution</h4>
<div class="format-description">
In 2023, Nathan makes a dramatic departure: <strong>The Curse</strong> on Showtime and Paramount+. Unlike his previous shows, which existed in reality TV or adjacent spaces, The Curse is a fully scripted series. Co-created and written with <strong>Benny Safdie</strong> (Uncut Gems), with both of them starring alongside <strong>Emma Stone</strong>.
</div>
</div>
<div class="show-premise">
<h4>The Show Within The Show</h4>
<div class="premise-layers">
<div class="premise-layer">
<strong>The Surface Story:</strong> Nathan and Emma play a couple who have just landed their own HGTV show called "Fliplanthropy." Set in Española, New Mexico, they're trying to help improve the local economy while building eco-friendly homes.
</div>
<div class="premise-layer">
<strong>The Uncomfortable Truth:</strong> Of course, you could also say they're exploiting the fuck out of a small town to make piles of money. But that's not what they're doing, right? They have GOOD intentions, not bad ones! Other shows do that, but they're not like them. (Benny plays the producer of their HGTV show.)
</div>
</div>
</div>
<div class="thematic-scope">
<h4>The Thematic Explosion</h4>
<div class="wikipedia-note">
<em>According to Wikipedia, the show deals with:</em>
</div>
<div class="themes-list">
The artifice of reality television, gentrification, cultural appropriation, white privilege, Native American rights, sustainable capitalism, Judaism, pathological altruism, virtue signalling, marriage, and parenthood.
</div>
</div>
<div class="three-observations">
<h4>Three Key Observations</h4>
<div class="observation">
<strong>1. Cinematic Excellence:</strong>
<div class="observation-detail">
The cinematography is beautiful and reinforces the storytelling in a way rarely seen on television. The visual language becomes part of the narrative structure.
</div>
</div>
<div class="observation">
<strong>2. The Meta-Reality Problem:</strong>
<div class="observation-detail">
They're making this show in Española (and Santa Fe). The question becomes: Is making a fake show about exploiting a small town any different than actually doing so? The line between fiction and reality collapses again, but now in the context of a scripted drama.
</div>
</div>
<div class="observation">
<strong>3. Emotional Intensity:</strong>
<div class="observation-detail">
The show is emotionally intense and compelling in ways that transcend its meta-commentary. It becomes genuinely affecting television while simultaneously deconstructing the very medium it exists within.
</div>
</div>
</div>
<div class="evolution-significance">
<h4>What This Means for Nathan's Evolution</h4>
<div class="significance-note">
The Curse represents Nathan's transition from reality-adjacent performance into scripted narrative while maintaining his core questions about authenticity, exploitation, and identity. He's now using traditional dramatic television to explore the same philosophical territory, but with the full resources of cinematic storytelling.
</div>
</div>
</div>
</div>
<div class="bio-section">
<h2 class="section-title" onclick="toggleCollapse(this)">The Rehearsal Season 2: Performance as Advocacy</h2>
<div class="collapsible-content">
<div class="evolution-complete">
<h4>The Final Evolution</h4>
<div class="evolution-description">
The Rehearsal Season 2 is almost a different show while somehow being exactly the same show. Nathan has taken an interest in airline safety, specifically a communication problem: pilots don't effectively communicate with each other in moments of crisis. First officers sometimes know something is wrong but don't decisively call out the captain.
</div>
</div>
<div class="advocacy-premise">
<h4>From Comedy to Advocacy</h4>
<div class="premise-setup">
<div class="setup-point">
<strong>The Expert:</strong> Nathan finds a guy who used to run the NTSB, who had tried to tell the government that pilots needed to use roleplay as part of their training to communicate better.
</div>
<div class="setup-point">
<strong>Nathan's Realization:</strong> "Well, I have a background in elaborate roleplay and a giant budget from HBO that's basically like 'do whatever you want but it better be humorous.'"
</div>
<div class="setup-point">
<strong>The Result:</strong> Season 2 becomes simultaneously a hilarious view of human interpersonal interaction AND a very real campaign to draw government attention to issues that put passengers in danger.
</div>
</div>
</div>
<div class="authenticity-paradox">
<h4>The Authenticity Paradox Reaches Its Peak</h4>
<div class="paradox-description">
This is very much not just a bit. Nathan is actually surfacing problems that pilots talk about amongst themselves all the time. He's using his platform for genuine advocacy while maintaining his comedic framework. The performance has become a vehicle for real social impact.
</div>
</div>
<div class="construction-reveal">
<h4>"TWO YEARS EARLIER"</h4>
<div class="reveal-description">
The Season 2 finale includes a devastating reveal: a title card reading "TWO YEARS EARLIER" shows how long Nathan has been working on this season. While the events are true, they're also constructed and revealed in a manner that creates a gripping narrative.
</div>
<div class="central-question-final">
<em>The question remains: Is that fake, or real? When performance serves genuine advocacy, when constructed narrative addresses real problems, what does authenticity even mean?</em>
</div>
</div>
<div class="deeper-themes">
<h4>The Uncomfortable Depths</h4>
<div class="themes-description">
Beneath the aviation safety premise run much deeper and more uncomfortable themes, particularly around neurodivergence and human communication. The work becomes viscerally upsetting in ways that reveal how good it actually is - it's touching something fundamental about how we relate to each other and understand ourselves.
</div>
</div>
<div class="final-assessment">
<h4>The Complete Picture</h4>
<div class="assessment-description">
Nathan has evolved from a comedian with business training into something resembling a postmodern performance artist who uses elaborate constructions to explore authentic human experiences while simultaneously advocating for real social change. The questions about identity, performance, and reality that began with Nathan for You have become a methodology for investigating the deepest aspects of human connection and social responsibility.
</div>
<div class="final-question">
<strong>The ultimate question is no longer "Who is Nathan?" but "What happens when someone uses the tools of performance to become more authentic than authenticity itself?"</strong>
</div>
</div>
</div>
</div>
<div class="bio-section">
<h2 class="section-title" onclick="toggleCollapse(this)">Personal Reflection: What It Means to Be a Person</h2>
<div class="collapsible-content">
<div class="deeper-commentary">
<h4>The Meta-Commentary</h4>
<div class="commentary-description">
It goes deeper. There is a meta commentary about what it even means to be a person here. And Nathan is deeply confused by that. I am too.
</div>
</div>
<div class="fundamental-difficulty">
<h4>The Exercise of Fitting In</h4>
<div class="difficulty-description">
Not relating to people on a fundamental level is extremely difficult. Masking and learning to fit in becomes an exercise - a constant performance of what you think a person should be, what connection should look like, what authentic interaction means.
</div>
</div>
<div class="existential-question">
<h4>The Terrifying Implication</h4>
<div class="question-setup">
Nathan has gone further than almost anyone in exploring these questions through performance, through elaborate constructions, through every possible angle of investigating authenticity and human connection.
</div>
<div class="central-fear">
<strong>And he still feels like he's not fitting in with the rest of the world. He still doesn't know who he is.</strong>
</div>
<div class="universal-question">
What is the takeaway if he can go this far and still feel disconnected? What does that mean for the rest of us who struggle with these same fundamental questions about connection, identity, and belonging?
</div>
</div>
<div class="shared-confusion">
<h4>The Shared Experience</h4>
<div class="confusion-reflection">
Maybe that's why Nathan's work is so viscerally affecting. It's not just comedy or performance art or social commentary - it's someone publicly working through the same confusion about human connection that many of us feel privately. The elaborate constructions become a way of saying: "I don't understand how to be a person either, so let me try every possible approach and see if any of them work."
</div>
<div class="final-resonance">
<em>And the fact that none of them fully work might be the most honest thing of all.</em>
</div>
</div>
</div>
</div>
</div>
<script>
function toggleCollapse(element) {
const content = element.nextElementSibling;
const isCollapsed = content.classList.contains('collapsed');
if (isCollapsed) {
content.classList.remove('collapsed');
element.classList.remove('collapsed');
} else {
content.classList.add('collapsed');
element.classList.add('collapsed');
}
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment