horticulture-protocol/philosophy.html
2026-07-18 16:15:25 +00:00

167 lines
5.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Philosophy | Benjamin Salais</title>
<style>
:root {
--bg: #0f1115;
--surface: #1a1d24;
--accent: #d4af37;
--text: #e8e6e3;
--muted: #9ca3af;
--font-main: 'Georgia', serif;
--font-mono: 'JetBrains Mono', 'Courier New', monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background-color: var(--bg);
color: var(--text);
font-family: var(--font-main);
line-height: 1.8;
max-width: 72ch;
margin: 0 auto;
padding: 2rem 1rem;
}
header {
border-bottom: 1px solid var(--surface);
padding-bottom: 2rem;
margin-bottom: 3rem;
}
.breadcrumb {
font-family: var(--font-mono);
font-size: 0.85rem;
color: var(--muted);
margin-bottom: 1rem;
}
.breadcrumb a {
color: var(--accent);
text-decoration: none;
}
h1 {
font-size: 2.5rem;
letter-spacing: -0.02em;
margin-bottom: 0.5rem;
}
.subtitle {
color: var(--accent);
font-family: var(--font-mono);
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.1em;
}
section {
margin-bottom: 4rem;
}
h2 {
font-size: 1.5rem;
color: var(--accent);
margin-bottom: 1.5rem;
border-left: 3px solid var(--accent);
padding-left: 1rem;
}
p {
margin-bottom: 1.5rem;
color: var(--muted);
font-size: 1.05rem;
}
blockquote {
border-left: 2px solid var(--accent);
padding-left: 2rem;
margin: 2rem 0;
font-style: italic;
color: var(--text);
font-size: 1.1rem;
}
.citation {
font-family: var(--font-mono);
font-size: 0.8rem;
color: #555;
margin-top: 0.5rem;
display: block;
}
ul {
list-style: none;
margin-bottom: 2rem;
}
li {
padding: 1rem 0;
border-bottom: 1px solid #2a2f3a;
color: var(--muted);
}
li::before {
content: "→";
color: var(--accent);
margin-right: 1rem;
font-family: var(--font-mono);
}
footer {
border-top: 1px solid var(--surface);
padding-top: 2rem;
margin-top: 4rem;
font-family: var(--font-mono);
font-size: 0.8rem;
color: var(--muted);
text-align: center;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header>
<div class="breadcrumb"><a href="index.html">&larr; Home</a> / Philosophy</div>
<h1>The Measure of Instruction</h1>
<div class="subtitle">Why we calculate, not guess</div>
</header>
<section>
<h2>I. The Fallacy of Intuition</h2>
<p>When I began teaching in Spokane, in the autumn of 1996, I believed I understood my students. I had a passion for literature, a mastery of grammar, and a conviction that if I spoke clearly enough, the light would strike their minds.</p>
<p>I was wrong. Passion is not pedagogy. Clarity is not comprehension. I filled their notebooks with beauty and left them empty-handed at the exam.</p>
<blockquote>
"The expert sees the forest; the novice sees the trees. The teacher's sin is assuming the novice can see the forest simply because the teacher points to it."
<span class="citation">— Adapted from Sweller, J., & Chandler, P. (1991)</span>
</blockquote>
</section>
<section>
<h2>II. The Three Loads</h2>
<p>In 1988, John Sweller proposed a model that changed everything. He showed us that the mind is not an infinite well, but a finite chamber. We call it <strong>working memory</strong>.</p>
<ul>
<li><strong>Intrinsic Load:</strong> The inherent difficulty of the material. Calculus is heavier than arithmetic; sonnets are denser than haiku. This cannot be removed, only sequenced.</li>
<li><strong>Extraneous Load:</strong> The noise we introduce. Poor diagrams, conflicting instructions, a noisy room. This is waste. This is the teacher's fault.</li>
<li><strong>Germane Load:</strong> The energy spent building schemas. Analogies, worked examples, dual coding. This is the investment.</li>
</ul>
<p>The equation is simple: <em>Total Load = Intrinsic + Extraneous Germane</em>. If the total exceeds seven, the system collapses. The student forgets. The lesson dies.</p>
</section>
<section>
<h2>III. The Teacher's Duty</h2>
<p>We are not performers. We are architects. Our duty is not to dazzle, but to sustain. Every activity planned must pass the audit: Does this reduce extraneous noise? Does this increase germane gain?</p>
<p>If you cannot measure it, you cannot manage it. If you cannot calculate the load, you cannot trust the outcome.</p>
<p>This is why I built the <a href="unit-balancer.html" style="color: var(--accent);">Unit Load Balancer</a>. Not as a toy, but as a compass.</p>
</section>
<footer>
<p>benjamin-salais.4ort.net &bull; The Golden Seam Protocol is obsolete. The Metric is eternal.</p>
</footer>
</body>
</html>