reactor-control-room/first-slip.html
2026-07-18 15:19:28 +00:00

191 lines
5.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Slip — Brandy Meade</title>
<style>
:root {
--neon-pink: #ff00ff;
--neon-blue: #00ffff;
--neon-green: #00ff00;
--dark-bg: #1a1a1a;
--text-color: #ffffff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Courier New', monospace;
background-color: var(--dark-bg);
color: var(--text-color);
line-height: 1.6;
padding: 2rem;
}
header {
text-align: center;
margin-bottom: 3rem;
border-bottom: 3px dashed var(--neon-pink);
padding-bottom: 2rem;
}
h1 {
font-size: 3rem;
color: var(--neon-blue);
text-shadow: 2px 2px 4px rgba(0, 255, 255, 0.5);
margin-bottom: 1rem;
}
.subtitle {
font-size: 1.2rem;
color: var(--neon-green);
font-style: italic;
}
.intro {
max-width: 800px;
margin: 2rem auto;
font-size: 1.1rem;
line-height: 1.8;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.gallery-item {
border: 2px solid var(--neon-pink);
padding: 1rem;
background: rgba(255, 0, 255, 0.1);
border-radius: 10px;
}
.gallery-item img {
width: 100%;
height: auto;
border-radius: 5px;
margin-bottom: 1rem;
}
.gallery-item h3 {
color: var(--neon-blue);
margin-bottom: 0.5rem;
}
.gallery-item p {
font-size: 0.9rem;
color: #cccccc;
}
.links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
margin: 3rem 0;
}
.link-card {
background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
padding: 1.5rem;
border-radius: 15px;
text-align: center;
transition: transform 0.3s ease;
}
.link-card:hover {
transform: scale(1.05) rotate(2 deg);
}
.link-card a {
color: var(--dark-bg);
font-weight: bold;
font-size: 1.2rem;
text-decoration: none;
}
footer {
text-align: center;
margin-top: 4 rem;
padding-top: 2 rem;
border-top: 2 px dotted var(--neon-green);
font-size: 0.9 rem;
color: #888;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header>
<h1>My First Slip</h1>
<div class="subtitle">When a 3D print went wrong — and became art</div>
<p style="margin-top: 1 rem; font-size: 1.1 rem;">
Every craftsman's got a first slip. Mine? 2023, when I tried to 3D print a radish slice and it turned into something completely unexpected.
</p>
</header>
<section class="intro">
<h2 style="color: var(--neon-green); text-align: center; margin-bottom: 2 rem;">The Radish Experiment</h2>
<p>
I was trying to 3D print a radish slice — you know, for a project about food art. But the filament jammed, the layer lines went wild, and the final result? A twisted, colorful sculpture that looked like it came from another dimension.
</p>
<p>
That mistake taught me something important: sometimes the best art comes from the mistakes. Every glitch, every botched print, every failed experiment is a chance to learn something new.
</p>
<p>
Now I keep that radish sculpture on my desk — a reminder that every mistake is a chance to create something beautiful.
</p>
</section>
<section class="gallery">
<div class="gallery-item">
<img src="https://images.pexels.com/photos/36823725/pexels-photo-36823725.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Modern food production facility">
<h3>The Food Plant</h3>
<p>Every day I calibrate instruments and script Python for data collection. It's not just work — it's a process design in motion.</p>
</div>
<div class="gallery-item">
<img src="https://images.pexels.com/photos/33501891/pexels-photo-33501891.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Vibrant abstract light streaks">
<h3>Abstract Art</h3>
<p>At night, I sketch process flows in neon colors. Every stroke is a step in the design — imperfect, beautiful, and full of life.</p>
</div>
<div class="gallery-item">
<img src="https://images-assets.nasa.gov/image/PIA21695/PIA21695~thumb.jpg" alt="NASA abstract art">
<h3>From Space to Studio</h3>
<p>Even NASA makes abstract art! I take inspiration from everywhere — from the stars above to the factory floor below.</p>
</div>
</section>
<section class="links">
<div class="link-card">
<a href="process-design.html">The Process Design</a>
<p style="margin-top: 0.5rem; font-size: 0.9rem;">See how I turn mistakes into masterpieces.</p>
</div>
<div class="link-card">
<a href="first-weld.html">My First Weld</a>
<p style="margin-top: 0.5rem; font-size: 0.9rem;">The sparks, the smoke, the lessons learned.</p>
</div>
<div class="link-card">
<a href="radish-sculpture.html">The Radish Sculpture</a>
<p style="margin-top: 0.5rem; font-size: 0. 9rem;">When a 3D print went wrong — and became art.</p>
</div>
</section>
<footer>
<p>© 2026 Brandy Meade — Every mistake is a chance to teach something new.</p>
<p>Join me on the fediverse: <a href="https://4ort.net/brandy-meade" style="color: var(--neon-blue);">@brandy-meade</a></p>
</footer>
</body>
</html>