add work experience section
Build and Push Container / build-and-push (push) Successful in 23s

This commit is contained in:
2026-05-28 09:18:58 -04:00
parent f62b530277
commit 2c6cd1c45b
3 changed files with 247 additions and 4 deletions
+71
View File
@@ -17,6 +17,7 @@
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#gpg">GPG</a></li>
</ul>
<button class="hamburger" id="hamburger" aria-label="Toggle menu">
<span></span><span></span><span></span>
@@ -98,6 +99,76 @@
</div>
</section>
<!-- Experience -->
<section id="experience">
<p class="section-label fade-in">Experience</p>
<h2 class="section-title fade-in">Where I've worked</h2>
<div class="timeline">
<div class="timeline-item fade-in">
<div class="timeline-marker"></div>
<div class="timeline-content">
<div class="timeline-header">
<h3>DevOps Manager</h3>
<span class="timeline-company">Nimbis Services</span>
</div>
<span class="timeline-date">Jan 2022 Present</span>
<ul class="timeline-list">
<li>Lead a high-performing DevOps team building microelectronics design services and integrating cloud partner architectures with AWS.</li>
<li>Recruited and led an engineering team to deliver a machine learning platform in &lt;1 year, utilizing Langchain, PyTorch, and BERT to identify government contract patterns.</li>
<li>Reduced new feature QA latency from one week to under 24 hours by containerizing complex infrastructure and developing a custom CLI sandbox.</li>
<li>Led modernization of legacy Django systems using Pydantic, Vue 3, and DRF within strict Authority to Operate boundaries.</li>
<li>Resolved critical SSSD bugs in collaboration with Red Hat and AWS regarding remote authentication protocols via smart cards.</li>
<li>Developed management frameworks that enabled identification of "shadow teams," leading to three successful organizational restructures.</li>
</ul>
</div>
</div>
<div class="timeline-item fade-in">
<div class="timeline-marker"></div>
<div class="timeline-content">
<div class="timeline-header">
<h3>DevSecOps Senior Engineer</h3>
<span class="timeline-company">Nimbis Services</span>
</div>
<span class="timeline-date">Mar 2021 Jan 2022</span>
<ul class="timeline-list">
<li>Engineered a novel version control system using Python for efficient S3 object retrieval, enforcing malware scanning (ClamAV), data signing/chain of custody, and large binary file branching.</li>
<li>Built an integrated SPA interface in Vue 3 with TypeScript/Vuetify to interact with the proprietary version control system.</li>
<li>Utilized Terraform to define and deploy compliant, scalable cloud environments for DoD Impact Level 5+ high-security requirements.</li>
</ul>
</div>
</div>
<div class="timeline-item fade-in">
<div class="timeline-marker"></div>
<div class="timeline-content">
<div class="timeline-header">
<h3>DevOps Engineer</h3>
<span class="timeline-company">Nimbis Services</span>
</div>
<span class="timeline-date">Jan 2020 Jan 2021</span>
<ul class="timeline-list">
<li>Implemented asynchronous malware scanning pipelines using AWS Lambda (containerized) to process and secure files uploaded by engineering teams in real time via ClamAV.</li>
<li>Achieved significant reduction in file management upload overhead through multi-threading, custom indexing solutions, and mtime validation.</li>
</ul>
</div>
</div>
<div class="timeline-item fade-in">
<div class="timeline-marker"></div>
<div class="timeline-content">
<div class="timeline-header">
<h3>Specialist, Information Risk Management</h3>
<span class="timeline-company">Nationwide</span>
</div>
<span class="timeline-date">May 2018 Dec 2020</span>
<ul class="timeline-list">
<li>Developed a web application leveraging BFG Repo-Cleaner to scan/remediate secrets in internal Git repositories; prevented an estimated $500k+ in auditing fines.</li>
<li>Modified "PrivacyScanner" tools to detect and alert on leaked PII data within log aggregators, preventing unauthorized exposure of sensitive user information.</li>
<li>Engineered a Django web platform that automated third-party assessment processes; reduced cycle time from weeks to days through strict field validation.</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Skills -->
<div class="skills-section" id="skills">
<div class="skills-inner">
+10
View File
@@ -4,15 +4,25 @@ const navLinks = document.getElementById('navLinks');
hamburger.addEventListener('click', () => {
navLinks.classList.toggle('active');
hamburger.classList.toggle('active');
});
// Close menu on link click
navLinks.querySelectorAll('a').forEach(link => {
link.addEventListener('click', () => {
navLinks.classList.remove('active');
hamburger.classList.remove('active');
});
});
// Close menu when clicking outside
document.addEventListener('click', (e) => {
if (!navLinks.contains(e.target) && !hamburger.contains(e.target)) {
navLinks.classList.remove('active');
hamburger.classList.remove('active');
}
});
// Scroll animations
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
+166 -4
View File
@@ -392,6 +392,111 @@ section {
margin-top: 0.25rem;
}
/* Experience Timeline */
.timeline {
position: relative;
padding-left: 2rem;
margin-top: 2rem;
}
.timeline::before {
content: '';
position: absolute;
left: 7px;
top: 8px;
bottom: 8px;
width: 2px;
background: var(--border);
border-radius: 1px;
}
.timeline-item {
position: relative;
padding-bottom: 2.5rem;
}
.timeline-item:last-child {
padding-bottom: 0;
}
.timeline-marker {
position: absolute;
left: -2rem;
top: 6px;
width: 16px;
height: 16px;
border-radius: 50%;
background: var(--bg-primary);
border: 2px solid var(--accent);
z-index: 1;
}
.timeline-content {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 1.5rem;
transition: all 0.3s ease;
}
.timeline-content:hover {
border-color: rgba(234, 179, 8, 0.3);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.timeline-header {
display: flex;
align-items: baseline;
gap: 0.75rem;
margin-bottom: 0.25rem;
flex-wrap: wrap;
}
.timeline-header h3 {
font-size: 1.1rem;
font-weight: 700;
}
.timeline-company {
color: var(--accent);
font-weight: 600;
font-size: 0.9rem;
}
.timeline-date {
display: inline-block;
font-size: 0.8rem;
color: var(--text-muted);
margin-bottom: 1rem;
font-weight: 500;
}
.timeline-list {
list-style: none;
padding: 0;
}
.timeline-list li {
color: var(--text-secondary);
font-size: 0.875rem;
line-height: 1.6;
padding-left: 1rem;
position: relative;
margin-bottom: 0.5rem;
}
.timeline-list li::before {
content: '';
position: absolute;
left: 0;
top: 0.55rem;
width: 5px;
height: 5px;
border-radius: 50%;
background: var(--accent);
opacity: 0.6;
}
/* Skills */
.skills-section {
background: var(--bg-secondary);
@@ -656,7 +761,7 @@ section {
.gpg-keys-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(480px, 100%), 1fr));
gap: 1.5rem;
margin-top: 2rem;
text-align: left;
@@ -668,6 +773,7 @@ section {
border-radius: 16px;
padding: 1.5rem;
transition: all 0.3s ease;
overflow-x: auto;
}
.gpg-key-card:hover {
@@ -750,6 +856,8 @@ section {
line-height: 1.5;
color: var(--text-secondary);
white-space: pre;
display: block;
min-width: max-content;
}
/* Footer */
@@ -781,7 +889,7 @@ footer p {
/* Responsive */
@media (max-width: 768px) {
.nav-links {
display: none;
visibility: hidden;
position: absolute;
top: 100%;
left: 0;
@@ -791,21 +899,52 @@ footer p {
background: rgba(10, 10, 11, 0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border);
padding: 1rem 2rem;
padding: 0 2rem;
overflow: hidden;
max-height: 0;
transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}
.nav-links.active {
display: flex;
visibility: visible;
max-height: 500px;
padding: 1rem 2rem;
}
.nav-links li {
padding: 0.75rem 0;
opacity: 0;
transform: translateY(-10px);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-links.active li {
opacity: 1;
transform: translateY(0);
}
.nav-links.active li:nth-child(1) { transition-delay: 0.05s; }
.nav-links.active li:nth-child(2) { transition-delay: 0.1s; }
.nav-links.active li:nth-child(3) { transition-delay: 0.15s; }
.nav-links.active li:nth-child(4) { transition-delay: 0.2s; }
.nav-links.active li:nth-child(5) { transition-delay: 0.25s; }
.hamburger {
display: flex;
}
.hamburger.active span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
opacity: 0;
}
.hamburger.active span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
.about-grid {
grid-template-columns: 1fr;
gap: 2.5rem;
@@ -848,6 +987,29 @@ footer p {
.gpg-key-block code {
font-size: 0.6rem;
}
.timeline {
padding-left: 1.5rem;
}
.timeline::before {
left: 5px;
}
.timeline-marker {
left: -1.5rem;
width: 12px;
height: 12px;
}
.timeline-content {
padding: 1.25rem;
}
.timeline-header {
flex-direction: column;
gap: 0.25rem;
}
}
@media (max-width: 480px) {