This commit is contained in:
@@ -17,6 +17,7 @@
|
|||||||
<li><a href="#skills">Skills</a></li>
|
<li><a href="#skills">Skills</a></li>
|
||||||
<li><a href="#projects">Projects</a></li>
|
<li><a href="#projects">Projects</a></li>
|
||||||
<li><a href="#contact">Contact</a></li>
|
<li><a href="#contact">Contact</a></li>
|
||||||
|
<li><a href="#gpg">GPG</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<button class="hamburger" id="hamburger" aria-label="Toggle menu">
|
<button class="hamburger" id="hamburger" aria-label="Toggle menu">
|
||||||
<span></span><span></span><span></span>
|
<span></span><span></span><span></span>
|
||||||
@@ -98,6 +99,76 @@
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</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 <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 -->
|
<!-- Skills -->
|
||||||
<div class="skills-section" id="skills">
|
<div class="skills-section" id="skills">
|
||||||
<div class="skills-inner">
|
<div class="skills-inner">
|
||||||
|
|||||||
@@ -4,15 +4,25 @@ const navLinks = document.getElementById('navLinks');
|
|||||||
|
|
||||||
hamburger.addEventListener('click', () => {
|
hamburger.addEventListener('click', () => {
|
||||||
navLinks.classList.toggle('active');
|
navLinks.classList.toggle('active');
|
||||||
|
hamburger.classList.toggle('active');
|
||||||
});
|
});
|
||||||
|
|
||||||
// Close menu on link click
|
// Close menu on link click
|
||||||
navLinks.querySelectorAll('a').forEach(link => {
|
navLinks.querySelectorAll('a').forEach(link => {
|
||||||
link.addEventListener('click', () => {
|
link.addEventListener('click', () => {
|
||||||
navLinks.classList.remove('active');
|
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
|
// Scroll animations
|
||||||
const observer = new IntersectionObserver((entries) => {
|
const observer = new IntersectionObserver((entries) => {
|
||||||
entries.forEach(entry => {
|
entries.forEach(entry => {
|
||||||
|
|||||||
+166
-4
@@ -392,6 +392,111 @@ section {
|
|||||||
margin-top: 0.25rem;
|
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 */
|
||||||
.skills-section {
|
.skills-section {
|
||||||
background: var(--bg-secondary);
|
background: var(--bg-secondary);
|
||||||
@@ -656,7 +761,7 @@ section {
|
|||||||
|
|
||||||
.gpg-keys-grid {
|
.gpg-keys-grid {
|
||||||
display: 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;
|
gap: 1.5rem;
|
||||||
margin-top: 2rem;
|
margin-top: 2rem;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
@@ -668,6 +773,7 @@ section {
|
|||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gpg-key-card:hover {
|
.gpg-key-card:hover {
|
||||||
@@ -750,6 +856,8 @@ section {
|
|||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
color: var(--text-secondary);
|
color: var(--text-secondary);
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
|
display: block;
|
||||||
|
min-width: max-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Footer */
|
/* Footer */
|
||||||
@@ -781,7 +889,7 @@ footer p {
|
|||||||
/* Responsive */
|
/* Responsive */
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.nav-links {
|
.nav-links {
|
||||||
display: none;
|
visibility: hidden;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 100%;
|
top: 100%;
|
||||||
left: 0;
|
left: 0;
|
||||||
@@ -791,21 +899,52 @@ footer p {
|
|||||||
background: rgba(10, 10, 11, 0.95);
|
background: rgba(10, 10, 11, 0.95);
|
||||||
backdrop-filter: blur(20px);
|
backdrop-filter: blur(20px);
|
||||||
border-bottom: 1px solid var(--border);
|
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 {
|
.nav-links.active {
|
||||||
display: flex;
|
visibility: visible;
|
||||||
|
max-height: 500px;
|
||||||
|
padding: 1rem 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-links li {
|
.nav-links li {
|
||||||
padding: 0.75rem 0;
|
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 {
|
.hamburger {
|
||||||
display: flex;
|
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 {
|
.about-grid {
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
gap: 2.5rem;
|
gap: 2.5rem;
|
||||||
@@ -848,6 +987,29 @@ footer p {
|
|||||||
.gpg-key-block code {
|
.gpg-key-block code {
|
||||||
font-size: 0.6rem;
|
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) {
|
@media (max-width: 480px) {
|
||||||
|
|||||||
Reference in New Issue
Block a user