-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout_me.html
More file actions
110 lines (91 loc) · 4.97 KB
/
about_me.html
File metadata and controls
110 lines (91 loc) · 4.97 KB
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
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Stephen Skiles Portfolio Page">
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet" href="styles/small.css">
<link rel="stylesheet" href="styles/large.css">
<link href="https://fonts.googleapis.com/css2?family=Aboreto&family=Raleway&display=swap" rel="stylesheet">
<title>Stephen Skiles Portfolio</title>
</head>
<body>
<header>
<nav>
<button class="hamButton">☰</button>
<div id="left">
<img src="images/SS.png" alt="Stephen Skiles Logo">
<h3>Stephen Skiles</h3>
</div>
<div id="right">
<a href="index.html">Home</a>
<a href="web.html">Projects</a>
<a href="about_me.html">About Me</a>
</div>
</nav>
</header>
<main id="about_me_main">
<div id="me-grid">
<div id='edu' class="section">
<h2>Education</h2>
<hr>
<div class="container">
<ul>
<li>Brigham Young University Idaho, Rexburg ID | Expected graduation in July 2024 (Computer Science BA) | GPA: 4.0 </li>
<li>Everett Community College, Everett, WA | Associates of Arts and Sciences | Graduated in June 2021</li>
</ul>
</div>
</div>
<div id='hist' class="section">
<h2>History / Organizations</h2>
<hr>
<p>From an early age, I was fascinated by computers and how they worked but I didn’t know anyone that knew much more about computers than I did besides they work and that it seems like magic. Growing up, I assumed that computers were beyond my understanding and I ended up being passionate about running, dreaming of one day becoming an Olympic athlete. However, when medical issues plagued my ability to run more than 5 minutes, I turned to music to fill that hole in my life. I became very passionate about music (rock/metal specifically) and I ended up learning how to play the guitar, the bass, and how to sing. For a few years, I dreamed of joining a rock band and making a living out of that but then I realized that being a rock star is not a stable job so when I learned that my high school is offering an Intro to Computer Science class, I had to try it out. I quickly found myself loving the process of coding and solving the inevitable bugs that came about during the process. During my senior year of high school, I even took the AP Computer Science class to build upon my foundation. Once I graduated high school in 2020, I spent a year getting my Associate’s degree from Everett Community College in Washington and I started going to Brigham Young University - Idaho in January of 2022 to get a Bachelor's degree in Computer Science. While I have been going to school at BYUI, I know that I am in the right field and I have become very passionate about learning and developing. I have become especially passionate about web development and I have been a member of the Web Development and Design Society at BYUI since April of 2022 and I have been the president of this society since April 2023.</p>
</div>
<div id='skills' class="section">
<h2>Skills</h2>
<hr>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Java</li>
<li>C#</li>
<li>Python</li>
<li>SQL</li>
<li>Unity</li>
<li>GitHub/Git</li>
<li>NoSQL</li>
<li>Firebase/Firestore</li>
<li>React</li>
</ul>
</div>
<div id='tak' class="section">
<h2>Most Recent Classes Taken</h2>
<hr>
<ul>
<li>Applied Programming</li>
<li>Programming with Data Structures</li>
<li>Discrete Mathematics</li>
<li>Database Design & Development</li>
<li>Web Frontend Development I</li>
<li>Data Science Programming</li>
</ul>
<h2>Current Classes</h2>
<hr>
<ul>
<li>Parallelism and Concurrency</li>
<li>Web Frontend Development II</li>
<li>Web Backend Development</li>
</ul>
</div>
</div>
</main>
<footer>
<img src="images/SS.png" alt="Stephen Skiles Logo">
<h3>Stephen Skiles</h3>
</footer>
<script src="scripts/home.js"></script>
</body>
</html>