322 lines
12 KiB
HTML
322 lines
12 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="Colin Knapp - DevSecOps consultant, cybersecurity expert, and open-source advocate. Explore resumes, project stories, and free tools.">
|
|
<title>Colin Knapp - DevSecOps & Cybersecurity Expert</title>
|
|
<link rel="stylesheet" href="styles.css" integrity="sha256-tLnsiikQm2NSRAs2kbQC0RXVKxDn7vYaJnjcn1K9cFY=">
|
|
<script src="theme.js" integrity="sha256-+dDNTo7WAOmn2YC875+vn9oH4UkMwlVOGlARp2uq3A4="></script>
|
|
<script src="includes.js" integrity="sha256-9xjDTj+I8+VR4H5siP5/kVeCSZ/FLBk/sPCClevm4PE="></script>
|
|
<style>
|
|
.hero {
|
|
text-align: center;
|
|
padding: 3rem 1rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.hero .tagline {
|
|
font-size: 1.3rem;
|
|
color: var(--date-color);
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.cta-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 2rem;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.cta-card {
|
|
background: var(--bg-secondary);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 8px;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
transition: transform 0.2s, box-shadow 0.2s;
|
|
}
|
|
|
|
.cta-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.cta-card h3 {
|
|
margin-top: 0;
|
|
margin-bottom: 1rem;
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
.cta-card p {
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.cta-button {
|
|
display: inline-block;
|
|
padding: 0.75rem 1.5rem;
|
|
background: var(--accent-color);
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 4px;
|
|
font-weight: 500;
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
background: var(--hover-color);
|
|
color: white;
|
|
}
|
|
|
|
.tools-section {
|
|
margin: 3rem 0;
|
|
padding: 2rem;
|
|
background: var(--bg-secondary);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.tools-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 1.5rem;
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
.tool-link {
|
|
display: block;
|
|
padding: 1rem;
|
|
background: var(--bg-primary);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 4px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
color: var(--text-color);
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.tool-link:hover {
|
|
background: var(--bg-hover);
|
|
border-color: var(--accent-color);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.tool-link strong {
|
|
display: block;
|
|
color: var(--accent-color);
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.quick-links {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.quick-link {
|
|
padding: 0.5rem 1rem;
|
|
background: var(--bg-secondary);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 4px;
|
|
text-decoration: none;
|
|
color: var(--accent-color);
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.quick-link:hover {
|
|
background: var(--accent-color);
|
|
color: white;
|
|
border-color: var(--accent-color);
|
|
}
|
|
|
|
.highlight-box {
|
|
background: var(--bg-tertiary);
|
|
border-left: 4px solid var(--accent-color);
|
|
padding: 1.5rem;
|
|
margin: 2rem 0;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.hero h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.hero .tagline {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.cta-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Header Include -->
|
|
<div id="header-include"></div>
|
|
|
|
<div class="container-fluid" role="main" id="main-content">
|
|
<!-- Hero Section -->
|
|
<section class="hero">
|
|
<h1>Colin Knapp</h1>
|
|
<p class="tagline">DevSecOps Consultant | Cybersecurity Expert | Open-Source Advocate</p>
|
|
<p>Architecting secure infrastructure, building powerful tools, and leading teams to success.</p>
|
|
</section>
|
|
|
|
<!-- Call to Action Cards -->
|
|
<section class="cta-grid">
|
|
<div class="cta-card">
|
|
<h3>View Resumes</h3>
|
|
<p>Explore specialized resumes tailored for different roles and industries, from DevSecOps to business development.</p>
|
|
<a href="/resumes/portfolio.html" class="cta-button">Browse Resumes</a>
|
|
</div>
|
|
|
|
<div class="cta-card">
|
|
<h3>Read Project Stories</h3>
|
|
<p>Dive into detailed case studies and stories from real-world projects spanning cybersecurity, infrastructure, and open-source development.</p>
|
|
<a href="/stories/" class="cta-button">Explore Stories</a>
|
|
</div>
|
|
|
|
<div class="cta-card">
|
|
<h3>Get In Touch</h3>
|
|
<p>Interested in consulting services, collaboration opportunities, or have questions? Let's connect.</p>
|
|
<a href="https://motherboardrepair.ca/contact.html" target="_blank" rel="noopener noreferrer" class="cta-button">Contact Me</a>
|
|
</div>
|
|
</section>
|
|
|
|
<hr>
|
|
|
|
<!-- Highlights -->
|
|
<section class="highlights">
|
|
<h2>What I Do</h2>
|
|
<div class="highlight-box">
|
|
<h3>DevSecOps & Infrastructure</h3>
|
|
<p>Leading infrastructure and security projects for government and healthcare clients. Expert in building scalable, compliant systems with WCAG 2.0 AA standards, CIS security benchmarks, and geographically redundant architectures.</p>
|
|
</div>
|
|
|
|
<div class="highlight-box">
|
|
<h3>Open-Source Leadership</h3>
|
|
<p>Co-creator of FastAsyncWorldEdit and PlotSquared, tools that power millions of Minecraft servers worldwide with 10M+ downloads. Former maintainer of OhMyForm with 1.5M+ Docker pulls.</p>
|
|
</div>
|
|
|
|
<div class="highlight-box">
|
|
<h3>Team Leadership & Mentorship</h3>
|
|
<p>Managed distributed teams of 45+ professionals across multiple time zones. Co-founded and scaled Nitric Concepts from zero to $4M+ in revenue through strategic leadership and operational excellence.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<hr>
|
|
|
|
<!-- Resume Options -->
|
|
<section>
|
|
<h2>Specialized Resumes</h2>
|
|
<p>Choose the resume that best fits your needs:</p>
|
|
<div class="quick-links">
|
|
<a href="/resumes/portfolio.html" class="quick-link">Full Portfolio</a>
|
|
<a href="/resumes/devsecops.html" class="quick-link">DevSecOps</a>
|
|
<a href="/resumes/team-leadership.html" class="quick-link">Team Leadership</a>
|
|
<a href="/resumes/business-development.html" class="quick-link">Business Development</a>
|
|
<a href="/resumes/tool-building.html" class="quick-link">Tool Building</a>
|
|
</div>
|
|
</section>
|
|
|
|
<hr>
|
|
|
|
<!-- Free Tools Section -->
|
|
<section class="tools-section">
|
|
<h2>Free Tools & Services</h2>
|
|
<p>Check out these free, privacy-focused tools I've built and maintained:</p>
|
|
|
|
<div class="tools-grid">
|
|
<a href="/one-pager-tools/csv-tool.html" class="tool-link">
|
|
<strong>CSV Tool</strong>
|
|
<span>Process and analyze CSV files directly in your browser</span>
|
|
</a>
|
|
|
|
<a href="/one-pager-tools/utm-tool.html" class="tool-link">
|
|
<strong>UTM Builder</strong>
|
|
<span>Generate campaign tracking URLs with UTM parameters</span>
|
|
</a>
|
|
|
|
<a href="https://md.colinknapp.com" target="_blank" rel="noopener noreferrer" class="tool-link">
|
|
<strong>Markdown Tool</strong>
|
|
<span>Live markdown editor and previewer</span>
|
|
</a>
|
|
|
|
<a href="https://nix.colinknapp.com" target="_blank" rel="noopener noreferrer" class="tool-link">
|
|
<strong>NixOS Validator</strong>
|
|
<span>Validate and test NixOS configurations</span>
|
|
</a>
|
|
|
|
<a href="https://qr.colinknapp.com" target="_blank" rel="noopener noreferrer" class="tool-link">
|
|
<strong>QR Code Tool</strong>
|
|
<span>Generate QR codes instantly</span>
|
|
</a>
|
|
|
|
<a href="https://meet.colinknapp.com" target="_blank" rel="noopener noreferrer" class="tool-link">
|
|
<strong>Meet</strong>
|
|
<span>No-account video meetings without software</span>
|
|
</a>
|
|
</div>
|
|
|
|
<p style="margin-top: 1.5rem; text-align: center; color: var(--date-color);">
|
|
All tools are free, respect your privacy, and require no account creation.
|
|
</p>
|
|
</section>
|
|
|
|
<hr>
|
|
|
|
<!-- Featured Projects -->
|
|
<section>
|
|
<h2>Featured Projects</h2>
|
|
<ul>
|
|
<li>
|
|
<strong><a href="stories/viperwire.html">ViperWire.ca</a></strong> - AI-powered cybersecurity consultancy focused on enterprise-grade security for SMBs
|
|
</li>
|
|
<li>
|
|
<strong><a href="stories/airport-dns.html">Bishop Airport DNS Infrastructure</a></strong> - Geographically redundant, A+ rated DNS cluster for critical government infrastructure
|
|
</li>
|
|
<li>
|
|
<strong><a href="stories/healthcare-platform.html">Healthcare Platform</a></strong> - Secure infrastructure for Improving MI Practices with CIS Level 1 & 2 compliance
|
|
</li>
|
|
<li>
|
|
<strong><a href="stories/fawe-plotsquared.html">FastAsyncWorldEdit & PlotSquared</a></strong> - Revolutionary open-source tools powering the $5B Minecraft ecosystem
|
|
</li>
|
|
<li>
|
|
<strong><a href="stories/nitric-leadership.html">Nitric Concepts</a></strong> - Co-founded and scaled to $4M+ revenue managing 45+ global contractors
|
|
</li>
|
|
</ul>
|
|
<p style="text-align: center; margin-top: 1.5rem;">
|
|
<a href="/stories/" class="cta-button">View All Project Stories</a>
|
|
</p>
|
|
</section>
|
|
|
|
<hr>
|
|
|
|
<!-- Contact Section -->
|
|
<section class="contact-info">
|
|
<h2>Get In Touch</h2>
|
|
<p>
|
|
<strong>Location:</strong> Kitchener-Waterloo, Ontario, Canada<br>
|
|
<strong>Contact:</strong>
|
|
<a href="https://motherboardrepair.ca/contact.html" target="_blank" rel="noopener noreferrer">Contact via MotherboardRepair.ca</a>
|
|
</p>
|
|
<p>
|
|
<em>Note: MotherboardRepair.ca offers a wide range of services and is currently my main focus. Please use the contact form there for all inquiries.</em>
|
|
</p>
|
|
</section>
|
|
</div>
|
|
|
|
<!-- Footer Include -->
|
|
<div id="footer-include"></div>
|
|
</body>
|
|
</html>
|