-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork-experience.html
101 lines (93 loc) · 5.35 KB
/
work-experience.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Helene Willits - Work Experience</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' href='css/styles.css'>
<link rel='icon' href='images/favicon.ico'>
<script src='main.js'></script>
<style>
.internship{
background-size: cover;
}
.text-area{
width: 50%;
margin: auto;
background-color: rgba(255, 255, 255, 0.904);
padding: 100px;
}
</style>
</head>
<body>
<!-- navigation bar -->
<table class="navbar" width="100%">
<tr>
<td>
<h2>Helene Willits</h2>
</td>
<td>
<ul class="navigation-bar">
<li class="nav-bar-item"><button class="nav-button" onclick="window.location.href='index.html'">Home</button></li>
<li class="nav-bar-item"><button class="nav-button" onclick="window.location.href='about-me.html'">About Me</button></li>
<li class="nav-bar-item"><button class="nav-button" onclick="window.location.href='resume.html'">Resume</button></li>
<li class="nav-bar-item"><button class="nav-button" onclick="window.location.href='portfolio.html'">Portfolio</button></li>
<li class="nav-bar-item"><button class="nav-button" onclick="window.location.href='work-experience.html'">Work Experience</button></li>
</ul>
</td>
</tr>
</table>
<br><br><br><br><br><br>
<br><br>
<h1>Work Experience</h1>
<br><hr><br><br><br>
<div class="internship" style="background-image: url('images/aws_1.jpeg');">
<div class="text-area">
<h1>Software Development Engineer Intern</h1>
<h3>AWS, Summer 2022</h3>
<p>I delivered a code coverage feature for developer tools that was later moved into production. The project
largely consisted of understanding the existing code base, using data transformation to extend the current
code coverage tools, and testing my work.</p>
<p>I acted quickly to handle problems before they grew, worked iteratively, learned from team expertise,
supported team efforts, and reinforced the methods taught by Amazon learning programs. I earned a full
time return offer from this team.</p>
</div>
</div>
<br><br>
<div class="internship" style="background-image: url('images/aws_1.jpeg');">
<div class="text-area">
<h1>Amazon Propel Program Intern</h1>
<h3>AWS, Summer 2021</h3>
<p>The Amazon Propel Program is designed to elevate opportunities for underrepresented groups in tech.
I began my internship with a four week software bootcamp. My performance earned me a Summa Cum Laude
and Magna Cum Laude award from the Seattle chapter. Then I had eight weeks to design and build a
regression analysis tool that compared the performance of Amazon Lex machine learning models. The tool
was later put into production and is still used by the team.</p>
<h4>Awards</h4>
<h5>APP Summa Cum Laude</h5>
<p>This award is presented to Amazon Propel Program Interns who graduate APP Boot Camp with distinguished
honors and exemplify all of Amazon's Leadership Principle. Individuals who receive this award are selected
by The APP Program Team.</p>
<h5>APP Magna Cum Laude</h5>
<p>This Award is presented to Amazon Propel Program Interns who graduate APP Boot Camp with honors and
exemplify an Amazon Leadership Principle. I received this award for exemplifying the Amazon Leadership
Principle of Ownership.</p>
</div>
</div>
<br><br>
<div class="internship" style="background-image: url('images/hvac.jpg');">
<div class="text-area">
<h1>HVAC&R Building Controls Intern</h1>
<h3>ACCO Engineered Systems, Summer 2019</h3>
<p>As a building controls intern, I documented network structures for automated building equipment on more than
30 commercial projects so that HVAC systems could be monitored and managed remotely. I also programmed the logic and user interface
for each type of equipment on 3 major projects using ACCO company standards.</p>
<p>Alongside my work on controls, I worked on various mechanical systems. I helped to design mechanical room layouts and performed
water tank sizings, load calculations, and valve sizings. I also participated in several jobsite visits, where I encountered
mechanical systems firsthand.</p>
<p>Programs Used: AutoCAD, Visio, SiteBuilder</p>
</div>
</div>
<br><br><hr><br><br><br>
</body>
</html>