-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
395 lines (395 loc) · 16.2 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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
<!doctype html>
<html class="h-screen overflow-hidden" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jayden Pahukula</title>
<link rel="icon" type="img/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="src/index.css" />
<script defer type="module" src="src/index.js"></script>
</head>
<body class="h-screen overflow-y-auto overflow-x-hidden [perspective:1px]">
<div
id="background"
class="absolute z-[-1] w-[101vw] [transform:translateZ(-2px)_scale(3)]"
></div>
<main id="main">
<div id="content" class="flex w-full flex-col items-center py-8">
<section class="flex h-[85vh] w-11/12 max-w-5xl items-center">
<div
class="card grid-rows-[50%_1fr] gap-4 p-4 sm:p-5 md:grid md:grid-cols-[40%_1fr] md:grid-rows-1 md:gap-8 lg:grid-cols-[35%_1fr]"
>
<img
class="mb-3 h-full max-h-52 w-full max-w-60 justify-self-center rounded-md object-cover object-top md:mb-0 md:max-h-none md:max-w-none"
src="/img/me.jpg"
/>
<div class="flex flex-col items-center md:items-start md:py-3">
<p class="my-1 text-center text-2xl font-bold md:text-left">
Hey! My name is
</p>
<h1
class="flex items-center pb-4 text-center text-5xl font-bold [flex-grow:2] md:text-left md:text-[4rem]"
>
Jayden Pahukula
</h1>
<p class="mb-0 flex flex-grow text-2xl font-bold md:text-3xl">
Software Engineer
</p>
<div class="mb-3 flex flex-grow flex-row gap-2">
<img
class="h-5 self-center md:h-6 md:self-start"
src="/svg/location-black.svg"
/>
<p class="mb-0 text-2xl font-bold md:text-3xl">Golden, CO</p>
</div>
<div class="flex flex-grow items-end gap-4">
<a
class="button bg-linkedinblue"
href="https://www.linkedin.com/in/jaydenpahukula/"
target="noopener noreferrer"
>
<img src="/svg/linkedin-white.svg" />
</a>
<a
class="button bg-buttonblue p-1"
href="https://github.com/JaydenPahukula"
target="noopener noreferrer"
>
<img src="/svg/github-white.svg" />
</a>
<a
class="button bg-buttongray"
href="mailto:[email protected]"
target="noopener noreferrer"
>
<img src="/svg/mail-white.svg" />
</a>
<a
class="button"
href="resume.pdf"
target="noopener noreferrer"
>
<img src="/svg/resume-white.svg" />
</a>
</div>
</div>
</div>
</section>
<section class="mb-24 flex w-11/12 max-w-4xl flex-col gap-4">
<div class="card p-2">
<h2 class="text-center text-3xl font-bold sm:text-4xl">Projects</h2>
</div>
<!-- ================== JCHORDS ================== -->
<div class="project-card">
<div class="project-img-container group">
<a href="https://jchords.com" target="noopener noreferrer">
<div
class="project-img flex items-center justify-center text-center"
>
<i>*insert picture here*</i>
</div>
</a>
</div>
<div class="project-content">
<div class="project-header-row">
<h3 class="project-header">JChords</h3>
<a
class="button"
href="https://jchords.com"
target="noopener noreferrer"
>
<img src="/svg/open-arrow-white.svg" />
<label class="button-text">Try it</label>
</a>
<a
class="button bg-buttonblue"
href="https://github.com/JaydenPahukula/jchords"
target="noopener noreferrer"
>
<img src="/svg/github-white.svg" />
<label class="button-text">Github</label>
</a>
</div>
<div class="h-full overflow-y-auto">
<p>
A homemade webapp for hosting and viewing chord charts. I play
piano, and I got tired of existing sites being paywalled and
full of ads, so I made my own!
</p>
<p>
Through this project I learned React, TypeScript, Firebase,
state management with Redux, and much more.
</p>
</div>
</div>
</div>
<!-- ================== SCRABBLE ================== -->
<div class="project-card">
<div class="project-img-container group">
<a href="scrabble/" target="noopener noreferrer">
<img class="project-img object-top" src="/img/scrabble.png" />
</a>
</div>
<div class="project-content">
<div class="project-header-row">
<h3 class="project-header">Scrabble</h3>
<a class="button" href="scrabble/" target="noopener noreferrer">
<img src="/svg/open-arrow-white.svg" />
<label class="button-text">Try it</label>
</a>
<a
class="button bg-buttonblue"
href="https://github.com/JaydenPahukula/scrabble"
target="noopener noreferrer"
>
<img src="/svg/github-white.svg" />
<label class="button-text">Github</label>
</a>
</div>
<div class="h-full overflow-y-auto">
<p>
A simple scrabble algorithm that plays on an infinitely
scrolling board.
</p>
<p>Created with vanilla TypeScript and p5.js.</p>
</div>
</div>
</div>
<!-- ================== DOCKER DASH ================== -->
<div class="project-card">
<div class="project-img-container group">
<a href="https://jchords.com" target="noopener noreferrer">
<img class="project-img object-top" src="/img/dockerdash.jpg" />
</a>
</div>
<div class="project-content">
<div class="project-header-row">
<h3 class="project-header">Docker Dash</h3>
<a
class="button bg-buttonblue"
href="https://github.com/jaxsonp/docker-dash"
target="noopener noreferrer"
>
<img src="/svg/github-white.svg" />
<label class="button-text">Github</label>
</a>
</div>
<div class="h-full overflow-y-auto">
<p>
A dashboard to monitor server status and manage apps running
as Docker containers on a server.
</p>
<p>
This is my 2023 summer internship project for the
<a
class="link"
href="https://arl.hawaii.edu"
target="noopener noreferrer"
>Applied Research Lab at the University of Hawai‘i</a
>. It was a team project and I created the backend with a
Python Flask API that interfaced with Docker, and supported
multiple servers running swarm mode.
</p>
</div>
</div>
</div>
<!-- ================== MINES MAP ================== -->
<div class="project-card">
<div class="project-img-container group">
<a
href="https://devpost.com/software/mines-map"
target="noopener noreferrer"
>
<img class="project-img object-top" src="/img/minesmap.png" />
</a>
</div>
<div class="project-content">
<div class="project-header-row">
<h3 class="project-header">Mines Map</h3>
<a
class="button bg-devpostteal"
href="https://devpost.com/software/mines-map"
target="noopener noreferrer"
>
<img src="/svg/devpost-white.svg" />
<label class="button-text">Devpost</label>
</a>
<a
class="button bg-buttonblue"
href="https://github.com/TheGreatRambler/MinesMap"
target="noopener noreferrer"
>
<img src="/svg/github-white.svg" />
<label class="button-text">Github</label>
</a>
</div>
<div class="h-full overflow-y-auto">
<p>
An interactive map of the Mines campus to help guests and new
students navigate inside buildings.
</p>
<p>
This project was a team project that won 1st place in the
general advanced division at
<a
class="link"
href="https://blasterhacks.devpost.com/"
target="noopener noreferrer"
>Blasterhacks 2024</a
>! It is made with Three.js, Solid.js, and Tailwind. I plan on
building into a full app in the future!
</p>
</div>
</div>
</div>
<div class="grid grid-cols-2 gap-4">
<!-- ================== MINESWEEPER ================== -->
<div class="project-card-small">
<div class="project-img-container-top group">
<a
href="https://github.com/JaydenPahukula/minesweeper"
target="noopener noreferrer"
>
<img class="project-img" src="/img/minesweeper.png" />
</a>
</div>
<div class="project-content-small">
<div class="project-header-row mb-1 sm:mb-2">
<h3 class="project-header">Minesweeper</h3>
<a
class="button bg-buttonblue"
href="https://github.com/JaydenPahukula/minesweeper"
target="noopener noreferrer"
>
<img src="/svg/github-white.svg" />
</a>
</div>
<p>It's minesweeper. Built with C++ and SFML.</p>
</div>
</div>
<!-- ================== LABWC MANAGER ================== -->
<div class="project-card-small">
<div class="project-img-container-top group">
<a
href="https://github.com/JaydenPahukula/labwc-manager"
target="noopener noreferrer"
>
<img class="project-img" src="/img/labwcmanager.jpg" />
</a>
</div>
<div class="project-content-small">
<div class="project-header-row mb-1 sm:mb-2">
<h3 class="project-header">Labwc Manager</h3>
<a
class="button bg-buttonblue"
href="https://github.com/JaydenPahukula/labwc-manager"
target="noopener noreferrer"
>
<img src="/svg/github-white.svg" />
</a>
</div>
<p>Manage your labwc configuration with Nix Home Manager!</p>
</div>
</div>
<!-- ================== THIS SITE ================== -->
<div
class="project-card-small overflow-visible bg-opacity-0 shadow-none"
>
<div class="project-img-container-top"></div>
<div
class="project-content-small box-shadow overflow-hidden rounded-b-lg bg-bglight"
>
<div class="project-header-row mb-1 sm:mb-2">
<h3 class="project-header">This Site!</h3>
<a class="button" href="/">
<img src="/svg/open-arrow-white.svg" />
</a>
<a
class="button bg-buttonblue"
href="https://github.com/JaydenPahukula/jaydenp.dev"
target="noopener noreferrer"
>
<img src="/svg/github-white.svg" />
</a>
</div>
<p class="mb-0">
Made with vanilla JS and p5.js.
<a class="link" href="koi/">Click here</a> to admire the
fish...
</p>
</div>
</div>
</div>
</section>
<section class="mb-24 w-11/12 max-w-4xl">
<div class="card flex justify-center p-6 pb-8 text-lg sm:text-xl">
<div class="max-w-xl">
<h2 class="mb-4 text-center text-3xl font-bold sm:text-4xl">
About Me
</h2>
<p class="indent-10">
I am a software engineer and senior in computer science student
at Colorado School of Mines. I am a turbo nerd and I love
coding, so I am extremely grateful to be in a field where I can
do what I love.
</p>
<p class="indent-10">
I was born in Oregon and raised in Hawai'i, on the island of
Maui. I like playing pickup volleyball, hiking, cliff jumping,
and playing poker with my friends. I also enjoy playing piano,
and when I am home for break you can find me playing on my
church's worship team.
</p>
<p class="indent-10">
If you haven't already, scroll up to see some projects that I
have done, and for specific information about my experience,
check out my resume:
</p>
<div class="flex justify-center">
<a
class="button"
href="resume.pdf"
target="noopener noreferrer"
>
<img src="/svg/resume-white.svg" />
<label class="button-text block">Resume</label>
</a>
</div>
</div>
</div>
</section>
<section class="w-11/12 max-w-2xl">
<div class="card flex flex-col items-center gap-3 p-4 pt-5 text-lg">
<div class="flex flex-grow items-end gap-4">
<a
class="button bg-linkedinblue"
href="https://www.linkedin.com/in/jaydenpahukula/"
target="noopener noreferrer"
>
<img src="/svg/linkedin-white.svg" />
</a>
<a
class="button bg-buttonblue p-1"
href="https://github.com/JaydenPahukula"
target="noopener noreferrer"
>
<img src="/svg/github-white.svg" />
</a>
<a
class="button bg-buttongray"
href="mailto:[email protected]"
target="noopener noreferrer"
>
<img src="/svg/mail-white.svg" />
</a>
<a class="button" href="resume.pdf" target="noopener noreferrer">
<img src="/svg/resume-white.svg" />
</a>
</div>
<p class="mb-0">Copyright (c) 2025 Jayden Pahukula</p>
</div>
</section>
</div>
</main>
</body>
</html>