Resume-Website/index.html

204 lines
6.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>Eric Steen - Resume</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: #98D8A8;
min-height: 100vh;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background: white;
border-radius: 15px;
border: 4px solid white;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
overflow: hidden;
}
.header {
#background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
background: #0c1b33;
color: white;
padding: 40px;
text-align: center;
}
.header h1 {
font-size: 2.5em;
margin-bottom: 10px;
font-weight: 300;
}
.header .title {
font-size: 1.2em;
opacity: 0.9;
margin-bottom: 20px;
}
.contact-info {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.contact-info span {
display: flex;
align-items: center;
gap: 5px;
}
.content {
padding: 40px;
}
.section {
margin-bottom: 40px;
}
.section h2 {
color: #2c3e50;
border-bottom: 2px solid #0c1b33;
padding-bottom: 10px;
margin-bottom: 20px;
font-size: 1.4em;
}
.experience-item, .education-item {
margin-bottom: 25px;
padding-left: 20px;
border-left: 3px solid #0c1b33;
}
.experience-item h3, .education-item h3 {
color: #2c3e50;
margin-bottom: 5px;
}
.job-meta, .edu-meta {
color: #7f8c8d;
font-style: italic;
margin-bottom: 10px;
}
.skills {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.skill-tag {
background: #E6AF2E;
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.9em;
}
.summary {
background: #f8f9fa;
padding: 20px;
border-radius: 8px;
border-left: 4px solid #0c1b33;
}
@media (max-width: 600px) {
.header {
padding: 30px 20px;
}
.header h1 {
font-size: 2em;
}
.content {
padding: 30px 20px;
}
.contact-info {
flex-direction: column;
align-items: center;
gap: 10px;
}
}
</style>
</head>
<body>
<div class="container">
<header class="header">
<h1>Eric Steen</h1>
<div class="title"> Site Reliability Engineer / Devops </div>
<div class="contact-info">
<span>📧 eric@steen.run</span>
<span>🌍 Grand Forks, ND</span>
</div>
</header>
<main class="content">
<section class="section">
<h2>Professional Summary</h2>
<div class="summary">
<p>I bring experience from hardware repair to cloud infrastructure. I've worked across the full stack from hardware debugging to kubernetes orchestration. When systems break, I can troubleshoot at any layer.</p>
</div>
</section>
<section class="section">
<h2>Experience</h2>
<div class="experience-item">
<h3>Site Reliability Engineer</h3>
<div class="job-meta">Core Scientific • Grand Forks • Sep 2024 - Jun 2025</div>
<ul>
<li>Set up systems to collect and organize log files from different applications. <b> Grafana Loki Prometheus</b></li>
<li>Tested new software before it went live, helping other departments connect their tools. <b>Kubernetes Terraform Github Actions</b></li>
<li>Found new methods of error tracking to detect possible future incidents. <b>Datadog</b></li>
<li>Fixed internal tools that were notoriously difficult to work with and maintain. <b>Bash Unix Docker</b></li>
</ul>
</div>
<div class="experience-item">
<h3>Hardware Engineer</h3>
<div class="job-meta">Core Scientific • Grand Forks • Feb 2021 - Sep 2024</div>
<ul>
<li>Wrote software to automate boring, repetative tasks, which cut downtime by 20%</li>
<li>Led several projects involving dozens of people to upgrade old systems, and did it under budget and ahead of schedule</li>
<li>Successfully scrapped legacy systems in favor of modern and more reliable systems</li>
<li>Record holder for most repairs in a shift, while also doing all the heavy lifting myself.</li>
</ul>
</div>
</section>
<section class="section">
<h2>Skills</h2>
<div class="skills">
<span class="skill-tag">Kubernetes</span>
<span class="skill-tag">Docker</span>
<span class="skill-tag">CI/CD</span>
<span class="skill-tag">Trace Repair</span>
<span class="skill-tag">Soldering</span>
<span class="skill-tag">Circuit Analysis</span>
<span class="skill-tag">Embedded Programming</span>
<span class="skill-tag">Cloud Services</span>
</div>
</section>
</main>
</div>
</body>
</html>