-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
72 lines (69 loc) · 3.09 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
<!DOCTYPE html>
<html>
<head>
<title>Resume</title> <!-- page title -->
<link rel="stylesheet" href="resume_style.css">
</head>
<body>
<table class="contact">
<tr>
<td> </td>
<!-- Name is in the table too so it's aligned to the contact info -->
<td><h1><a id="name" href="index.html">Zach Kirsch</a></h1></td>
<td> </td>
</tr>
<tr>
<td><p>LinkedIn: zachkirsch</p></td>
<td><p>[email protected]</p></td>
<td><p>GitHub: zachkirsch</p></td>
</tr>
</table>
<h2>Education</h2>
<p class="item">Tufts University</p>
<p class="itemDesc">Bachelor of Science in Computer Science</p>
<p class="itemDesc2">Courses Taken: Introduction to Computer Science (C++), Data Structures (C++), Web Programming</p>
<p class="itemDesc">Bachelor of Science in Mathematics</p>
<p class="itemDesc2">Courses Taken: Calculus III, Discrete Math, Number Theory</p>
<p class="itemDesc">Activities: Engineers without Borders, Computer Science Exhange, Debate Society</p>
<h2>Experience</h2>
<p class="item">Victory Briefs</p>
<p class="position">Head Rankings Coordinator</p>
<ul class="itemDesc">
<li>Designed a rankings methodology based on the Elo ratings system</li>
<li>Developed and maintain Java software behind the national ranking of high school debaters</li>
</ul>
<p class="item">Debate Mate</p>
<p class="position">Mentor</p>
<ul>
<li class="itemDesc">Coach a middle school debate team at weekly practices to improve argumentation and public speaking</li>
</ul>
<p class="item">Institute for Speech and Debate</p>
<p class="position">Junior Instructor</p>
<ul class="itemDesc">
<li>Taught high school debaters how to think critically, construct logical arguments, and speak persuasively </li>
<li>Supervised campers and coordinated nightly activities</li>
</ul>
<p class="item">Cleveland Clinic</p>
<p class="position">Student Researcher</p>
<ul class="itemDesc">
<li>Conducted independent and original research highlighting potential new ways to treat epilepsy</li>
</ul>
<p class="item">Travel Clinics of America</p>
<p class="position">Product Development Intern</p>
<ul>
<li class="itemDesc">Assisted in early stages of product development to identify potential issues for consumers</li>
<li class="itemDesc">Provided technological and cosmetic recommendations for software products</li>
</ul>
<h2>Awards & Honors</h2>
<p class="item">National Champion in Public Forum Debate</p>
<p class="itemDesc">Over 3,000 competitors and 234 national qualifiers</p>
<p class="item">National Merit Finalist</p>
<p class="item">Northeast Ohio Science and Engineering Fair: Second Place Prize in Medicine & Health</p>
<p class="itemDesc">Received special awards from the Cleveland Clinic Department of Neurosciences and Lerner College of Medicine</p>
<h2> Skills </h2>
<p id="skills">Java, C++, VBA, HTML, Git.</p>
<br>
<br>
<br>
</body>
</html>