-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcareergoals.html
More file actions
109 lines (95 loc) · 4.94 KB
/
careergoals.html
File metadata and controls
109 lines (95 loc) · 4.94 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
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<style>
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
</style>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.sidenav').sidenav();
});
</script>
<!--
Colors:
Primary: blue lighten-1 #42a5f5
Secondary: deep-purple lignten-2 #9575cd
-->
</head>
<body>
<header>
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper blue lighten-1">
<a href="#!" class="brand-logo center">Ryan Lapchynski</a>
<a href="#" data-target="mobile-demo" class="sidenav-trigger"><i class="material-icons">menu</i></a>
<ul class="right hide-on-med-and-down">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="careergoals.html">Career Goals</a></li>
<li><a href="resume.html">Résumé</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</div>
</nav>
</div>
<ul class="sidenav" id="mobile-demo">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="careergoals.html">Career Goals</a></li>
<li><a href="resume.html">Résumé</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</header>
<main>
<div class="container">
<h1>Career Goals</h1>
<p class="flow-text">Currently, I'm looking for an internship or co-op related to systems administration,
cybersecurity, or software development utilizing strong collaborative abilities and problem-solving
skills as well as extensive programming experience, ideally in the Columbus area. I have significant
experience with Linux and Linux administration and security, as well as bash, Python, and C programming,
and an internship or co-op using these or related skills would be ideal. After I graduate, I'd like a full-time
position utilizing a similar skillset in a collaborative environment.</p>
<p class="flow-text">I am in my third year of completing a B.S. in Computer Science and
Engineering (CSE) and my second year of a B.S. in Mathematics, both at The Ohio State University.
I expect to graduate with these in Spring 2021 and Autumn 2021, respectively, and my GPA is 3.8/4.0
for the computer science degree and 3.9/4.0 for the math degree.</p>
<p class="flow-text">I have held multiple positions that are relevant to my degrees, including as a
Student Systems Administrator and as a math tutor. The Student Systems Administrator position is at
the Computer Science and Engineering Department at OSU, and at this position, I work with the full-time
system administrators for the CSE department and the College of Engineering to both maintain existing
computing infrastructure and setup new equipment and establish new procedures. I work with Linux on a
daily basis, as well as bash and Python scripting (and a few other languages) in both an environment of
office desktops and of research and production servers. In total, I manage or help manage an environment
of around 350 Linux servers and desktops. As a math tutor, I help other students to understand math
concepts and ideas by walking them through example problems and explaining concepts in different ways,
adjusting explainations to each student and their level of understanding. This requires strong interpersonal
skills and communication ability, especially being able to communicate effectively with someone without the
same level of knowledge and understanding of certain topics. These are expanded on further in the résumé page.</p>
</main>
<footer class="page-footer blue lighten-1">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Footer Content</h5>
<p class="grey-text text-lighten-4">You can use rows and columns here to organize your footer content.</p>
</div>
</div>
</div>
<div class="footer-copyright"></div>
</footer>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</body>
</html>