-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
266 lines (262 loc) · 9.76 KB
/
index.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
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<title>Quinn Zipse - Home</title>
<meta
name="description"
content="Hi, I'm Quinn Zipse, a software engineer from Minnesota. I like Computer Vision, Machine Learning, and Cybersecurity. Come check out my website!"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:title" content="Quinn Zipse" />
<meta property="og:type" content="Software Engineer" />
<meta property="og:url" content="https://quinnzipse.dev" />
<meta property="og:image" content="img/seo_image.png" />
<link rel="manifest" href="site.webmanifest" />
<link rel="apple-touch-icon" href="icon.png" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=Cormorant+Garamond:wght@500&family=Dancing+Script&family=Eczar&family=Montserrat&family=Rubik:wght@300&family=Taviraj:wght@100;200&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.1.1/css/all.css"
integrity="sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ"
crossorigin="anonymous"
/>
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/custom.css" />
<meta name="theme-color" content="#fafafa" />
</head>
<body>
<main>
<div id="main_content">
<div class="vertical-center">
<h1>Hi, I am Quinn Zipse!</h1>
<h2>Software Engineer</h2>
<a href="#portfolio">👷♂️ Portfolio</a>
<a href="#foss">✍ FOSS Contributions</a>
<a href="#footer">📞 Contact Me</a>
</div>
</div>
<h2 class="section-header" id="portfolio">Portfolio</h2>
<section id="portfolio">
<div class="project-card">
<div class="project-body">
<h3>Content-Based Image Cropper</h3>
<span>
<a href="https://github.com/quinnzipse/WebSeamCarver">
<i class="fab fa-github"></i>
</a>
</span>
<br />
<small>
Image Processing Dynamic Programming TypeScript
</small>
<p>
Implemented the seam carving algorithm in Java for an Image
Processing class. Algorithm identifies edges, then finds the
continuous path that crosses the fewest edges in the image, and
finally removes that path from the image. The algorithm is
repeated until the image is the desired size. Works to stretch and
shrink any image asymmetrically.
</p>
<p>
Since the class has ended, I have been working on replicating it
in a web environment using TypeScript and Webpack.
</p>
</div>
<div class="project-img">
<!--Think about making this a carousel in the future.-->
<img src="img/Seamcarving_demo.png" />
</div>
</div>
<div class="project-card">
<div class="project-body">
<h3>Personal Portfolio Website</h3>
<span>
<a href="https://github.com/quinnzipse/Personal-Portfolio-Site">
<i class="fab fa-github"></i>
</a>
</span>
<br />
<small>HTML CSS DevOps</small>
<p>
My personal website is how I learned to code! Through many
iterations over the years, I have always been the sole
contributor! As well as creating the site, I run and maintain it
on my cloud server. This site has taught me so much about the
DevOps workflow and everything that goes into running a website.
</p>
</div>
<div class="project-img">
<!--Think about making this a carousel in the future.-->
<img src="img/PersonalSite_demo.png" />
</div>
</div>
<div class="project-card">
<div class="project-body">
<h3>Color Based Image Search</h3>
<span>
<a
href="https://gist.github.com/quinnzipse/6aee4b7b359778d1c43c0d6fd8ae61f3"
>
<i class="fab fa-github"></i>
</a>
</span>
<br />
<small>Image Processing Color Histograms Java</small>
<p>
Created a Java application that can search a database of images in
seconds to find similar images. Results are displayed as an HTML
file.
</p>
<p>
How it works: The application generates each image's color
histogram and stores it in a database. When querying, the
application simply generates a color histogram for the query image
and compares it to the database.
</p>
</div>
<div class="project-img">
<!--Think about making this a carousel in the future.-->
<img src="img/image_search_demo.png" />
</div>
</div>
<div class="project-card">
<div class="project-body">
<h3>Sky Eye Android App</h3>
<span>
<a href="https://github.com/quinnzipse/SkyEye">
<i class="fab fa-github"></i>
</a>
</span>
<br />
<small>Kotlin Android Development</small>
<p>
Created a native android application to view nearby airplanes and
their flight paths using Android Studio and Kotlin.
<br />
<br />
Features:
</p>
<ul>
<li>See nearby planes</li>
<li>Save planes of interest</li>
<li>Click on plane to see more info</li>
</ul>
</div>
<div class="project-img">
<div
style="display: grid; grid-template-columns: 1fr 1fr; gap: 30px"
>
<!--Think about making this a carousel in the future.-->
<img
style="margin: auto; max-height: 40vh"
src="img/SkyEye_demo.png"
/>
<img
style="margin: auto; max-height: 40vh"
src="img/SkyEye_demo2.png"
/>
</div>
</div>
</div>
<div class="project-card">
<div class="project-body">
<h3>Music Web App</h3>
<span>
<a href="https://github.com/quinnzipse/quinnzipse.dev">
<i class="fab fa-github"></i>
</a>
</span>
<br />
<small>JS CSS WebSockets Cron</small>
<p>
Engineered an application to display my now playing music from
Spotify. Utilizes Cron and WebSockets to periodically update.
Enables users to add songs to my queue and see what others have
added.
</p>
<p>Check it out <a href="https://quinnzipse.dev/music">here</a>!</p>
</div>
<div class="project-img">
<!--Think about making this a carousel in the future.-->
<img src="img/music_demo.png" />
</div>
</div>
</section>
<h2 class="section-header">FOSS Contributions</h2>
<section id="foss">
<div class="foss-card">
<div class="foss-header">
<h3>PHPMyAdmin - PR #16899</h3>
<span>
<a href="https://github.com/phpmyadmin/phpmyadmin/pull/16899">
<i class="fab fa-github"></i>
</a>
</span>
<br />
<small>PHP U2F Yubico JavaScript</small>
</div>
<div class="foss-body">
<p>
Updated the U2F (Universal 2nd Factor) error codes in PHPMyAdmin
to follow the Yubico specification.
</p>
</div>
</div>
</section>
<section id="footer">
<div>
<ul>
<li><a href="#">Back to Top</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#foss">FOSS Contributions</a></li>
</ul>
<p id="copyright">© 2021 Quinn Zipse</p>
</div>
<div></div>
<div id="contact-content">
<h3 id="connect-header">Connect Online!</h2>
<a href="https://instagram.com/quinn.zipse"
><i class="fab fa-instagram"></i
></a>
<a href="https://facebook.com/quinnzipse"
><i class="fab fa-facebook-f"></i
></a>
<a href="https://linkedin.com/in/quinnzipse"
><i class="fab fa-linkedin-in"></i
></a>
<a href="https://github.com/quinnzipse">
<i class="fab fa-github"></i>
</a>
<a href="https://twitter.com/quinnzipse">
<i class="fab fa-twitter"></i>
</a>
<a href="mailto:[email protected]">
<i class="far fa-envelope"></i>
</a>
</div>
</section>
<div style="display: none">
Quinn Zipse
<h1>Quinn Zipse</h1>
<h1>Software Engineer</h1>
<h2>Quinn Zipse</h2>
<h2>Security Engineer</h2>
<h3>Quinn Zipse</h3>
<h3>Computer Vision</h3>
<h4>Quinn Zipse</h4>
<h5>Machine Learning</h5>
<h6>Quinn Zipse</h6>
<h6>Data Science</h6>
<small>Quinn Zipse</small>
<p>Quinn Zipse</p>
<span>Quinn Zipse</span>
</div>
</main>
<script src="js/main.js"></script>
</body>
</html>