-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
112 lines (99 loc) · 5.32 KB
/
resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jake Lindsay</title>
<link href="images/jl_icon.png" rel="shortcut icon" type="image/png/">
<link href="styles/main.css" rel="stylesheet">
<link href="styles/resume.css" rel="stylesheet">
<script src="scripts/genGrid.js" defer type="module"></script>
<script src="scripts/snake/game.js" defer type="module"></script>
</head>
<body>
<div id="header">
<a href="index.html" id="header-name">Jake Lindsay</a>
<nav>
<ul>
<li><a href="projects.html">Projects</a></li>
<li class="active"><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
<div id="snake-space" style="z-index: -1;"></div>
<div id="main-text-container" style="height: 50vh;">
<h1 id="static-text">I have worked as a...</h1>
<h1 id="main-text-tw"></h1>
</div>
<div id="resume-container">
<div class="resume-card">
<h3>Education</h3>
<div id="education-card" class="resume-card-content">
<h5 style="margin-top: 0px;">University of New Hampshire <div class="resume-card-date">Class of 2023</div></h5>
<ul>
<li>BS Analytical Economics | Paul College of Business and Economics</li>
<li>Minor Computer Science | College of Engineernig and Physical Sciences</li>
</ul>
</div>
</div>
<div class="resume-card">
<h3>Experience</h3>
<div class="resume-card-content">
<h5 style="margin-top: 0px;">Teaching Assistant, Paul College of Business and Economics <div class="resume-card-date">Jan 2022 - Current</div></h5>
<ul>
<li>Teaching Assistant for "Predictive Modeling: Data Driven Economic Analysis" taught by Prof. James Kibler</li>
<li>Aiding students with their learning of data analysis, modeling, and reporting with Excel, R, Tableau</li>
</ul>
<h5>Marketing Strategist, Voice Z Digital <div class="resume-card-date">Sep 2021 - Current</div></h5>
<ul>
<li>Developed and improved upon Voice Z Digital's Wordpress site</li>
<li>Collaborated with small teams conducting digital presence audits for small businesses in New Hampshire</li>
<li>Reported on website performance using SEMrush and Chrome DevTools to create meaningful solutions for leaders of small businesses in New Hampshire</li>
<li>Analyzed companies' Google Ads, Google Analytics, and Facebook Ads to find areas where optimization could lead to better returns on ad spending</li>
<li>Presented and thoroughly explained finding and solutions directly to clients' leadership</li>
</ul>
<h5>Bartender, West End Tavern <div class="resume-card-date">May 2021 - Current</div></h5>
<ul>
<li>Built strong relationships with regular customers to provide the best service and experience using prior experiences to learn and improve</li>
<li>Communicated effectively with all customers through emotional intelligence and professionalism</li>
</ul>
</div>
</div>
<div class="resume-card">
<h3>Skill</h3>
<div class="resume-card-content">
<h5 style="margin-top: 0;">Data Science</h5>
<ul>
<li>MS Office | reporting, interactive dashboards</li>
<li>Python | analysis, scripting, modeling - matplotlib, TensorFlow, Numpy</li>
<li>R, RStudio | analysis, modeling</li>
<li>Tableau | EDA, representation, dashboards</li>
</ul>
<h5>Web Development</h5>
<ul>
<li>Front End | HTML-CSS-JS proficient</li>
<li>jQuery, Bootstrap</li>
<li>Back End | Node.js, Express.js, SQL</li>
</ul>
</div>
</div>
<div class="resume-card">
<h3>Certification</h3>
<div class="resume-card-content">
<ul>
<li>Codecademy, @jakelindsaycodes | Python, HTML, CSS, JavaScript and subsequent libraries and frameworks</li>
<li>Salesforce Trailhead, trailblazer.me/id/jakeclindsay | Salesforce design basics</li>
<li>Coursera | Google's Foundations of User Experience (UX) Design</li>
<li>Hubspot | Inbound Marketing, SEO</li>
</ul>
</div>
</div>
</div>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<!-- Typerwriter Effects -->
<script src="scripts/typewriterEffects/resume_TW.js"></script>
</body>
</html>