Skip to content

Commit

Permalink
adding the index html document
Browse files Browse the repository at this point in the history
  • Loading branch information
swBodenhemier committed Feb 3, 2024
0 parents commit fe82f5e
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>

<!-- root element -->
<html>
<!-- head element -->
<head>
<!-- website title -->
<title>
Personal Portfolio
</title>
</head>

<!-- body element -->
<body>
<!-- the title of the document -->
<h1 style="text-align:center;"><strong>Samuel Bodenhemier - Personal Portfolio<hr></strong></h1>

<!-- introduction subheading -->
<h2>Introduction</h2>

<!-- introduction paragraph -->
<p>
Hey there! My name is <u>Samuel Bodenhemier</u>, I am a Computer Science major at <i>Northern Arizona University.</i> I am currently a sophmore and I will be finishing up most of my gen-ed credits this semester meaning its all computer science from here on out! This is good for many reasons, but mostly because I love programming. My first experience with cs was in my junior year at high school when I took the <i>Computer Science Principles</i> course where we learned about how the internet and computers work as well as some simple javascript. I instantly fell in love with CS and from then on it has been my main focus.
</p>

<!-- skills section heading -->
<h2>Skills</h2>

<!-- skills section body -->
<p>
<b>C</b> - The main focus of my recent CS experience has been learning how to build and run programs written in the C language. <br>
<b>Java</b> - I also have experience with the Java language and object oriented programming from taking <i>AP Computer Science A</i> in High School. <br>
<b>Problem Solving</b> - I have extensive experience in working through and solving any problems that may arise. <br>
<b>MIPS</b> - Through taking the <i>Computer Archetecture</i> course at NAU I have the fundamentals of building programs using MIPS Assembly language.
</p>

<!-- projects section heading -->
<h2>Projects</h2>

<!-- projects section body -->
<p>
<b>Matching/Memory Game</b> - As a final project in my <i>AP Computer Science A</i> course, a partner and I built a memory game from scratch in Java. The project consisted of a grid of tiles, each containing an imaga of a random fruit; the player was tasked with remembering the position of several matching pairs of fruits at which point the tiles fliped and the player had to select the matching locations from memory.<br>
<b>Maze Generator</b> - The final task in my <i>Computer Archetecture</i> course was creating a program which randomly generated a maze using MIPS assembly. In order to do say, I created a pseudorandom number generator from scratch in order to generate the maze.<br>
<b>Red/Black tree</b> - I created many C programs in my <i>Data Structures</i> course, but the most difficult was in creating a program which organized data into a self fixing Red/Black tree. The program could also remove items from the tree, copy the tree, and pring the data in a multitude of ways.
</p>

<!-- education/experience section header -->
<h2>Education and Experience</h2>

<!-- education/experience section body -->
<p>
<b>High School</b> - <i>University High School</i>, Tucson AZ. Graduated Spring 2022. <br>
<b>University</b> - <i>Northern Arizona University</i>, Flagstaff AZ. Currently Enrolled.
</p>

<!-- contact section header -->
<h2>Contact Information</h2>

<!-- contact section body -->
<p>
<b>School Email</b> - swb79@nau.edu<br>
<b>Phone Number</b> - +1(520)800-9711<hr>
</p>
</body>

</html>

0 comments on commit fe82f5e

Please sign in to comment.