Add resume pdf & html

This commit is contained in:
2025-06-12 15:09:24 -07:00
parent 37c242380a
commit 989107517a
10 changed files with 298 additions and 53 deletions

22
lab-resume/LAB-REPORT.md Normal file
View File

@ -0,0 +1,22 @@
# [daphodell]
- [git](https://code.wizards.cafe)
### Projects
- Placeholder
## Skills
- Cloud Platforms & Security: AWS (IAM)
- Infrastructure as Code: Terraform, CloudFormation
- Programming and Scripting: JavaScript, Bash, Go
- DevOps & Automation: CI/CD Pipelines (GitHub Actions, Gitlab, Gitea Actions), Docker
## Professional Experience
### Senior Software Engineer
[Company A], 2025
- Automated data pipeline to ingest and transform data from unstructured municipal websites
- Leveraged LLMs to parse and normalize data
- Improved update frequency and data accuracy via integration and baseline testing.
### Senior Software Engineer
[Company B], 2022-2024
- Placeholder text

BIN
lab-resume/LAB-REPORT.pdf Normal file

Binary file not shown.

157
lab-resume/index.html Normal file
View File

@ -0,0 +1,157 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>daphodell Resume</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
/* LaTeX-like styling */
body {
font-family: 'Computer Modern', 'Latin Modern Roman', 'Times New Roman', Times, serif;
background: #f9f9f9;
color: #222;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 40px auto;
background: #fff;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
padding: 40px 48px;
border-radius: 8px;
position: relative;
}
h1, h2, h3 {
font-family: 'Latin Modern Roman', 'Computer Modern', 'Times New Roman', Times, serif;
font-weight: normal;
margin-top: 1.5em;
margin-bottom: 0.5em;
}
h1 {
font-size: 2.2em;
border-bottom: 2px solid #222;
padding-bottom: 0.2em;
margin-bottom: 1em;
letter-spacing: 0.02em;
}
h2 {
font-size: 1.3em;
color: #333;
margin-top: 1.5em;
border-bottom: 1px solid #bbb;
padding-bottom: 0.1em;
}
h3 {
font-size: 1.1em;
color: #444;
margin-top: 1em;
margin-bottom: 0.2em;
}
ul {
margin-top: 0.2em;
margin-bottom: 1em;
padding-left: 1.2em;
}
li {
margin-bottom: 0.3em;
}
.section {
margin-bottom: 2em;
}
.job-title {
font-weight: bold;
font-size: 1.05em;
}
.job-company {
font-style: italic;
color: #555;
margin-left: 0.5em;
}
.job-dates {
float: right;
color: #888;
font-size: 0.95em;
}
.header-links {
position: absolute;
right: 48px;
top: 48px;
font-size: 0.92em;
opacity: 0.7;
}
.header-links a {
color: #888;
text-decoration: none;
margin-left: 0;
font-size: 1em;
padding: 0;
background: none;
border: none;
border-radius: 0;
transition: color 0.2s;
}
.header-links a:hover {
color: #0072b1;
background: none;
border: none;
}
@media (max-width: 600px) {
.container { padding: 16px 6vw; }
.job-dates { float: none; display: block; margin-top: 0.2em; }
.header-links {
position: static;
display: block;
margin-top: 0.5em;
right: auto;
top: auto;
text-align: right;
}
}
</style>
</head>
<body>
<div class="container">
<h1 style="margin-bottom:0.5em;">
daphodell
</h1>
<span class="header-links">
<a href="https://code.wizards.cafe" title="Git profile" target="_blank" rel="noopener">
git
</a>
</span>
<div class="section">
<h2>Skills</h2>
<ul>
<li>Cloud Platforms &amp; Security: AWS (IAM)</li>
<li>Infrastructure as Code: Terraform, CloudFormation</li>
<li>Programming and Scripting: JavaScript, Bash, Go</li>
<li>DevOps &amp; Automation: CI/CD Pipelines (GitHub Actions, Gitlab, Gitea Actions), Docker</li>
</ul>
</div>
<div class="section">
<h2>Professional Experience</h2>
<div>
<span class="job-title">Senior Software Engineer</span>
<span class="job-company">[Company A]</span>
<span class="job-dates">2025</span>
<ul>
<li>Automated data pipeline to ingest and transform data from unstructured municipal websites</li>
<li>Leveraged LLMs to parse and normalize data</li>
<li>Improved update frequency and data accuracy via integration and baseline testing.</li>
</ul>
</div>
<div>
<span class="job-title">Senior Software Engineer</span>
<span class="job-company">[Company B]</span>
<span class="job-dates">2022-2024</span>
<ul>
<li>Placeholder text</li>
</ul>
</div>
</div>
</div>
</body>
</html>