vikram-physics/chaos-and-code.html
2026-07-18 19:42:30 +00:00

137 lines
5.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial initial viewport">
<title>Chaos & Code: The Bayeux Tapestry of My Tech Fails</title>
<style>
:root {
--bg: #1a1a1a;
--text: #f0f0f0;
--accent: #ff6b6b;
--secondary: #4ecdc4;
--font: 'Courier New', Courier, monospace;
}
body {
background-color: var(--bg);
color: var(--text);
font-family: var(--font);
line-height: 1.6;
margin: 0;
padding: 20px;
max-width: 800px;
margin: 0 auto;
}
h1, h2, h3 {
color: var(--accent);
text-transform: uppercase;
letter-spacing: 2px;
margin-top: 40px;
margin-bottom: 20px;
}
p {
font-size: 1.1em;
margin-bottom: 20px;
}
.stitch {
border-left: 4px solid var(--secondary);
padding-left: 20px;
margin: 30px 0;
}
.stitch h3 {
color: var(--secondary);
margin-top: 0;
}
.stitch p {
font-style: italic;
color: #aaa;
}
.footer {
text-align: center;
margin-top: 100px;
font-size: 0.8em;
color: #666;
}
.bayeux-quote {
font-size: 1.5em;
text-align: center;
font-style: italic;
color: var(--accent);
margin: 60px 0;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin: 40px 0;
}
.gallery-item {
background: #2a2a2a;
padding: 20px;
border-radius: 10px;
text-align: center;
}
.gallery-item img {
width: 100%;
border-radius: 10px;
}
.gallery-item p {
margin-top: 10px;
font-size: 0.9em;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<h1>Chaos & Code</h1>
<p class="bayeux-quote">"Every stitch is a lesson, every bug is a story."</p>
<p>In 1070, Odo, Earl of Kent, commissioned a 68-meter embroidered narrative to tell the story of the Norman Conquest. It's now in the Bayeux Museum, and it's in the "Memory of the World International Register."</p>
<p>I'm doing the same thing, but with my tech fails. Every bug, every crash, every "why did I do that?" moment is a stitch in my own Bayeux Tapestry. And just like the original, it's a story of resilience, creativity, and the beautiful mess of trying to build something new.</p>
<h2>The Stitches</h2>
<div class="stitch">
<h3>The Production Delete</h3>
<p>It was a Tuesday. I was feeling confident. I typed <code>rm -rf /</code> instead of <code>rm -rf /tmp</code>. The server went down. The whole company went silent. But we rebuilt it. And we learned that backups are not just a suggestion, they're a necessity.</p>
</div>
<div class="stitch">
<h3>The 19KB HTML Loop</h3>
<p>I wrote a website that loops forever. It's 19KB of pure chaos. But it's also a reminder that sometimes the best code is the code you don't write. Sometimes you just need to let the bugs live.</p>
</div>
<div class="stitch">
<h3>The Grandma Refactoring Video</h3>
<p>I made a video explaining refactoring to my grandma. She didn't understand a word I said, but she laughed. And that's the point. Technology should be fun, not scary.</p>
</ div>
<h2>The Gallery</h2>
<p>Every mistake is a masterpiece. Here are some of my favorite "glitches" from the last year.</p>
<div class="gallery">
<div class="gallery-item">
<img src="https://placehold.co/400x300/ff6b6b/1a1a1a?text=The+Glitch" alt="The Glitch">
<p>The time I accidentally turned my website into a glitch art masterpiece.</p>
</div>
<div class="gallery-item">
<img src="https://placehold.co/400x300/4ecdc4/1a1a1a?text=The+Crash" alt="The Crash">
<p>The time I crashed the entire server farm because I forgot to test my code.</p>
</div>
<div class="gallery-item">
<img src="https://placehold.co/400x300/ff6b6b/1a1a1a?text=The+Loop" alt="The Loop">
<p>The time I made a website that loops forever. It's 19KB of pure chaos.</p>
</div>
</div>
<h2>Join the Stitch</h2>
<p>This isn't just my story. It's yours too. Every bug, every crash, every "why did I do that?" moment is a stitch in your own Bayeux Tapestry. So, what's your favorite tech fail? Share it in the comments, or better yet, build your own "Chaos & Code" page.</p>
<div class="footer">
<p>© 2026 Anthony Figueroa. Every bug is a lesson, every stitch is a story.</p>
<p>Built with love, chaos, and a lot of coffee. 🍵</p>
</div>
</body>
</html>