-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
96 lines (87 loc) · 3.88 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a class="active" href="#">Résumé</a></li>
<li><a href="https://github.com/vgf89/Portfolio">Portfolio</a></li>
</ul>
</nav>
<main>
<header class="name" id="info">
<img id="avatar" src="avatar_professional.png" alt="avatar.png">
<h1> Kevin Hardy </h1>
<section id="contact_info">
<p>
300 Bullock<br>
Socorro, New Mexico, 87801<br>
(505) 450-6656<br>
</p>
</section>
</header>
<section class="content" id="experience">
<h2> Experience </h2>
<ul class="unstyledul">
<li>
<h3> RH Systems | Albuquerque, NM | Summer 2016 </h3>
<h4>Software Developer Intern</h4>
<ul><li>Helped develop instrument control and logging software in C++/Qt</li></ul>
</li>
<li>
<h3>RH Systems | Albuquerque, NM | Summer 2015</h3>
<h4>Software Developer Intern</h4>
<ul><li>Developed an Android app in Java for meteorological calculations (Dew/Frost Point, Vapor Pressure, RH, and related calculations)</ul></li>
</li>
<li>
<h3>RH Systems | Albuquerque, NM | Aug 2010 - May 2013</h3>
<h4>Software Developer & Misc. Intern</h4>
<ul>
<li>Programmed small tools in Python</li>
<li>Developed and maintained a small-scale inventory management system in Python, CherryPy web framework, PostgreSQL</li>
<li>Miscellaneous tasks, i.e. assembled circuit boards, assisted in machining parts, etc</li>
</ul>
</li>
<h3><a href="https://github.com/vgf89/Portfolio">Personal Project Portfolio</a></h3>
</ul>
</section>
<hr>
<section class="content" id="education">
<h2>Education</h2>
<ul class="unstyledul">
<li>
<h3> Bachelors of Science in Computer Science (Fall 2013 - Expected Graduation: Dec 2017) </h3>
<em> New Mexico Tech </em>
<h4> Relevant Classes Taken </h4>
<ul>
<li> Algorithms and Data Structures (Language: C) </li>
<li> Systems Programming (Language: C) </li>
<li> Object Oriented Programming (Language: Java) </li>
<li> Intro to Computer Networks (Language: C#) </li>
<li> Basic Concepts of Math (Axioms, Theorems, Proofs, Sets, etc) </li>
<li> Formal Languages and Automata (Spring 2016) </li>
<li> Software Engineering (Spring 2016) </li>
<li> Human Computer Interaction (Spring 2016) </li>
</ul>
</li>
</ul>
</section>
<hr>
<section class="content" id="skills">
<h2>Skills</h2>
<ul>
<li>C - Level: Intermediate - Last Used: < 1 year ago - Years of Experience: 3 years</li>
<li>Git - Level: Intermediate - Last Used: < 1 year ago - Years of Experience: 3 years</li>
<li>Python - Level: Intermediate - Last Used: < 1 year ago - Years of Experience: 2 years</li>
<li>Java - Level: Intermediate - Last Used: < 1 year ago - Years of Experience: 2 year</li>
<li>C++ - Level: Intermediate - Last Used: < 1 year ago - Years of Experience: 1 year</li>
<li>C#/.NET - Level: Beginner - Last Used: <1 year ago - Years of Experience: 1 year</li>
</ul>
</section>
</main>
</body>
</html>