-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·536 lines (483 loc) · 27 KB
/
index.html
File metadata and controls
executable file
·536 lines (483 loc) · 27 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
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Preston Winstead's personal website">
<meta name="author" content="Preston Winstead">
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
<title>J Preston Winstead</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:100,200,300,400,500,600,700,800,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="vendor/devicons/css/devicons.min.css" rel="stylesheet">
<link href="vendor/simple-line-icons/css/simple-line-icons.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/resume.min.css" rel="stylesheet">
<link rel="icon" type="image/png" href="./img/favicon.ico">
</head>
<body id="page-top">
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top" id="sideNav">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-none d-lg-block">
<img class="img-fluid img-profile rounded-circle mx-auto mb-2" src="img/IMG_4185.JPG" alt="">
</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#experience">Experience</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#projects">Projects</a>
</li> -->
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#education">Education</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#interests">Interests</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#media">Media & Publications</a>
</li> -->
</ul>
</div>
</nav>
<div class="container-fluid p-0">
<section class="resume-section p-3 p-lg-5 d-flex d-column" id="about">
<div class="my-auto">
<h1 class="mb-0">J Preston
<span class="text-primary">Winstead</span>
</h1>
<div class="subheading mb-5">Chicago, IL · +1 (479) 221-3852 ·
<a href="mailto:name@email.com">prestonwinstead@me.com</a>
</div>
<p class="mb-5">I am a full stack software engineer specializing in JavaScript and Ruby. I'm passionate about designing software that is fast, beautiful, and easy for the user, and about building learning cultures in engineering teams.</p>
<ul class="list-inline list-social-icons mb-0">
<li class="list-inline-item">
<a href="http://www.linkedin.com/in/preston-winstead" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="http://www.github.com/prestonwinstead" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<!-- <li class="list-inline-item">
<a href="http://www.medium.com/@prestonwinstead" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-medium fa-stack-1x fa-inverse"></i>
</span>
</a>
</li> -->
</ul>
</div>
</section>
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="skills">
<div class="my-auto">
<h2 class="mb-5">Skills</h2>
<div class="subheading mb-3">Programming Languages & Tools</div>
<ul class="list-inline list-icons">
<li class="list-inline-item">
<i class="devicons devicons-javascript"></i>
<p class="icon-text">JavaScript</p>
</li>
<li class="list-inline-item">
<i class="devicons devicons-ruby"></i>
<p class="icon-text">Ruby</p>
</li>
<li class="list-inline-item">
<i class="devicons devicons-ruby_on_rails"></i>
<p class="icon-text">Ruby on Rails</p>
</li>
<li class="list-inline-item">
<i class="devicons devicons-html5"></i>
<p class="icon-text">HTML5</p>
</li>
<li class="list-inline-item">
<i class="devicons devicons-css3"></i>
<p class="icon-text">CSS3</p>
</li>
<li class="list-inline-item">
<i class="devicons devicons-react"></i>
<p class="icon-text">React</p>
</li>
<li class="list-inline-item">
<i class="devicons devicons-github"></i>
<p class="icon-text">Github</p>
</li>
<li class="list-inline-item">
<i class="devicons devicons-jquery"></i>
<p class="icon-text">JQuery</p>
</li>
<li class="list-inline-item">
<i class="devicons devicons-postgresql"></i>
<p class="icon-text">PostgreSQL</p>
</li>
<li class="list-inline-item">
<i class="devicons devicons-nodejs"></i>
<p class="icon-text">NodeJS</p>
</li>
<li class="list-inline-item">
<i class="devicons devicons-visualstudio"></i>
<p class="icon-text">VSC</p>
</li>
<li class="list-inline-item">
<i class="devicons devicons-aws"></i>
<p class="icon-text">AWS</p>
</li>
</ul>
<div class="subheading mb-3">Additional Skills</div>
<ul class="fa-ul mb-0">
<li>
<i class="fa-li fa fa-check"></i>
Engineering Management</li>
<li>
<i class="fa-li fa fa-check"></i>
Test Driven Development</li>
<li>
<i class="fa-li fa fa-check"></i>
Technical Documentation</li>
<li>
<i class="fa-li fa fa-check"></i>
Agile Methodologies</li>
</ul>
</div>
</section>
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="experience">
<div class="my-auto">
<h2 class="mb-5">Experience</h2>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Lead Full Stack Developer</h3>
<div class="subheading mb-3">Hunt Club</div>
<p>Helped to develop and maintain a complex CRM and customer facing portal, along with taking on more senior leadership responibilities</p>
<ul>
<li><a href="http://app.huntclub.com" target="_blank">HuntClub.com</a></li>
<li>Started as a Senior Software Engineer I, earned a promotion to Senior Software Engineer II and ultimately to Lead Software Engineer, where I took on 4 direct reports</li>
<li>Developed new products through the entire development lifecycle, including a client portal as team lead and a Slack app as a solo developer</li>
<li>Made significant contributions to every core company product:</li>
<li>Shared Ruby on Rails API</li>
<li>Internal ATS and an external facing platform with 20,000+ users both built in React</li>
<li>Large PostgreSQL database</li>
<li>Operated as subject matter expert on several products, including a Chrome Extension, a marketing website built through HubSpot, a Slack Application using Node.js and Bolt, and outreach automation using Sendgrid, Gmail, and Rails ActionMailer</li>
<li>Drove several process improvements including building guidelines around technical documentation and creating a product support strategy to establish response SLAs and engineering resourcing</li>
<li>Managed and mentored a cross-regional team of 6 highly skilled individuals, comprised of 4 engineers, 1 designer, and 1 product manager, providing technical guidance, overseeing project timelines, and ensuring the delivery of high-quality products that met and exceeded client expectations</li>
<li>Conducted interviews and participated in hiring decisions, aiding in the company’s growth efforts from approximately 35 employees to 200+</li>
</ul>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">June 2019 - May 2023</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Full Stack Developer</h3>
<div class="subheading mb-3">FlyHomes</div>
<p>Developed and maintained several pieces of software using React, React Native, and Ruby on Rails. Primarily
worked on three projects:</p>
<ul>
<li><a href="http://www.flyhomes.com" target="_blank">FlyHomes.com</a></li>
<li>Contributed to the development and maintenance of various software applications, including a React based real estate search website that relied on the MLS API, a corresponding mobile app built in React native, and an internal CRM</li>
<li>Quickly earned trust as a dependable developer, recognized for delivering projects with accuracy and efficiency</li>
<li>Leveraged previous experience in developing with Node.js to learn Ruby on Rails while on the job and contributed to the company’s Rails based API</li>
<li>Participated in a full brand redesign of the marketing website and was sole developer on the most trafficked page</li>
<li>Built pricing algorithms to launch a new product, which became the company’s central and most profitable product, assisting company valuation growth from approximately $20M to $800M+ today</li>
</ul>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">April 2018 - June 2019</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Robotics teacher</h3>
<div class="subheading mb-3">De La Salle High School</div>
<p>Taught students the fundamentals of coding logic by programming Arduino based robots. Assembled and tested
all robots
and helped students troubleshoot when they experienced problems.</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">June 2017 - October 2017</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Education intern</h3>
<div class="subheading mb-3">First Baptist Church of Homer, LA</div>
<p>Developed communication and research skills by delivering multiple weekly Bible studies. Planned and led
trips ranging
from 5-20 students. Worked with a team to ensure the safety and enjoyment of students while they were in the
youth
group setting.</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">May 2013 - August 2013 & May 2014 - August 2014</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Sales associate</h3>
<div class="subheading mb-3">The Woodsman Co.</div>
<p>Assisted customers in all aspects of selecting and purchasing outdoors gear. Helped with everything from
deciding
which jacket color looks best on a person to which climbing gear will be best suited to an intense, multi-day
climbing
trip.</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">February 2009 - September 2010</span>
</div>
</div>
</div>
</section>
<!-- <section class="resume-section p-3 p-lg-5 d-flex flex-column" id="projects">
<div class="my-auto">
<h2 class="mb-5">Projects</h2>
<p>(Listed in chronologcal order, newest first)</p>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Social Petworking</h3>
<div class="subheading mb-3">
<a href="http://www.socialpetworkingar.com" target="_blank">socialpetworkingar.com</a>
</div>
<div>Side project that was done for a friend who is trying to start a pet sitting and training business. Simple website displaying information about her business, pricing and contact information, and her blog posts from Medium.</div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Direct</h3>
<div class="subheading mb-3">
<a href="http://getdirect.io" target="_blank">getdirect.io</a>
</div>
<div>Companies with a large number of short-term rental properties have a mammoth task to keep up with bookings, listing properties on many different platforms, sending out instructions to visitors, scheduling all the necessary maintenance, and making sure that everyone is paid in a timely manner. Direct makes all of this easy by allowing users to upload properties to all of the major short term rental platforms at once and by using Stripe integration to both collect and send payments.</div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">FlyHomes</h3>
<div class="subheading mb-3">
<a href="http://www.flyhomes.com" target="_blank">flyhomes.com</a>
</div>
<div>The real estate business is becoming increasingly tech focused. Homebuyers have come to expect the ability to complete more of their transaction online. FlyHomes.com seeks to give users this ability, from finding homes, to boooking tours, to ordering comps, to drafting offers.</div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Johnny's Seafood</h3>
<div class="subheading mb-3">
<a href="http://www.johnnysseafoodnola.com" target="_blank">johnnysseafoodnola.com</a>
</div>
<div>A restaurant always needs a good website. Sadly, a lot of websites don't deliver what customers need: pictures of the food, information about location and how to get in touch, and most importantly, a menu that is easy to find. When Johnny of Johnny's Seafood, a New Orleans Cajun seafood restaurant asked me to build his website, I made sure that these things were first in mind during development, and he liked the outcome.</div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Wander</h3>
<div class="subheading mb-3">
<a href="https://github.com/PrestonWinstead/wander" target="_blank">Github repo</a>
<p>(mobile)</p>
</div>
<div>Anyone who has visited an unfamiliar city has experienced the disorienting struggle of trying to find the things
that will interest them while navigating a new public transit system in an unfamiliar culture, and possibly in
an unfamiliar language. Wander is here to help. We implement machine learning algorithms to learn about your interests
and build a trip tailored especially for you. We'll handle the transportation maps, tell you how much time you
should plan for each spot, and give restaurant recommendations. All that you have to do is show up and Wander.</div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Somm</h3>
<div class="subheading mb-3">
<a href="http://www.somm.herokuapp.com" target="_blank">somm.herokuapp.com</a>
</div>
<div>The wine aisle can be as intimidating as it is exciting. All of those names and varietals and regions...to learn
about all of it would take a lifetime. Somm makes it a little bit easier by filtering out all the clutter. With
personalized tasting notes and information about the wine you're looking at, we give you exactly what you need
to pick your next bottle.</div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Battlecode</h3>
<div class="subheading mb-3">
<a href="https://github.com/PrestonWinstead/BattleCode" target="_blank">Github repo</a>
</div>
<div>Want to prove that you're the best coder among your friends? Now you can! Create custom challenges and challenge
your friends to a battle to prove your dominance. Just don't sink beneath the pressure of the timer!</div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Finding Fido</h3>
<div class="subheading mb-3">
<a href="https://github.com/PrestonWinstead/findingFido" target="_blank">Github repo</a>
</div>
<div>Are you an animal lover who lives in a place where you can't have a pet? Are you a pet owner who can't always give
your animal friend the attention they deserve? Finding Fido is here to help. We find pet owners and animal lovers
in the same area and help them connect to share the love.</div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Open source contributions</h3>
<div class="subheading mb-3">
<a>A brief list the open source projects to which I've contributed</a>
</div>
<div><a href="https://github.com/wix/react-native-calendars" target="_blank">Wix React Native Calendars</a></div>
</div>
</div>
</div>
</section>
-->
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="education">
<div class="my-auto">
<h2 class="mb-5">Education</h2>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Operation Spark</h3>
<div class="subheading mb-3">Advanced Software Engineering Certificate</div>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">2017-2018</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">The University of Cambridge</h3>
<div class="subheading mb-3">Master of Philosophy</div>
<div>Theology & Religious studies</div>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">2016-2017</span>
<p>Thesis title: <i>Mirroring Torah</i></p>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">The Hebrew University of Jerusalem</h3>
<div class="subheading mb-3">Master of Arts</div>
<div>Hebrew Bible and Ancient Near Eastern History</div>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">2014-2016</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Ouachita Baptist University</h3>
<div class="subheading mb-3">Bachelor of Arts</div>
<div>Philosophy, Biblical Studies, and Biblical Languages</div>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">2010-2014</span>
<p>Magna Cum Laude</p>
</div>
</div>
</div>
</section>
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="interests">
<div class="my-auto">
<h2 class="mb-5">Interests</h2>
<p>In addition to web development, I have many hobbies. My background in academia has left me with a penchant for reading dry, boring books about linguistics or post-modern philosophy, but I also love novels and fantasy. I'm currently on a Terry Pratchett kick, as you may be able to see in this website's headers.</p>
<p>I'm a tinkerer by nature, and I can barely get into one hobby before I find another that I want to pick up. Most recently, I've taken an interest in watch repair. But some of my hobbies that endure are food (both cooking and eating it), home improvement projects (to varying degrees of success), and spending time with my partner and our wonderful kittens, Spaghetti and Meatball.</p>
</div>
</section>
<!-- <section class="resume-section p-3 p-lg-5 d-flex flex-column" id="media">
<div class="my-auto">
<h2 class="mb-5">Media & Publications</h2>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Maker Bayou Radio Show</h3>
<div class="subheading mb-3">
<a href="https://www.blubrry.com/makerbayou/">blubrry.com/makerbayou</a>
</div>
<div>Regular guest on a science and tech based radio talk show.</div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Frontend Weekly</h3>
<div class="subheading mb-3">
<a href="http://frontendweekly.co/">frontendweekly.co</a>
</div>
<div>Writer for Frontend Weekly, initially published in issue 84.</div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Noesis</h3>
<div class="subheading mb-3">
<a href="http://noesis.divinity.cam.ac.uk/">noesis.divinity.cam.ac.uk</a>
</div>
<div>Published <i>“There Was a Famine in the Land”: Intertextual Methodology and Interpretation of an Allusion in Ruth</i> in Noesis vol. 4, a journal published by Cambridge graduate students in theology.</div>
</div>
</div>
</div>
</section> -->
<!--
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="awards">
<div class="my-auto">
<h2 class="mb-5">Awards & Certifications</h2>
<ul class="fa-ul mb-0">
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
Google Analytics Certified Developer</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
Mobile Web Specialist - Google Certification</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
1<sup>st</sup>
Place - University of Colorado Boulder - Emerging Tech Competition 2009</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
1<sup>st</sup>
Place - University of Colorado Boulder - Adobe Creative Jam 2008 (UI Design Category)</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
2<sup>nd</sup>
Place - University of Colorado Boulder - Emerging Tech Competition 2008</li>
<li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
1<sup>st</sup>
Place - James Buchanan High School - Hackathon 2006</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
3<sup>rd</sup>
Place - James Buchanan High School - Hackathon 2005</li>
</ul>
</div>
</section>
-->
</div>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom scripts for this template -->
<script src="js/resume.min.js"></script>
</body>
</html>