forked from cs4241-20a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·92 lines (89 loc) · 2.2 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<link href="/CSS/style.css" rel="stylesheet" type="text/css" />
<title>CS4241 Assignment 1</title>
</head>
<body>
<h1>Information about Clay Oshiro-Leavitt</h1>
<p>
My name is Clay Oshiro-Leavitt, and I'm a senior here at WPI studying computer science and data science.
Besides academics, I'm the vice president of the WPI Jazz Groups and play trumpet in both the Stage Band and Jazz Ensemble.
I am also a member of the theatrical organization, VOX, and serve as a pit musician for their shows. Outside of music, I am also
a member of the WPI Photography Club, and spent a considerable amount of time last winter developing my own film.
</p>
<h2>Academics</h2>
<h3>Class of 2021</h3>
<ul>
<li> Major: Computer Science </li>
<li> Minor: Data Science </li>
</ul>
<h3>
Assorted Coursework:
</h3>
<ul>
<li>Introduction to Artificial Intelligence</li>
<li>Analysis of Algorithms</li>
<li>Programming Languages</li>
<li>Software Engineering</li>
<li>Computer Networks</li>
<li>Foundations of Data Science</li>
</ul>
<table style="width:100%">
<tr>
<th>Technology</th>
<th>Proficiency</th>
</tr>
<tr>
<td>HTML</td>
<td>Some</td>
</tr>
<tr>
<td>CSS</td>
<td>Some</td>
</tr>
<tr>
<td>Java</td>
<td>a lot</td>
</tr>
<tr>
<td>JavaScript</td>
<td>Some</td>
</tr>
<tr>
<td>Ruby</td>
<td>None</td>
</tr>
<tr>
<td>Python</td>
<td>a lot</td>
</tr>
<tr>
<td>unit testing</td>
<td>Some</td>
</tr>
</table>
</p>
<h2>Experience</h2>
<h3>
Working experience
</h3>
<ul>
<li>Internship: CommScope Software Engineering Intern (Summer 2020) </li>
<li>Internship: Setra Engineering Intern (Summer 2019)</li>
</ul>
<p>
<a href="https://github.com/clay-ol">Personal GitHub Page</a>
</p>
<h2> Non-Academic Content</h2>
<p>
<ul>
<li>Trumpet</li>
<li>Photography</li>
<li>Backpacking</li>
<li>Cooking</li>
</ul>
</p>
<img src="/Images/profile.png" alt = "Hello There">
</body>
</html>