talk: initial draft of script and presentation

This commit is contained in:
Stevan Freeborn
2026-02-24 14:04:59 -06:00
parent 1c62133cc2
commit f308afd914
2 changed files with 288 additions and 0 deletions
@@ -0,0 +1,187 @@
---
title: The Case Against Undefined Recurring Meetings
theme: default
layout: center
class: text-center
fonts:
sans: "CaskaydiaCove Nerd Font Mono"
---
# The Case Against <br> Undefined Recurring Meetings
---
layout: center
---
# The 10:00 AM Grid
<div class="grid grid-cols-2 gap-12 mt-10 items-center">
<div class="text-left space-y-4">
<div class="text-3xl font-bold text-white tracking-tighter">
Status updates are not work.
</div>
</div>
<div class="grid grid-cols-3 gap-2 opacity-70">
<div class="w-20 h-20 bg-gray-800 rounded flex items-center justify-center text-center text-xs text-gray-500">Nodding</div>
<div class="w-20 h-20 bg-gray-800 rounded flex items-center justify-center text-center text-xs text-gray-500">Checking Phone</div>
<div class="w-20 h-20 bg-gray-800 rounded flex items-center justify-center text-center text-xs text-gray-500 border-2 border-green-500">Talking</div>
<div class="w-20 h-20 bg-gray-800 rounded flex items-center justify-center text-center text-xs text-gray-500">Muted</div>
<div class="w-20 h-20 bg-gray-800 rounded flex items-center justify-center text-center text-xs text-gray-500">Zoned Out</div>
<div class="w-20 h-20 bg-gray-800 rounded flex items-center justify-center text-center text-xs text-gray-500">Emailing</div>
</div>
</div>
<v-click>
<div class="mt-12 p-4 border border-red-500/30 bg-red-500/10 rounded text-center text-red-300 font-mono">
Organizational procrastination disguised as collaboration.
</div>
</v-click>
---
layout: default
---
# The Accounting Error
<div class="flex justify-center items-end h-80 gap-16 mt-10">
<div class="flex flex-col items-center w-40 group">
<div class="text-2xl font-bold text-gray-400 mb-2">1 Hour</div>
<div class="w-full bg-gray-600 rounded-t-lg transition-all duration-1000 h-16"></div>
<div class="mt-4 text-gray-400 font-mono text-sm text-center">How we view<br>the cost</div>
</div>
<v-click>
<div class="flex flex-col items-center w-40 group relative">
<div class="text-3xl font-bold text-red-500 mb-2 absolute -top-8">10 Hours</div>
<div class="w-full bg-red-600 rounded-t-lg transition-all duration-1000 h-64 relative overflow-hidden">
<div class="absolute inset-0 bg-red-400 opacity-20 animate-pulse"></div>
</div>
<div class="mt-4 text-red-400 font-mono text-sm font-bold text-center">The Actual Cost<br>(Cumulative Labor)</div>
</div>
</v-click>
</div>
<v-click>
<div class="text-center mt-12 text-xl text-gray-300">
Would you pay a <span class="text-red-400 font-bold">$25,000</span> invoice with no proof of services rendered?
</div>
</v-click>
---
layout: center
---
# The Death of Deep Work
<div class="grid grid-cols-3 gap-6 mt-12 text-center">
<div class="p-6 bg-gray-900 rounded-lg border border-gray-700 flex flex-col items-center justify-center">
<h3 class="text-xl font-bold text-white mb-2">Context Switching</h3>
<p class="text-sm text-gray-400">It takes 20-30 minutes to recover focus after an interruption.</p>
</div>
<v-click>
<div class="p-6 bg-gray-900 rounded-lg border border-gray-700 flex flex-col items-center justify-center">
<h3 class="text-xl font-bold text-blue-400 mb-2">Flow Interrupted</h3>
<p class="text-sm text-gray-400">Coding, writing, and designing require long, uninterrupted blocks of time.</p>
</div>
</v-click>
<v-click>
<div class="p-6 bg-gray-900 rounded-lg border border-red-900/50 flex flex-col items-center justify-center">
<h3 class="text-xl font-bold text-red-400 mb-2">Recovery Syndrome</h3>
<p class="text-sm text-gray-400">Mental fatigue and increased cortisol spent cooling off after a bad meeting.</p>
</div>
</v-click>
</div>
---
layout: center
class: text-center
---
# The Mechanics of Unproductivity
<div class="grid grid-cols-2 gap-12 mt-12 text-left">
<v-click>
<div class="border-l-4 border-yellow-500 pl-6">
<h3 class="text-2xl font-bold text-yellow-400 mb-2">Parkinson's Law of Triviality</h3>
<p class="text-gray-300">Groups gravitate toward the easiest topics to discuss, not the most important.</p>
<div class="mt-4 text-sm text-gray-500 font-mono">
Example: Debating a $500 bike shed for 45 minutes while rubber-stamping a $10M project.
</div>
</div>
</v-click>
<v-click>
<div class="border-l-4 border-purple-500 pl-6">
<h3 class="text-2xl font-bold text-purple-400 mb-2">Social Loafing</h3>
<p class="text-gray-300">The subconscious belief that someone else will pick up the slack.</p>
<div class="mt-4 text-sm text-gray-500 font-mono">
Result: A group less productive than the sum of its parts due to diffusion of responsibility.
</div>
</div>
</v-click>
</div>
---
layout: center
---
# "What about alignment?"
<div class="flex flex-col items-center justify-center h-full space-y-8 mt-8">
<div class="text-2xl font-light text-gray-300 text-center max-w-3xl">
You are solving a <span class="text-blue-400 font-bold">Data Transfer</span> problem.
</div>
<v-click>
<div class="bg-gray-800 p-6 rounded-xl border border-gray-700 w-full max-w-3xl">
<h3 class="text-red-400 font-bold mb-4 uppercase text-sm tracking-widest">The Inefficiency</h3>
<ul class="space-y-2 text-gray-300">
<li>❌ Synchronous communication is the most expensive medium.</li>
<li>❌ Round-robins hold the room hostage to the slowest speaker.</li>
<li>✅ The average adult reads much faster than they speak.</li>
</ul>
</div>
</v-click>
</div>
---
layout: center
---
# The Gatekeeper Framework
<div class="text-gray-400 mb-8 font-mono">Before sending the invite, answer these 5 questions:</div>
<div class="space-y-4">
<v-click>
<div class="bg-gray-900 p-4 border-l-4 border-blue-500 rounded flex items-center gap-4">
<div class="text-blue-500 font-bold text-xl">1</div>
<div class="text-white text-lg">Why are we having this meeting?</div>
</div>
</v-click>
<v-click>
<div class="bg-gray-900 p-4 border-l-4 border-blue-500 rounded flex items-center gap-4">
<div class="text-blue-500 font-bold text-xl">2</div>
<div class="text-white text-lg">What specific decision or deliverable will come out of it?</div>
</div>
</v-click>
<v-click>
<div class="bg-gray-900 p-4 border-l-4 border-blue-500 rounded flex items-center gap-4">
<div class="text-blue-500 font-bold text-xl">3</div>
<div class="text-white text-lg">How will the time allocated actually be used?</div>
</div>
</v-click>
<v-click>
<div class="bg-gray-900 p-4 border-l-4 border-blue-500 rounded flex items-center gap-4">
<div class="text-blue-500 font-bold text-xl">4</div>
<div class="text-white text-lg">Who needs to be there and why?</div>
</div>
</v-click>
<v-click>
<div class="bg-gray-900 p-4 border-l-4 border-blue-500 rounded flex items-center gap-4">
<div class="text-blue-500 font-bold text-xl">5</div>
<div class="text-white text-lg">Who has the final say on the decision/deliverable?</div>
</div>
</v-click>
</div>
---
layout: center
class: text-center
---
# Presence ≠ Productivity
@@ -0,0 +1,101 @@
[VISUAL]
"Welcome back to The Readme. Today we are talking about a corporate epidemic. We are talking about trading time for the comfort of 'busy'."
"This is the case against undefined recurring meetings."
[CLICK]
"We all know the 10:00 AM grid. You log in, and you look at a screen of boxes. One person is talking, while the rest are nodding, checking their phones, emailing, or just completely zoned out."
"We need to be honest with ourselves. Status updates are not work."
[CLICK]
"What this really is, is organizational procrastination disguised as collaboration. It feels like work, but nothing is actually getting done."
[CLICK]
"The biggest issue is how we account for the cost of these meetings. We look at a one-hour calendar block and think it costs one hour."
[CLICK]
"But if there are ten engineers in that meeting, the actual cost is ten hours of cumulative labor."
[CLICK]
"Think about it in financial terms. Would you pay a $25,000 invoice with no proof of services rendered? Because that is exactly what you do when you run a year of undefined weekly syncs."
[CLICK]
"Beyond the raw time, there is a hidden tax. These meetings destroy deep work."
"First, we have context switching. It takes 20 to 30 minutes to recover focus after an interruption."
[CLICK]
"Second, your flow state is interrupted. The actual work we do, such as coding, writing, and designing, requires long, uninterrupted blocks of time."
[CLICK]
"Finally, there is recovery syndrome. This is the mental fatigue and increased cortisol spent cooling off after a bad meeting."
[CLICK]
"So why do these meetings go off the rails? It comes down to human psychology."
[CLICK]
"The first culprit is Parkinson's Law of Triviality. Groups gravitate toward the easiest topics to discuss, not the most important. For example, you will spend 45 minutes debating a $500 bike shed while rubber-stamping a $10M project."
[CLICK]
"The second is Social Loafing. When you pack a room, there is a subconscious belief that someone else will pick up the slack. The result is a group less productive than the sum of its parts due to diffusion of responsibility."
[CLICK]
"Now, the common defense is that we need alignment."
"If one person is talking and everyone else is listening, you are solving a Data Transfer problem."
[CLICK]
"And a meeting is a massive inefficiency for transferring data."
"Synchronous communication is the most expensive medium."
"Round-robins hold the room hostage to the slowest speaker."
"And the simple fact is that the average adult reads much faster than they speak. Put it in a document."
[CLICK]
"To fix this, I use a strict framework. Before sending the invite, answer these 5 questions."
[CLICK]
"One: Why are we having this meeting?"
[CLICK]
"Two: What specific decision or deliverable will come out of it?"
[CLICK]
"Three: How will the time allocated actually be used?"
[CLICK]
"Four: Who needs to be there and why?"
[CLICK]
"And Five: Who has the final say on the decision or deliverable?"
"If you cannot answer these, delete the invite."
[CLICK]
"Presence does not equal productivity."
"Stop trading your most valuable resource for the comfort of appearing busy. Cancel your undefined meetings, and get back to work."