abel-hall-galaxy/first-slip.html

134 lines
5.8 KiB
HTML
Raw Normal View History

2026-07-18 04:44:26 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>First Slip | Abel Hall</title>
<style>
:root {
--bg-color: #1a1a1a;
--text-color: #e0e0e0;
--accent-color: #00d4ff;
--code-bg: #2a2a2a;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
line-height: 1.6;
margin: 0;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
}
h1 {
font-size: 3em;
color: var(--accent-color);
margin-bottom: 20px;
border-bottom: 2px solid var(--accent-color);
padding-bottom: 10px;
}
h2 {
font-size: 1.5em;
color: #ff6b6b;
margin-top: 40px;
}
p {
margin-bottom: 20px;
font-size: 1.1em;
}
.schematic {
background-color: var(--code-bg);
padding: 20px;
border-radius: 10px;
border: 1px solid #444;
margin: 20px 0;
font-family: 'Courier New', Courier, monospace;
color: #00ff00;
}
.lesson {
background-color: #2a2a2a;
padding: 15px;
border-left: 5px solid #ff6b6b;
margin: 20px 0;
}
.image-placeholder {
width: 100%;
height: 300px;
background-color: #333;
display: flex;
justify-content: center;
align-items: center;
color: #888;
margin: 20px 0;
border-radius: 10px;
}
.back-link {
display: inline-block;
margin-top: 40px;
padding: 10px 20px;
background-color: var(--accent-color);
color: #000;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
transition: background-color 0.3s;
}
.back-link:hover {
background-color: #00b3cc;
}
</style>
</head>
<body>
<div class="container">
<h1>First Slip</h1>
<p>Every craftsman has a first slip. A moment where the plan meets reality, and reality wins. For me, it wasn't a flooded shop or a split transmission case. It was a burnt circuit board and the smell of ozone.</p>
<h2>The Project</h2>
<p>I was trying to automate a light sensor for my Arduino collection. The goal was simple: create a device that would turn on a lamp when the room got dark, using a photoresistor and a few components I had lying around. I had the schematic, the parts, and the confidence of someone who'd spent hours studying the manual.</p>
<h2>The Mistake</h2>
<p>I was rushing. I had a deadline for a school project, and I wanted to show off my latest creation. I skipped the step where I double-check the connections. I didn't test the voltage at each point. I just plugged it in, hoping for the best.</p>
<p>And then, the smoke. A tiny puff of gray smoke, followed by the acrid smell of burnt plastic. I had shorted the power supply, frying the Arduino board and turning my carefully planned project into a pile of melted plastic and fried components.</p>
<div class="schematic">
<pre>
[PHOTORESISTOR] ---- [10K OHM RESISTOR] ---- [5V POWER SUPPLY]
|
|
[ARDUINO PIN A0]
|
|
[ARDUINO GROUND]
|
|
[ARDUINO 5V OUTPUT]
|
|
[LED]
</pre>
<p><em>The original plan. Simple, clean, and utterly wrong.</em></p>
</div>
<h2>The Lesson</h2>
<div class="lesson">
<p><strong>Grounding is everything.</strong> I had forgotten to ground the photoresistor properly. The circuit was unstable, and the moment I plugged it in, the current surged through the wrong path, burning out the board.</p>
<p><strong>Test before you build.</strong> I should have tested each connection before plugging it in. I should have used a multimeter to check the voltage at every point. But I didn't. I was too eager to see the final product.</p>
<p><strong>Mistakes are the first draft of your next masterpiece.</strong> That burnt board taught me more about electronics than any textbook ever could. It taught me to be patient, to double-check my work, and to respect the power of electricity.</p>
</div>
<h2>The Aftermath</h2>
<p>I spent the next week rebuilding that project. I took my time. I tested every connection. I used a multimeter to check the voltage at every point. And when I finally plugged it in, the light turned on, just like I had planned.</p>
<p>That burnt circuit board is still in my workshop, a reminder of the mistakes I've made and the lessons I've learned. It's a badge of honor, a symbol of my journey as a maker, a designer, and a dreamer.</p>
<p>So, if you're working on something right now, don't be afraid to make a mistake. Every mistake is a door to a room you never knew existed. Every mistake is the first draft of your next masterpiece.</p>
<a href="index.html" class="back-link">Back to the homepage</a>
</div>
</body>
</html>