-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
248 lines (241 loc) · 9.03 KB
/
index.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="assets/images/logo.png" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/remixicon/3.5.0/remixicon.min.css"
/>
<link rel="stylesheet" href="assets/styles/style.css" />
<title>Nicholas Ingerson | CS Student at Allegheny College</title>
</head>
<body>
<nav>
<div class="nav-logo">
<a href="#">
<img src="assets/images/logo.png" />
</a>
</div>
<ul class="nav-links">
<li class="link"><a href="#">Home</a></li>
<li id="link1" class="link"><a href="#">About</a></li>
<li id="link2" class="link"><a href="#">Projects</a></li>
<li id="link3" class="link"><a href="#">Contact</a></li>
</ul>
<a href="https://github.com/ningerson2002" target="_blank"
><button class="btn">GitHub Profile</button></a
>
</nav>
<header class="container">
<div class="content">
<span class="blur"></span>
<span class="blur"></span>
<div class="text">
<h4>COMPUTER SCIENCE MAJOR AT ALLEGHENY COLLEGE</h4>
<h1>Hi, I'm <span>Nicholas</span>, Aspiring Software Engineer</h1>
<p>
I'm an aspiring Software Developer currently majoring in Computer
Science at Allegheny College. I possess intermediate Python
programming skills and a foundational understanding of R for data
analysis. Committed to consistency and transparency, I'm dedicated
to continuous growth and thrive on challenging projects.
</p>
<a href="assets/pdf/resume-ingerson.pdf" target="_blank"
><button class="btn">Resume</button></a
>
</div>
<div class="image">
<img src="assets/images/me.png" />
</div>
</div>
</header>
<section class="container">
<h2 class="header">ABOUT</h2>
<div class="about">
<div class="card">
<span><i class="ri-computer-line"></i></span>
<h4>Technical Skills</h4>
<ul class="list">
<li>Python</li>
<li>R</li>
<li>C</li>
<li>HTML</li>
<li>CSS</li>
<li>Docker</li>
<li>GitHub</li>
<li>VSCode</li>
<li>Ubuntu Terminal Commands</li>
</ul>
</div>
<div class="card">
<span><i class="ri-briefcase-3-line"></i></span>
<h4>Other Skills</h4>
<ul class="list">
<li>Collaborative Problem Solving</li>
<li>Presentations</li>
<li>Teamwork</li>
<li>Team Leadership</li>
<li>Technical Writing</li>
</ul>
</div>
<div class="card">
<span><i class="ri-profile-line"></i></span>
<h4>Extracurricular Activities</h4>
<ul class="list">
<li>ΦΔΘ Philanthropy and PR Chairman</li>
<li>Volunteering through my Fraternity</li>
<li>Playing Video Games</li>
<li>Skateboarding</li>
<li>Making Music</li>
</ul>
</div>
</div>
</section>
<section class="container">
<h2 class="header">PROJECTS</h2>
<p class="sub-header">
My projects are designed to reflect my professional and technical skills
as a developer. Each project fulfills a different purpose and works to
strengthen my knowledge with different programming languages and
algorithms.
</p>
<div class="projects">
<span class="blur"></span>
<span class="blur"></span>
<div class="card">
<div class="content">
<h4>Weather App</h4>
<p>
This is a simple yet powerful weather application built in Python.
It provides real-time weather information for any location, giving
users access to current conditions, forecasts, and more. The app
utilizes the OpenWeatherMap API to fetch accurate and up-to-date
weather data.
</p>
</div>
<a href="https://github.com/ningerson2002/weather-app" target="_blank"
><button class="btn">Project Repository</button></a
>
</div>
<div class="card">
<div class="content">
<h4>Temperature Probe Reflex Agent</h4>
<p>
The application we developed is a temperature sensing module that
will use an Arduino and a temperature sensor to monitor the
ambient temperature of a room. The module will alert the user via
the LED module if the temperature exceeds a certain range,
specifically, if it is more than 5 degrees Celsius higher or lower
than the ideal temperature of 20 degrees Celsius.
</p>
</div>
<a
href="https://github.com/CMPSC-310-AI-Spring2023/temperature-reflex-agent"
target="_blank"
><button class="btn">Project Repository</button></a
>
</div>
<div class="card">
<div class="content">
<h4>Password Generator / Manager</h4>
<p>
The password generator and manager generates a password. This
password can include special characters; however, users have the
option of whether to do this. The user can then choose to save
this to a markdown file.
</p>
</div>
<a
href="https://github.com/ningerson2002/password-generator-manager"
target="_blank"
><button class="btn">Project Repository</button></a
>
</div>
<div class="card">
<div class="content">
<h4>YouTube Video Downloader</h4>
<p>
Tired of searching for YouTube to mp4 converters just to find out
that it's been taken down? Me too. This project allows the user to
download any YouTube video to their desktop or laptop using the
command-line interface. This program uses the pytube in order to
access the YouTube video(s) for download.
</p>
</div>
<a
href="https://github.com/ningerson2002/youtube-video-downloader"
target="_blank"
><button class="btn">Project Repository</button></a
>
</div>
<div class="card">
<div class="content">
<h4>CLI-based Bank Account</h4>
<p>
A fully functioning command line bank account system! You can
create multiple accounts, log into them, and conduct transactions.
This program uses object-oriented programming in Python in order
to strreamline the processes commonly associated with banking.
</p>
</div>
<a
href="https://github.com/ningerson2002/bank-account-cli"
target="_blank"
><button class="btn">Project Repository</button></a
>
</div>
<div class="card">
<div class="content">
<h4>Image Manipulation Project</h4>
<p>
This Python program uses the OpenCV library to perform various
bitwise operations on images. This was completed as a
computer-vision project for my CMPSC310, Artificial Intelligence
course sophomore year.
</p>
</div>
<a href="https://github.com/ningerson2002/weather-app" target="_blank"
><button class="btn">Project Repository</button></a
>
</div>
</div>
</section>
<footer class="container">
<span class="blur"></span>
<span class="blur"></span>
<div class="column">
<div class="logo">
<img src="assets/images/logo.png" />
</div>
<p>Thanks for visiting my site! Check out my socials:</p>
<div class="socials">
<a href="https://github.com/ningerson2002" target="_blank"
><i class="ri-github-fill"></i
></a>
<a href="https://twitter.com/ningerson2002" target="_blank"
><i class="ri-twitter-x-line"></i
></a>
<a href="https://linkedin.com/in/nicholasingerson" target="_blank"
><i class="ri-linkedin-fill"></i
></a>
</div>
</div>
<div class="column">
<h4>Contact</h4>
<a href="mailto: [email protected]">Email</a>
<a id="phone-number" href="">+1 (814) 462-4864</a>
<a
href="https://drive.google.com/file/d/1sQaoOOp1pZAMoCqtrG2r03ViePb7qpCv/view?usp=share_link"
target="_blank"
>Resume</a
>
</div>
</footer>
<div class="copyright">
Copyright © 2024 Nicholas Ingerson. All Rights Reserved.
</div>
<script src="../assets/scripts/app.js"></script>
</body>
</html>