This repository was archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.source.html
552 lines (544 loc) · 18.6 KB
/
index.source.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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
<!DOCTYPE html>
<html lang="en">
<!--
Copyright © 2021-2024 Max Rodriguez. All rights reserved.
-->
<head>
<title>maxrdz.com</title>
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta property='og:site_name' content='maxrdz'>
<meta property='og:type' content='website'>
<meta property='og:updated_time' content='2024-04-19T18:37:00-07:00'/>
</head>
<style>
/* GNOME's Cantarell Font */
@font-face {
font-family: 'Cantarell', sans-serif;
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://maxrdz.com/resources/Cantarell-VF.otf) format('otf');
}
::-moz-selection {
background-color: transparent;
}
::selection {
background-color: transparent;
}
body {
margin: 0;
background-color: #101010;
}
.top {
position: fixed;
width: 100%;
}
.header {
background-color: #0b0f18;
padding: 1%;
vertical-align: middle;
}
.navbar {
background-color: #0b0f18;
text-decoration: none;
}
.footer {
background-color: #0b0f18;
font-family: 'Cantarell', sans-serif;
position: fixed;
width: 100%;
bottom: 0;
}
#contact {
display: flex; /* Fill in Margin */
justify-content: center; /* Even Margins */
}
.impression {
background-color: #101010;
}
.navbar ul {
list-style-type: none;
margin: 0;
padding: 0.1%;
}
a {
color: white;
background-color: none;
text-decoration: none;
font-family: 'Cantarell', sans-serif;
font-weight: 700;
display: flex;
}
a p {
margin: 0;
padding: 0;
}
a:hover {
opacity: 60%;
}
/* Portfolio Sections */
#about_me {
margin-top: 3%;
margin-bottom: 5%;
}
#education {
margin-bottom: 6%;
}
#my_skills {
margin-bottom: 10%;
}
#my_skills li {
list-style-type: square;
text-align: left;
font-size: 100%;
}
#my_skills div {
width: 100%;
margin: 0 auto;
display: flex;
justify-content: center;
}
#my_skills a {
display: block;
color: #5ea9ff;
}
.my_projects {
margin-bottom: 10%;
}
.my_projects article {
margin-top: 8%;
text-align: center;
margin-left: 10%;
margin-right: 10%;
margin-bottom: 13%;
}
.my_projects article h1 {
font-size: 200%;
}
.my_projects article a {
display: block;
color: #5ea9ff;
}
.img_bigger_container_lol {
width: 100%;
display: flex;
margin: 0 auto;
justify-content: center;
}
#title {
width: 100%;
margin: 0 auto;
display: flex; /* Fill in Margin */
justify-content: center; /* Even Margins */
padding: 1%;
}
.author {
font-family: 'Cantarell', sans-serif;
font-weight: 400;
color: white;
margin: 0;
font-size: 170%;
margin-top: 1.3%;
margin-left: 1.7%;
}
.img_container {
height: 100%;
width: 100%;
}
.img_container img {
height: auto;
width: 100%;
}
.copyright {
text-align: center;
margin: 0 auto;
color: #b3b3b3;
padding-top: 2%;
padding-bottom: 1.5%;
width: 100%;
font-size: 95%;
}
.portfolio {
background-color: #101010;
font-family: 'Cantarell', sans-serif;
font-weight: 300;
margin: 0 auto;
text-align: center;
color: rgb(230, 230, 230);
width: 95%;
}
.portfolio h2 {
font-size: 140%;
font-weight: 400;
}
.portfolio h3 {
font-weight: 400;
}
.navbar li {
display: inline-block;
text-decoration: none;
margin: 2%;
margin-right: 2.3%; /* Contact Links Spacing */
}
#social_links {
margin-top: 10%;
margin-bottom: 15%;
}
#social_links p {
font-size: 150%;
}
#social_links li {
display: flex;
justify-content: center;
text-decoration: none;
margin: 0 auto;
padding: 1%;
}
#author_image {
width: 2.75em;
height: 2.75em;
}
h3 {
font-size: 100%;
}
#job_experience {
margin-bottom: 6%;
margin-top: 20%;
margin-left: 5%;
margin-right: 5%;
}
#job_experience a {
display: block;
color: #5ea9ff;
font-size: 90%;
}
#job_experience table {
width: 100%;
margin: 0 auto;
justify-content: center;
border-collapse: collapse;
table-layout: auto;
}
#job_experience tr {
width: 100%;
}
#job_experience th, td {
word-wrap: break-word;
overflow-x: hidden;
text-align: left;
padding: 2%;
border: 1px solid #939393;
}
/* Tablet/Desktop Scaling */
@media only screen and (min-width: 700px) {
#author_image {
width: 2.75em;
height: 2.75em;
}
#title {
padding: 0%;
}
.author {
font-size: 175%;
margin-top: 0.2em;
margin-left: 0.4em;
}
.img_container {
width: 70%;
}
.img_container img {
width: 25em;
height: 100%;
}
.copyright {
padding-top: .5%;
padding-bottom: .3%;
width: 80%;
}
#job_experience {
margin-top: 0%;
margin-left: 20%;
margin-right: 20%;
}
#job_experience th, td {
white-space: nowrap;
}
.portfolio {
width: 60%;
}
.portfolio h2 {
font-size: 150%;
}
.portfolio section h1 {
font-family: 'Cantarell', sans-serif;
font-weight: 600;
font-size: 235%;
}
.navbar li {
margin: 0.5%;
margin-right: 0.5%; /* Contact Links Spacing */
}
h3 {
font-size: 120%;
}
#social_links {
margin-top: 0%;
margin-bottom: 20%;
}
#social_links li {
display: inline-block;
width: auto;
margin: 0.5%;
margin-right: 0.5%;
}
#social_links p {
font-size: 200%;
}
.my_projects article {
margin-bottom: 0%;
}
#my_skills li {
font-size: 120%;
}
.header {
padding-top: 0.5%;
padding-bottom: 0.1%;
}
}
</style>
<body>
<div class="top">
<div class="header">
<div id="title">
<img src="resources/logo.png" alt="Site Logo" id="author_image">
<h1 class="author">Max Rodriguez</h1>
</div>
</div>
<div class="navbar">
<ul id="contact">
<li>
<a href="https://floss.social/@maxrdz">
<img src="resources/mastodon.svg" alt="Twitter Logo" width="22px" height="22px">
<p>  Mastodon</p>
</a>
</li>
<li>
<a href="https://www.gitlab.com/maxrdz">
<img src="resources/gitlab.svg" alt="GitLab Logo" width="22px" height="22px">
<p>  GitLab</P>
</a>
</li>
<li>
<a href="https://www.github.com/maxrdz">
<img src="resources/github.svg" alt="Github Logo" width="22px" height="22px">
<p>  Github</p>
</a>
</li>
<li>
<a href="mailto:[email protected]">
<img src="resources/email.svg" alt="Email Icon" width="22px" height="22px">
<p>  Email</p>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="impression">
<picture>
<source srcset="resources/homescreen_MOBILE.jpg" media="(max-width: 700px)">
<source srcset="resources/homescreen_TABLET.jpg" media="(max-width: 1550px)">
<source srcset="resources/homescreen_DESKTOP.jpg">
<img src="resources/homescreen.jpg" alt="Home" width=100% height=auto>
</picture>
</div>
<div class="portfolio">
<section id="about_me">
<h1>About Me</h1>
<h3>
I've been doing software development as a hobby since 2018 and intend to learn and create
software for a living in the near future.
Since, I have been exploring new technologies such as cloud computing and modern
server operating systems such as Windows Server and Linux.
</h3>
</section>
<section id="education">
<h1>Education</h1>
<h3>
I am currently enrolled at Glendale Community College and working towards an
<br>Associate in Applied Sciences (AAS) in Computer Programming and Systems Analysis degree.
</h3>
</section>
<section id="my_skills">
<h1 style="font-size: 230%;">My Skills</h1>
<div>
<ul>
<li>Bilingual; Fluent in both English and Spanish</li>
<li>Experienced on Object-Oriented Programming</li>
<li>Strong knowledge of Rust, C++, Python, and JS/TS</li>
<li>3 Years of experience using GNU/Linux systems</li>
<li>4 years of experience using Git VCS and Github</li>
<li>Basic experience with Google Cloud Platform</li>
</ul>
</div>
<h1 style="font-size: 150%;">Google Cloud Skills</h1>
<h2 style="font-size: 120%"><a href="https://www.cloudskillsboost.google/public_profiles/c6ce8515-dd34-4e10-807d-7146a4a141f6">See my Google Cloud Skill Badges</a></h2>
</section>
<section class="my_projects">
<h1 style="font-size: 300%;">My Portfolio</h1>
<article>
<h1>Memories for GNOME</h1>
<div class="img_bigger_container_lol">
<div class="img_container">
<img src="resources/com.maxrdz.Memories.jpg">
</div>
</div>
<h2>
A photo and video album application for GNOME.
This project helped me start learning the GTK4
GUI widget toolkit and its underlying libraries
that are the foundation for the GNOME desktop.
</h2>
<h2>
<a href="https://gitlab.gnome.org/maxrdz/Memories">
Link to Project Repository</a>
</h2>
</article>
<article>
<h1>Donet Network Engine</h1>
<div class="img_bigger_container_lol">
<div class="img_container">
<img src="resources/donet-banner.png">
</div>
</div>
<h2>
The Donet software project is a free and open-source
recreation of Disney's OTP (Online Theme Park) server, which was
used from 2001 to 2013 for Disney Interactive's online
massive multiplayer games, such as Toontown Online,
Pirates of the Carribean Online, Cars Online, and others.
</h2>
<h2>
<a href="https://www.donet-server.org/">
Link to Donet website</a>
</h2>
</article>
<article>
<h1>Vulkray 3D Game Engine</h1>
<div class="img_bigger_container_lol">
<div class="img_container">
<img src="resources/vulkray-banner.jpg">
</div>
</div>
<h2>
In July of 2022, I started to explore computer 3D graphics and learn how
traditional 3D graphics worked using hardware acceleration. The 3D engine
makes use of the graphics processor using the Vulkan graphics API and GLSL.
</h2>
<h2>
<a href="https://github.com/Vulkray/Vulkray">
Link to Open Source project</a>
</h2>
</article>
<article>
<h1>Poparazzi Private Web API</h1>
<div class="img_bigger_container_lol">
<div class="img_container">
<img src="resources/poparazzi.jpg">
</div>
</div>
<h2>
In June 2022, I built my first open source API implementation using TypeScript.
This project documents and implements the private Web API and streaming API for
the Poparazzi social media platform and mobile app.
</h2>
<h2>
<a href="https://github.com/maxrdz/poparazzi-private-api">
Link to Open Source project</a>
</h2>
</article>
<article>
<h1>Garmin Watch App</h1>
<div class="img_bigger_container_lol">
<div class="img_container">
<img src="resources/watchface.jpg">
</div>
</div>
<h2>
This is a Garmin watchface application I built using the Garmin SDK
and the Monkey C language. It's a simple watchface application I made for myself,
which currently has around 13,000 downloads.
</h2>
<h2>
<a href="https://apps.garmin.com/en-US/apps/ce1f646c-91d3-4119-b89e-e1c2ce3360b5">
Link to Garmin Application</a>
</h2>
</article>
<article>
<h1>Twitter Automation</h1>
<div class="img_bigger_container_lol">
<div class="img_container">
<img src="resources/twitter.jpg">
</div>
</div>
<h2>
This is a twitter media bot I developed using Python. This was my first
experience using a public Rest API and learnt how to use a Python
module to request from an API endpoint and use that information
to automatically generate posts and publish media.
</h2>
<h2>
<a href="https://www.github.com/maxrdz/Silly-Meter-Twitter">
Link to Project Source Code</a>
</h2>
</article>
</section>
<section id="social_links">
<h1 style="font-size: 240%;">Contact Me</h1>
<li style="padding-left: 1%;">
<a href="https://floss.social/@maxrdz">
<img src="resources/mastodon.svg" alt="Twitter Logo" width="40px" height="40px">
<p>  Mastodon</p>
</a>
</li>
<li>
<a href="https://www.gitlab.com/maxrdz">
<img src="resources/gitlab.svg" alt="GitLab Logo" width="22px" height="22px">
<p>  GitLab</P>
</a>
</li>
<li>
<a href="https://www.github.com/maxrdz">
<img src="resources/github.svg" alt="Github Logo" width="40px" height="40px">
<p>  Github</p>
</a>
</li>
<li>
<a href="mailto:[email protected]">
<img src="resources/email.svg" alt="Email Icon" width="40px" height="40px">
<p>  Email</p>
</a>
</li>
<br><br>
<h3>Download my PGP Public Key <a style="display: inline; color: skyblue;" href="./maxrdz.pub.asc">here</a>.</h3>
<h3>PGP Key Fingerprint: 22B8 53B2 94E6 5641 BD65 B806 5A36 4831 AE2B 1D4A</h3>
<h3>Read <a style="display: inline; color: skyblue;" href="https://www.gnupg.org/gph/en/manual/x547.html">"Building Your Web of Trust"</a>, an inspiring article from gnupg.org.</h3>
<br>
<h2>Matrix: @maxrdz:matrix.org</h2>
<h2>Mastodon: <a rel="me" style="display: inline;" href="https://floss.social/@maxrdz">@[email protected]</a></h2>
<br><br>
</section>
</div>
<div class="footer">
<div class="copyright">
Copyright © 2021-2024 Max Rodriguez. All rights reserved.
</div>
</div>
</body>
</html>