resume/resume.html

22 lines
9.4 KiB
HTML
Raw Normal View History

2026-08-26 12:34:16 -04:00
<!DOCTYPE html>
2026-08-26 13:09:47 -04:00
<html lang="en"><head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1" /><title>Jane Doe</title><link rel="stylesheet" href="style.css" /><script>
function setColHeight() {
var fm = document.querySelector('.front-matter');
var col = document.querySelector('.columns');
if (!fm || !col) return;
var used = fm.getBoundingClientRect().height
+ parseInt(getComputedStyle(document.body).paddingTop) * 2;
col.style.height = (window.innerHeight - used) + 'px';
}
window.addEventListener('load', setColHeight);
window.addEventListener('resize', setColHeight);
// zoom via ctrl+/- fires resize in most browsers, but also poll as fallback
var _lastW = window.innerWidth, _lastH = window.innerHeight;
setInterval(function() {
if (window.innerWidth !== _lastW || window.innerHeight !== _lastH) {
_lastW = window.innerWidth; _lastH = window.innerHeight;
setColHeight();
}
}, 200);
</script></head><body><header class="front-matter"><h1 class="fm-name">Jane Doe</h1><div class="fm-contact"><span>Springfield, USA</span><span>jane@example.com</span></div></header><main class="columns"><h2 class="sec-heading">Education</h2><div class="education-card" onclick="this.classList.toggle('open')"><div class="edu-header"><span class="edu-degree">Bachelor of Science in Computer Science</span><span class="date-range">Aug 2011 Dec 2016</span></div><div class="edu-meta">The University of Georgia • Athens, GA</div><div class="edu-bullets"><ul><li>Graduated December 2016</li><li>ICPC Participant and Meeting Coordinator</li></ul></div><div class="edu-extras"><ul><li>WUOG 90.5 FM — Radio DJ and Operations Staff Member</li><li>UGA Game Development Club — founding member</li><li>Intramural soccer and volleyball</li></ul></div></div><h2 class="sec-heading">Work Experience</h2><div class="title-card"><div class="title-header"><span class="title-name">Senior Software Engineer</span><span class="date-range">Jun 2022 Present</span></div><div class="title-meta">Acme Corp • Remote</div><div class="title-blurb"><ul><li>Led a team of 4 engineers on the core platform.</li><li>Drove adoption of internal developer tooling.</li><li>Reviewed architecture proposals and mentored junior engineers.</li></ul></div></div><div class="project-card" onclick="this.classList.toggle('open')"><div class="project-header"><span class="project-name">Distributed Config Service</span><span class="date-range">Mar 2023 Present</span></div><div class="project-summary"><ul><li>Built a Raft-based distributed config store used by 40+ services.</li></ul></div><div class="project-details"><ul><li>Designed the consensus layer using a custom Raft implementation in Go.</li><li>Added multi-region replication with conflict-free merge semantics.</li><li>Reduced config propagation time from ~30 s to &lt;500 ms p99.</li></ul></div><ul class="tech-list"><li class="tech-tag">Go</li><li class="tech-tag">Raft</li><li class="tech-tag">gRPC</li><li class="tech-tag">Kubernetes</li><li class="tech-tag">Prometheus</li></ul></div><div class="project-card" onclick="this.classList.toggle('open')"><div class="project-header"><span class="project-name">Developer Portal</span><span class="date-range">Jun 2022 Feb 2023</span></div><div class="project-summary"><ul><li>Unified internal service catalogue and runbook search into one portal.</li></ul></div><div class="project-details"><ul><li>Indexed 300+ services via OpenAPI scraping and custom metadata YAML.</li><li>Built a fuzzy-search backend in Go backed by Bleve.</li><li>Reduced mean time-to-runbook from ~8 min to &lt;30 s.</li></ul></div><ul class="tech-list"><li class="tech-tag">Go</li><li class="tech-tag">Bleve</li><li class="tech-tag">React</li><li class="tech-tag">OpenAPI</li></ul></div><div class="title-card"><div class="title-header"><span class="title-name">Software Engineer II</span><span class="date-range">Jan 2020 May 2022</span></div><div class="title-meta">Acme Corp • Remote</div><div class="title-blurb"><ul><li>Owned the authentication service end-to-end.</li><li>Reduced API latency by 35% through caching improvements.</li></ul></div></div><div class="project-card" onclick="this.classList.toggle('open')"><div class="project-header"><span class="project-name">Auth Service Rewrite</span><span class="date-range">Jan 2020 Dec 2020</span></div><div class="project-summary"><ul><li>Rewrote legacy PHP auth service in Go; cut p99 latency from 800 ms to 40 ms.</li></ul></div><div class="project-details"><ul><li>Migrated 12 M users with zero downtime using a dual-write/dark-read strategy.</li><li>Introduced PKCE OAuth 2.0 flow replacing home-grown session tokens.</li><li>Added comprehensive integration test suite with 92% coverage.</li></ul></div><ul class="tech-list"><li class="tech-tag">Go</li><li class="tech-tag">PostgreSQL</li><li class="tech-tag">Redis</li><li class="tech-tag">OAuth2</li><li class="tech-tag">Docker</li></ul></div><div class="project-card" onclick="this.classList.toggle('ope