-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
92 lines (85 loc) · 5.57 KB
/
about.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>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jacob Cowan | About Me</title>
<!-- Open Graph -->
<meta property="og:title" content="Jacob Cowan" />
<meta property="og:description" content="The Portfolio of a Game Designer who loves solving complex problems with varied skills." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.mrjcowman.com/" />
<meta property="og:image" content="https://www.mrjcowman.com/res/mrjcowman-og.jpg" />
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="css/mystyles.css">
<!-- Functionality -->
<script src="navbar.js"></script>
</head>
<body>
<nav class="navbar is-primary">
<div class="container">
<div class="navbar-brand">
<a href="index.html" class="navbar-item">
<img src="res/logo.png" alt="Jacob Cowan" class="logo">
</a>
<span class="navbar-burger" data-target="navbarMenu">
<span></span>
<span></span>
<span></span>
</span>
</div>
<div id="navbarMenu" class="navbar-menu">
<div class="navbar-end">
<a href="index.html" class="navbar-item">
Home
</a>
<a href="projects.html" class="navbar-item">
Projects
</a>
<a href="about.html" class="navbar-item is-active">
About Me
</a>
<a href="resume.html" class="navbar-item">
Résumé
</a>
<a href="contact.html" class="navbar-item">
Contact
</a>
</div>
</div>
</div>
</nav>
<main class="section container">
<div class="box">
<div class="columns block">
<div class="column pb-0">
<img src="res/my-face.JPG" alt="Photo of Jacob Cowan" class="is-3by2">
</div>
<div class="column">
<h1 class="is-size-1">Hi, I'm Jacob.</h1>
<p class="block">I support <strong>everyone</strong> regardless of gender (or lack thereof), sexuality, race, or otherwise. I will <strong>not</strong> stand for their marginalization, and I seek opportunities to uplift their voices. Human rights means <strong>all</strong> humans.</p>
<p class="block">Aside from the work on display across this site, I have a much wider body of interests and experiences to draw from.</p>
</div>
</div>
<p class="block">I can't get enough when it comes to learning new things! I find that the more I know about a variety of topics, the better I understand each topic in turn. Even the seemingly mundane can prove endlessly interesting to me.</p>
<p class="block">I am glad to challenge myself with developing new skills and learning new tools, and I work well under pressure. When I started working, I learned to roller skate on the job. I learned to install flooring on the job. I learned to teach on the job.</p>
<p class="block">I volunteer a lot of my time to the local <a href="https://www.firstinspires.org/robotics/ftc/what-is-first-tech-challenge" target="_blank">FIRST® Tech Challenge</a> robotics team, and have done so since before I graduated high school. I helped found both the middle and high school teams back then. The mechatronics program at Mt. Baker also wouldn't exist were it not for my efforts, and I've helped students send their work to space because of it.</p>
<p class="block">My coworkers have come to rely on my helpful attitude and flexibility. My students love the way I explain things and often prefer my perspective over that of their teachers.</p>
<p class="block">I also dedicate much of my time to music. I have been in choir since elementary school and distinguished myself as a top student and core part of our choir community. I also started my own band and practiced songwriting and a variety of instruments.</p>
<p class="block">I am a puzzler who relishes the opportunity to solve complex problems. That may be the biggest reason I'm drawn to game development; not a single piece of knowledge is without some use in the field. I just need to find where to apply it.</p>
<p class="block">One place I often apply that knowledge is in helping my friends game together. I administer a TrueNAS home media server and have set up various Minecraft servers on Linux. Troubleshooting issues with those servers is always worth it to see the excitement in their users' eyes.</p>
</div>
</main>
</body>
</html>