Bootstrapped the site from scratch following a data loss event. Set up a simple HTML/CSS page served from nginx. Added a navbar with the index page anchored in the top-left, a blog page link, and a link to the Forgejo instance. Added contact info and a genealogy blurb to the index page. Added an example resume page linked from the navbar.
122 lines
4.9 KiB
HTML
122 lines
4.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Resume - WWW</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<!--#include virtual="/includes/navbar.html" -->
|
|
|
|
<main class="container">
|
|
<section class="hero">
|
|
<h1>Resume</h1>
|
|
<p>Professional Experience & Skills</p>
|
|
</section>
|
|
|
|
<section class="content-section">
|
|
<h2>Summary</h2>
|
|
<p>Experienced software engineer with expertise in systems engineering, cloud infrastructure, and full-stack development. Passionate about building reliable, scalable solutions using modern technologies.</p>
|
|
</section>
|
|
|
|
<section class="content-section">
|
|
<h2>Technical Skills</h2>
|
|
<div class="skills-grid">
|
|
<div class="skill-category">
|
|
<h3>Languages</h3>
|
|
<ul>
|
|
<li>Rust</li>
|
|
<li>Python</li>
|
|
<li>Go</li>
|
|
<li>JavaScript/TypeScript</li>
|
|
<li>HTML/CSS</li>
|
|
</ul>
|
|
</div>
|
|
<div class="skill-category">
|
|
<h3>Systems & Infrastructure</h3>
|
|
<ul>
|
|
<li>Linux/NixOS</li>
|
|
<li>Docker</li>
|
|
<li>Nginx</li>
|
|
<li>Git</li>
|
|
<li>CI/CD</li>
|
|
</ul>
|
|
</div>
|
|
<div class="skill-category">
|
|
<h3>Frameworks & Tools</h3>
|
|
<ul>
|
|
<li>Rocket (Rust)</li>
|
|
<li>React</li>
|
|
<li>Node.js</li>
|
|
<li>PostgreSQL</li>
|
|
<li>RESTful APIs</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="content-section">
|
|
<h2>Professional Experience</h2>
|
|
|
|
<div class="experience-item">
|
|
<h3>Software Engineer</h3>
|
|
<p class="job-meta">Example Company • 2020 - Present</p>
|
|
<ul>
|
|
<li>Designed and implemented scalable backend services using Rust and Python</li>
|
|
<li>Managed infrastructure using NixOS and containerization technologies</li>
|
|
<li>Built and maintained CI/CD pipelines for automated testing and deployment</li>
|
|
<li>Collaborated with cross-functional teams to deliver high-quality software solutions</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="experience-item">
|
|
<h3>Systems Administrator</h3>
|
|
<p class="job-meta">Previous Company • 2018 - 2020</p>
|
|
<ul>
|
|
<li>Maintained Linux-based server infrastructure and monitoring systems</li>
|
|
<li>Automated routine tasks using shell scripting and Python</li>
|
|
<li>Implemented security best practices and access control policies</li>
|
|
<li>Provided technical support and documentation for development teams</li>
|
|
</ul>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="content-section">
|
|
<h2>Education</h2>
|
|
<div class="experience-item">
|
|
<h3>Bachelor of Science in Computer Science</h3>
|
|
<p class="job-meta">University Name • 2014 - 2018</p>
|
|
<p>Focus on software engineering, algorithms, and systems programming.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="content-section">
|
|
<h2>Projects</h2>
|
|
<div class="experience-item">
|
|
<h3>Self-Hosted Infrastructure</h3>
|
|
<p>Designed and deployed a complete self-hosted solution including:</p>
|
|
<ul>
|
|
<li>Git hosting with Forgejo</li>
|
|
<li>Web server with Nginx and SSL/TLS</li>
|
|
<li>Calendar and contacts sync with Radicale</li>
|
|
<li>Declarative configuration management with NixOS</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="experience-item">
|
|
<h3>Personal Website & Blog</h3>
|
|
<p>Built a simple, reliable website using primitive technologies (HTML/CSS) focused on performance and maintainability.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="content-section">
|
|
<h2>Contact</h2>
|
|
<p><strong>Email:</strong> example@example.com</p>
|
|
<p><strong>GitHub:</strong> <a href="https://forgejo.binning.net" target="_blank">forgejo.binning.net</a></p>
|
|
</section>
|
|
</main>
|
|
|
|
<!--#include virtual="/includes/footer.html" -->
|
|
</body>
|
|
</html>
|