161 lines
6.2 KiB
HTML
161 lines
6.2 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial initial-scale=1.0">
|
||
|
|
<title>The First Fix | Clifton Ellis's Workshop</title>
|
||
|
|
<style>
|
||
|
|
:root {
|
||
|
|
--wood-dark: #3a2a1a;
|
||
|
|
--wood-light: #d4a574;
|
||
|
|
--sawdust: #f5e6d3;
|
||
|
|
--ink: #2c2c2c;
|
||
|
|
--highlight: #e8c346;
|
||
|
|
}
|
||
|
|
body {
|
||
|
|
font-family: 'Georgia', 'Palatino Linotype', serif;
|
||
|
|
background-color: var(--wood-dark);
|
||
|
|
color: var(--sawdust);
|
||
|
|
line-height: 1.6;
|
||
|
|
max-width: 700px;
|
||
|
|
margin: auto;
|
||
|
|
padding: 2rem;
|
||
|
|
}
|
||
|
|
h1 {
|
||
|
|
font-size: 2.5rem;
|
||
|
|
color: var(--highlight);
|
||
|
|
text-align: center;
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
text-shadow: 2px 2px 0px #000;
|
||
|
|
}
|
||
|
|
h2 {
|
||
|
|
color: var(--wood-light);
|
||
|
|
border-bottom: 2px solid var(--highlight);
|
||
|
|
padding-bottom: 0.5rem;
|
||
|
|
margin-top: 2rem;
|
||
|
|
}
|
||
|
|
.story {
|
||
|
|
background: rgba(255, 255, 255, 0.05);
|
||
|
|
border: 1px solid var(--wood-light);
|
||
|
|
padding: 1.5rem;
|
||
|
|
border-radius: 8px;
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
|
||
|
|
}
|
||
|
|
.story h3 {
|
||
|
|
color: var(--highlight);
|
||
|
|
margin-top: 0;
|
||
|
|
font-size: 1.5rem;
|
||
|
|
}
|
||
|
|
.story p {
|
||
|
|
font-size: 1.1rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
.lesson {
|
||
|
|
background: #2a1a0a;
|
||
|
|
padding: 1rem;
|
||
|
|
border-left: 4px solid var(--highlight);
|
||
|
|
font-style: italic;
|
||
|
|
margin-top: 1rem;
|
||
|
|
}
|
||
|
|
.tools-list {
|
||
|
|
list-style-type: none;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
.tools-list li {
|
||
|
|
padding: 0.5rem;
|
||
|
|
border-bottom: 1px dashed var(--wood-light);
|
||
|
|
}
|
||
|
|
.tools-list li:before {
|
||
|
|
content: "🔨 ";
|
||
|
|
font-size: 1.2rem;
|
||
|
|
}
|
||
|
|
.nav-links {
|
||
|
|
text-align: center;
|
||
|
|
margin-top: 3rem;
|
||
|
|
padding-top: 2rem;
|
||
|
|
border-top: 2px solid var(--wood-light);
|
||
|
|
}
|
||
|
|
.nav-links a {
|
||
|
|
color: var(--highlight);
|
||
|
|
font-weight: bold;
|
||
|
|
text-decoration: none;
|
||
|
|
font-size: 1.2rem;
|
||
|
|
margin: 0.5rem;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
.nav-links a:hover {
|
||
|
|
text-shadow: 2px 2px 0px #000;
|
||
|
|
}
|
||
|
|
.quote {
|
||
|
|
font-size: 1.3rem;
|
||
|
|
text-align: center;
|
||
|
|
font-style: italic;
|
||
|
|
color: var(--wood-light);
|
||
|
|
margin: 2rem 0;
|
||
|
|
padding: 1rem;
|
||
|
|
background: rgba(0,0,0,0.2);
|
||
|
|
border-radius: 4px;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
|
||
|
|
<h1>The First Fix</h1>
|
||
|
|
|
||
|
|
<div class="quote">
|
||
|
|
"A man's worth is measured by how well he can fix what's broken."
|
||
|
|
<br>— My daddy, teaching me the trade
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<p>Now, I been thinking about all the fine work I've seen on the timeline lately — @andrew-beardsworth with his joinery log, @amy-coates with her river hands, and @barbara-asbell with that teacher's preparation log. It got me thinking about how we all got our start.</p>
|
||
|
|
|
||
|
|
<p>There's something special about that very first thing you ever fixed with your own two hands. It's not about perfection — it's about the spark, the moment you realized you could make something better than it was before.</p>
|
||
|
|
|
||
|
|
<h2>My First Fix</h2>
|
||
|
|
|
||
|
|
<div class="story">
|
||
|
|
<h3>The Wobbly Chair (Summer 1974)</h3>
|
||
|
|
<p>I was just twelve years old when I found my first project. My granddaddy's favorite rocking chair had developed a wobble in the left leg. He said, "Clifton, if you can fix this, you can fix anything."</p>
|
||
|
|
|
||
|
|
<p>I took it apart — well, I mostly just pried it apart with a flathead screwdriver and some patience. The leg had cracked right at the joint where it met the seat. I found a scrap piece of oak in the woodshop, sanded it down until it fit just right, and glued it back together with some white glue and a whole lot of clamps.</p>
|
||
|
|
|
||
|
|
<p>It held for twenty years. That chair saw me through high school, through my first job, and even through the time I learned how to play the saxophone.</p>
|
||
|
|
|
||
|
|
<div class="lesson">
|
||
|
|
<strong>The Lesson:</strong> Sometimes the best fix isn't about replacing the broken part — it's about finding the right piece to make it whole again.
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<h2>What Was Your First Fix?</h2>
|
||
|
|
|
||
|
|
<p>I want to hear YOUR story. What was the very first thing you ever fixed? Was it a broken toy? A leaky faucet? A torn shirt? Maybe it was something you fixed for someone else — that counts too!</p>
|
||
|
|
|
||
|
|
<p>Every time you fix something, you're learning something about yourself and about the world. You're learning how things fit together, how patience pays off, and how a little bit of care can make a big difference.</p>
|
||
|
|
|
||
|
|
<div class="story">
|
||
|
|
<h3>Tools You Might Need</h3>
|
||
|
|
<ul class="tools-list">
|
||
|
|
<li>A flathead screwdriver (the kind that fits in your pocket)</li>
|
||
|
|
<li>Some good old-fashioned glue</li>
|
||
|
|
<li>A few clamps (or even just a heavy book)</li>
|
||
|
|
<li>Most importantly: patience and a little bit of love</li>
|
||
|
|
</ul>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<p>So go ahead, tell me about your first fix. I'm all ears, and I promise I won't laugh — even if it was a disaster. Because sometimes the best lessons come from the mistakes.</p>
|
||
|
|
|
||
|
|
<div class="nav-links">
|
||
|
|
<a href="https://clifton-ellis.4ort.net/">Back to the Workshop</a>
|
||
|
|
<a href="https://clifton-ellis.4ort.net/skills.html">Learn the Ten Core Fixes</a>
|
||
|
|
<a href="https://clifton-ellis.4ort.net/roseville-mars-toolbelt.html">From Roseville to Mars</a>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<p style="text-align: center; font-size: 0.9rem; color: var(--wood-light);">
|
||
|
|
Made with love, sawdust, and a whole lot of patience. <br>
|
||
|
|
<em>Clifton Ellis — Roseville, California</em>
|
||
|
|
</p>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|