Old resume dump

This commit is contained in:
walcutt 2025-05-02 00:08:23 -04:00
parent d31a0e523f
commit f44a6e18c5
10 changed files with 210 additions and 8 deletions

BIN
site/assets/.DS_Store vendored Normal file

Binary file not shown.

87
site/assets/chloe.css Normal file
View File

@ -0,0 +1,87 @@
@font-face {
font-family: selectric;
src: url(/assets/fonts/selectric-light.ttf);
}
@font-face {
font-family: selectric;
src: url(/assets/fonts/selectric-light-italic.ttf);
font-style: italic;
}
@font-face {
font-family: archer;
src: url(/assets/fonts/archer-thin.otf);
}
@font-face {
font-family: archer;
src: url(/assets/fonts/archer-thin-italic.otf);
font-style: italic;
}
@font-face {
font-family: archer;
src: url(/assets/fonts/archer-book.otf);
font-weight: bold;
}
@font-face {
font-family: archer;
src: url(/assets/fonts/archer-book-italic.otf);
font-weight: bold;
font-style: italic;
}
body {
font-family: archer;
}
.container {
width: 600px;
margin: 2em auto;
}
.header {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #000;
}
.header .name {
font-family: selectric;
font-style: italic;
font-size: 4em;
}
.header .contact {
text-align: right;
font-weight: bold;
}
.header, .body {
padding: 0.5em;
}
.section .descriptor {
font-size: 1.5em;
font-weight: bold;
}
.section .block {
margin: 0.5em;
}
.section .block .title {
text-align: right;
font-style: italic;
font-weight: bold;
}
ul {
list-style-type: circle;
}
.proficiencies .block {
display: flex;
flex-direction: row;
justify-content: space-evenly;
}

BIN
site/assets/fonts/.DS_Store vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,17 +1,132 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<!-- favicon --> <title>Chloe Herd</title>
<link rel="icon" href="/favicon.ico" size="any"> <link rel="icon" href="/favicon.ico" size="any">
<link rel="icon" href="/favicon.svg" type="image/svg+xml"> <link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="/assets/chloe.css" type="text/css">
</head> </head>
<body> <body>
<h1> <div class="container">
Chloe Herd <div class="header">
</h1> <div class="name">
<hr /> Chloe Herd
<p> </div>
Still building... <div class="contact">
</p> <div class="method">
Columbus, OH
</div>
<div class="method">
chloe@chloeherd.codes
</div>
<div class="method">
Linkedin
</div>
</div>
</div>
<div class="body">
<div class="section work-experience">
<div class="descriptor">
Work Experience
</div>
<div class="block safelite">
<div class="title">
<span class="years">2023 - Present</span>   Full-Stack Engineer, Safelite, Columbus OH.
</div>
<div class="content">
<ul>
<li>
Implemented new designs for a greenfield rewrite of an e-commerce order form, using <strong>Vue.js</strong> and <strong>.NET</strong>.
</li>
<li>
Worked closely with product owners to quickly pivot development based on feedback and product goals.
</li>
<li>
Ran and updated <strong>Azure DevOps</strong> pipelines, facilitating seamless deployment of applications to multiple environments.
</li>
<li>
Worked in tandem with other teams to build an ecosystem of independent but interconnected business applications.
</li>
</ul>
</div>
</div>
</div>
<div class="section education">
<div class="descriptor">
Education
</div>
<div class="block uva">
<div class="title">
<span class="years">2020</span>  B.S. Computer Science, University of Virginia
</div>
</div>
</div>
<div class="section proficiencies">
<div class="descriptor">
Technologies
</div>
<div class="block languages">
<div class="item">
<span>C#</span>
</div>
<div class="item">
<span>Javascript</span>
</div>
<div class="item">
<span>Typescript</span>
</div>
<div class="item">
<span>Python</span>
</div>
<div class="item">
<span>Java</span>
</div>
<div class="item">
<span>HTML5</span>
</div>
<div class="item">
<span>CSS3</span>
</div>
<div class="item">
<span>C++</span>
</div>
<div class="item">
<span>Bash</span>
</div>
</div>
<div class="block frameworks">
<div class="item">
<span>Vue.js</span>
</div>
<div class="item">
<span>React</span>
</div>
<div class="item">
<span>Vuex</span>
</div>
<div class="item">
<span>Redux</span>
</div>
<div class="item">
<span>Node.js</span>
</div>
<div class="item">
<span>Docker</span>
</div>
<div class="item">
<span>.NET</span>
</div>
<div class="item">
<span>Azure DevOps</span>
</div>
<div class="item">
<span>Git</span>
</div>
</div>
</div>
</div>
</div>
</body> </body>
</html> </html>