-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
101 lines (97 loc) · 2.91 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="styles/main.css">
<title>App Name</title>
</head>
<body>
<header>
<h1>David C. Sampson</h1>
</header>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="resume.html">Resume</a></li>
</ul>
</nav>
<main>
<h2>3130 Patricia Dr. Carmel, IN 46033</h2>
<p>Objective: Seeking an internship in the field of Computer Science</p>
<section> Education: Bachelor of Science, Computer Science
<ul>
<li>Rose-Hulman Institute of Technology, Terre Haute, IN</li>
<li>
Related Courses:
<ul>
<li>Computer Architecture</li>
<li>Database Systems</li>
<li>Data Structures and Algorithms</li>
<li>Intro to Machine Learning</li>
<li>Into to Web Programming</li>
</ul>
</li>
<li>Rose-Hulman Institute of Technology, Terre Haute, IN</li>
</ul>
</section>
<section> Skills:
<ul>
<li>
Software
<ul>
<li>Java</li>
<li>C++</li>
<li>R</li>
<li>MIPS Assembly</li>
<li>JavaScript, HTML, and CSS </li>
<li>Microsoft Word</li>
</ul>
</li>
<li>Languages: <ul><li>Japanese</li></ul></li>
</ul>
</section>
<section>Experience:
<ul>
<li>
TechPoint S.O.S. Challenge Participant: Jun. 2020
<ul>
<li>Participated as a Software Developer, on a multi-disciplinary team
to create a solution for the challenges faced by the transportation industry
during the COVID-19 pandemic.</li>
<li>Created a prototype for an app that allows for users to trach how many people are on any bus part of the Indy-Go bus system.
Research Project</li>
</ul>
</li>
<li>Directed research with Professor Alisafaee based on the JAI 2019-2020 camera.</li>
<li>
Barnes and Noble, Carmel, IN: Dec. 2018 - Aug. 2019
<ul>
<li>Organized the store floor</li>
<li>Helped customers locate desired items</li>
<li>Finalized transactions using a cash register</li>
</ul>
</li>
<li>
Techhounds FRC Team 868: 2016-2019
<ul>
<li>Taught new members basic programming</li>
<li>Assisted in programming robot code</li>
</ul>
</li>
</ul>
</section>
</main>
<footer>
<p>
You can reach me at [email protected] or by phone at (317) 566-0657
</p>
</footer>
</body>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/popper.js"></script>
<script src="scripts/bootstrap-material-design.js"></script>
<script>$("body").bootstrapMaterialDesign();</script>
<script src="scripts/main.js"></script>
</body>
</html>