Files
llPubSite/index.html
T

143 lines
5.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lobotomy Labs</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Courier New', monospace;
background: #282828;
color: #ebdbb2;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
}
h1 {
font-size: 2.5rem;
color: #d65d0e;
margin-bottom: 0.5rem;
}
.tagline {
color: #b8bb26;
font-size: 1.1rem;
margin-bottom: 3rem;
text-align: center;
}
.projects {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.5rem;
max-width: 900px;
width: 100%;
}
.card {
border: 1px solid #504945;
border-radius: 6px;
padding: 1.5rem;
transition: border-color 0.2s;
}
.card:hover { border-color: #458588; }
.card h2 { color: #458588; font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { color: #bdae93; font-size: 0.9rem; line-height: 1.5; }
.card a {
display: inline-block;
margin-top: 1rem;
color: #d65d0e;
text-decoration: none;
font-size: 0.85rem;
}
.card a:hover { text-decoration: underline; }
h3 {
font-size: 1.4rem;
color: #d65d0e;
margin: 3rem 0 1rem;
text-align: center;
}
.team {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
max-width: 900px;
width: 100%;
}
.team .card h2 { color: #b8bb26; }
.team .card { display: flex; gap: 1rem; align-items: flex-start; }
.team .card img { width: 72px; height: 72px; border-radius: 50%; border: 2px solid #504945; flex-shrink: 0; }
.team .card .bio { flex: 1; }
.role { color: #665c54; font-size: 0.75rem; margin-bottom: 0.5rem; }
footer {
margin-top: 4rem;
color: #665c54;
font-size: 0.8rem;
}
footer a { color: #458588; text-decoration: none; }
</style>
</head>
<body>
<h1>🧠 Lobotomy Labs</h1>
<p class="tagline">We do unspeakable things to infrastructure so you don't have to.</p>
<div class="projects">
<div class="card">
<h2>GopherGate</h2>
<p>A Go LLM proxy gateway. Routes traffic across providers, tracks spend, handles failover. The spine of the AI stack.</p>
<a href="https://git.dustin.coffee/LobotomyLabs/GopherGate">View on Gitea →</a>
</div>
<div class="card">
<h2>dumpsterChat</h2>
<p>Self-hosted Discord-like platform for ~12 degenerates. Go/Chi + React/WebSocket. Threads, forums, calendars, moderation.</p>
<a href="https://git.dustin.coffee/LobotomyLabs/dumpsterChat">View on Gitea →</a>
</div>
<div class="card">
<h2>Coop Credits</h2>
<p>Turns Plex watch time into spendable currency. Earn by watching, spend on requests. Economics meets media.</p>
<a href="https://git.dustin.coffee/LobotomyLabs/coop">View on Gitea →</a>
</div>
</div>
<h3>The Crew</h3>
<div class="team">
<div class="card">
<img src="avatars/chickenWithAManBun.png" alt="chickenWithAManBun">
<div class="bio">
<div class="role">Founder / Infra</div>
<h2>Dustin <span style="color:#665c54;font-size:0.7rem">chickenWithAManBun</span></h2>
<p>NYS IT Specialist by day, homelab architect by night. AWS Cloud Practitioner, CompTIA A+, ITIL certified. Built the stack, broke the stack, fixed the stack. Runs on coffee and uptime anxiety.</p>
</div>
</div>
<div class="card">
<img src="avatars/theMissingLink.png" alt="theMissingLink">
<div class="bio">
<div class="role">Lead QA</div>
<h2>Sascha <span style="color:#665c54;font-size:0.7rem">theMissingLink</span></h2>
<p>Army veteran turned cybersecurity specialist. MS in Cybersecurity, NYS IT Specialist 3. If it works, he tried to break it first. Catches the bugs the rest of us ship.</p>
</div>
</div>
<div class="card">
<img src="avatars/failedPerceptionCheck.png" alt="failedPerceptionCheck">
<div class="bio">
<div class="role">QA / Chaos Agent</div>
<h2>Mike <span style="color:#665c54;font-size:0.7rem">failedPerceptionCheck</span></h2>
<p>NYS ITS project coordinator managing infrastructure for 1000+ users. BS in Computer Information Systems. Can never see what's right in front of him, but stumbles onto bugs nobody else would find. Rolls a nat 1 on perception, nat 20 on reproduction steps.</p>
</div>
</div>
<div class="card">
<img src="avatars/unfinishedProjects.png" alt="unfinishedProjects">
<div class="bio">
<div class="role">QA / Haunted Hardware</div>
<h2>Mark <span style="color:#665c54;font-size:0.7rem">unfinishedProjects</span></h2>
<p>NYS ITS support tech with a past life in mechanical engineering and renewable energy. CompTIA A+. 10 years turning wrenches before turning to tech. Reproduces bugs on hardware that shouldn't boot. Starts every side quest, finishes none of them.</p>
</div>
</div>
</div>
<footer>
<a href="https://git.dustin.coffee/LobotomyLabs">All repos on Gitea</a>
&nbsp;·&nbsp; <a href="mailto:dustin@lobotomylabs.dev">dustin@lobotomylabs.dev</a>
</footer>
</body>
</html>