-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
161 lines (141 loc) · 5.6 KB
/
experience.html
File metadata and controls
161 lines (141 loc) · 5.6 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Nicholas Laviano | Portfolio</title>
<link rel="icon" href="icons/favicon.svg" type="image/svg" />
<link rel="stylesheet" href="assets/css/styles.css" />
<script defer src="assets/js/main.js"></script>
</head>
<body>
<a class="skip-link" href="#main">Skip to content</a>
<header class="site-header">
<div class="container header-inner">
<a class="brand" href="index.html">Nicholas Laviano</a>
<nav class="site-nav" aria-label="Primary">
<a href="index.html">Home</a>
<a href="projects.html">Projects</a>
<a href="experience.html">Experience + Skills</a>
<a href="contact.html">Contact</a>
</nav>
<button class="nav-toggle" type="button" aria-expanded="false" aria-controls="mobileNav">
<span class="sr-only">Menu</span>
<span class="burger" aria-hidden="true"></span>
</button>
<button class="theme-toggle" type="button" aria-pressed="false" aria-label="Toggle light mode" >
Light
</button>
</div>
<nav id="mobileNav" class="mobile-nav" aria-label="Mobile Primary">
<a href="index.html">Home</a>
<a href="projects.html">Projects</a>
<a href="experience.html">Experience + Skills</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main id="main">
<header class="page-head">
<div class="container">
<h1>Experience + Skills</h1>
<p>A showcase of where I have worked, what I have built, and the tools I use.</p>
</div>
</header>
<section class="section-tight">
<div class="container">
<div class="grid highlights">
<div class="card">
<h3>Focus</h3>
<p>Software engineering with an emphasis on testing and maintainable design.</p>
</div>
<div class="card">
<h3>Strengths</h3>
<p>Refactoring, unit testing, teamwork, and clear technical communication.</p>
</div>
<div class="card">
<h3>Seeking</h3>
<p>Positions in software development, QA, or security-minded engineering.</p>
</div>
</div>
<div class="grid-2">
<div class="card">
<h2 class="card-title">Experience</h2>
<div class="stack">
<div class="stack">
<div class="item">
<h3>Website Designer</h3>
<p class="muted">Zone Aviation | 2025 – Present</p>
<ul>
<li>Coordinated directly with the client to gather requirements and update website content.</li>
<li>Added SSL and managed backend updates</li>
<li>Created backups and tested changes locally before deploying to the live site.</li>
<li>Fixed broken links, replaced outdated images, and improved site navigation.</li>
</ul>
</div>
<div class="item">
<h3>Certified Trainer</h3>
<p class="muted">Chipotle | 2022 – Present</p>
<ul>
<li>Train new employees on procedures and quality standards in a fast-paced environment.</li>
<li>Practice communication, teamwork, and reliability while balancing college coursework.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="card">
<h2 class="card-title">Education</h2>
<p class="muted"><strong>Bowling Green State University</strong></p>
<p class="muted">B.S. Software Engineering | Expected 2026</p>
<p class="muted">GPA: 3.72</p>
<hr class="divider" />
<h2 class="card-title">Skills</h2>
<h3>Languages</h3>
<div class="tags">
<span class="tag">C++</span>
<span class="tag">C</span>
<span class="tag">Java</span>
<span class="tag">JavaScript</span>
<span class="tag">HTML/CSS</span>
<span class="tag">SQL</span>
<span class="tag">Python</span>
</div>
<h3>Testing + Quality</h3>
<div class="tags">
<span class="tag">JUnit</span>
<span class="tag">Pytest</span>
<span class="tag">Refactoring</span>
<span class="tag">CI</span>
</div>
<h3>Tools</h3>
<div class="tags">
<span class="tag">Git</span>
<span class="tag">Maven</span>
<span class="tag">CMake</span>
<span class="tag">Github</span>
<span class="tag">Gitlab</span>
<span class="tag">OMNeT++</span>
</div>
<h3>Concepts</h3>
<div class="tags">
<span class="tag">OOP</span>
<span class="tag">SOLID</span>
<span class="tag">UML</span>
<span class="tag">Cohesion/Coupling</span>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container footer-inner">
<p>© <span id="year"></span> Nicholas Laviano</p>
<div class="footer-links">
<a href="https://github.com/Nicklavi11" target="_blank" rel="noreferrer">GitHub</a>
<a href="https://www.linkedin.com/in/nicholas-laviano/" target="_blank" rel="noreferrer">LinkedIn</a>
</div>
</div>
</footer>
</body>
</html>