-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
62 lines (55 loc) · 3.59 KB
/
aboutme.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
<!DOCTYPE html>
<html>
<head>
<title>About Me</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link href="style.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/9e5e5e9812.js" crossorigin="anonymous"></script>
</head>
<body style="background-color:#f8eee1;">
<h1 id = "AboutMe"><i>About Me</i></h1>
<br>
<h2>Academics</h2>
<br>
<p class = "indented">
My name is Jacob Roedel and I am a sophomore at The George Washington University. Originally, I am from Long Island, New York, and I
currently live on Foggy Bottom campus in Washington, DC.
I am pursuing a Bachelors of Science in Computer Science with a Minor in Economics.
I participate in organizations and clubs such as the University Honors Program and the GW Association for Computing Machinery.<br><br>
<b>Languages:</b> C, Java, HTML, CSS, LC-3 Assembly (Currently Learning Python and MySQL)<br>
<b>Coursework:</b> Software Engineering, Computer Architecture, Discrete Structures I and II, Data Structures and Algorithms<br>
<b>Currently Enrolled: </b> Systems Programming, Database Systems, Foundations of Computing<br>
</p>
<br>
<p style = "font-size: 20px;">
<b>Currently Seeking Software Engineering Internships</b>
</p>
<br>
<h2>Interests</h2>
<br>
<h3>Martial Arts</h3>
<br>
<p class = "indented">
I have been involved in martial arts since the early age of 4. Throughout my career, I have been a member of the Chi's Martial Arts (Martial Arts Training Center)
training facility in Deer Park, New York. After years of studying, training, and practicing, I earned a first degree black belt in Jeet Kune Do, Jun Fan Gung Fu concepts, after passing the exam in June of 2016.
The exam consisted of a 6 month preparation phase in which each candidate underwent extreme physical and mental training. During the preparation phase,
I completed around 5,000 pushups, situps, and squats. In addition, I carried out acts of kindness, practiced techniques, and prepared for the 3-mile run. Starting even before I was a black belt, I have been
an assistant instructor for youth classes. This consisted of setting up the class materials, reviewing what drills and techniques we were going to cover,
directly practicing with students on pad work and other drills, and discussing progess with students and parents.
</p>
<br>
<h3>Badminton</h3>
<br>
<p class = "indented">
I was on the varsity badminton team all four years of my high school experience. I played in the doubles division of my high school's team,
and went undefeated my sophomore season (16-0). As well, my partner and I won the Suffolk County Badminton Doubles Championship our junior year,
while earning a (15-1) regular season record. That same year, my partner and I were placed on the Newsday's All-Long Island Badminton Team and were also named
All-County players for Suffolk County. Unfortunately, COVID-19 ended our season just as it was beginning, but Badminton will always be a sport I enjoy.
</p>
<br>
<button onclick="window.location.href = 'index.html';" id = "back">Main Page</button>
<script>
var back = document.getElementById("back");
</script>
</body>
</html>