-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
105 lines (100 loc) · 5.31 KB
/
resume.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
<!DOCTYPE html>
<html>
<head>
<title>Resume</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">My First Website: James' Junction</a>
</h1>
<img src="images/junction.png">
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">Resume</h1>
<div class="resume">
<a href="resume.pdf" download><strong>Download Resume</strong></a>
<section class="section">
<h2 class="section-title">Education</h2>
<div class="entry">
<h3 class="entry-title">California Polytechnic State University, San Luis Obispo</h3>
<p class="entry-info"><strong>BS Computer Engineering</strong><br>GPA: 3.79 | Expected Graduation 2026</p>
</div>
</section>
<section class="section">
<h2 class="section-title">Skills</h2>
<ul class="skills-list">
<li>Java</li>
<li>Python</li>
<li>SystemVerilog</li>
<li>RISC-V ASM</li>
<li>Git & GitHub</li>
<li>UML Documents & Flowcharts</li>
</ul>
</section>
<section class="section">
<h2 class="section-title">Projects</h2>
<p>See my projects in detail <a href="portfolio.html"><strong><em>here</em></strong></a></p>
<div class="entry">
<h3 class="entry-title">PacMan Remake</h3>
<p class="entry-info">A remake of the 2D game classic, PacMan! Built in Java without any game engines <br><a href="https://github.com/jam-kt/PacMan">See on GitHub</a></p>
</div>
<div class="entry">
<h3 class="entry-title">FPGA Digital Kitchen Timer</h3>
<p class="entry-info">A versatile kitchen timer with variable input, start, and reset functionality: all packaged as a FPGA using SystemVerilog</p>
</div>
<div class="entry">
<h3 class="entry-title">Huffman Encoder</h3>
<p class="entry-info">A Huffman Encoder built utilizing Python. Excellent for lossless text compression</p>
</div>
<div class="entry">
<h3 class="entry-title">Ray Casting Model</h3>
<p class="entry-info">A Python program to render 3D spheres in variable lighting as a static 2D image</p>
</div>
<div class="entry">
<h3 class="entry-title">Personal Website</h3>
<p class="entry-info">An exploration into HTML and CSS. Built using the Hack4Impact Starter Pack</p>
</div>
</section>
<section class="section">
<h2 class="section-title">Coursework</h2>
<ul class="course-list">
<li>Data Structures and Algorithms</li>
<li>Java & Object Oriented Programming</li>
<li>Intro to Digital Design</li>
<li>RISC-V Assembly & Computer Design</li>
<li>Multivariable Calculus | Linear Algebra & Differential Equations</li>
</ul>
</section>
<section class="section">
<h2 class="section-title">Work & Volunteer Experience</h2>
<div class="entry">
<h3 class="entry-title">Swim Club Volunteer Coach</h3>
<p class="entry-info">Volunteer coach for the Vacaville Swim Club for over 3 years</p>
<p class="entry-description">
-Worked with younger swimmers in the water to demonstrate technique (2 hrs weekly) <br>
-Volunteered at local and travel swim meets as a timer/hospitality (4 hrs monthly)
</p>
</div>
<div class="entry">
<h3 class="entry-title">City of Vacaville</h3>
<p class="entry-info">Lifeguard for the City of Vacaville</p>
<p class="entry-description">
-Interact with patrons and enforce water-safety rules <br>
-Create curriculum for and instruct group swimming lessons for children and adults
</p>
</div>
</section>
</div>
</main>
<footer class="footer">© 2023 My First Website: James' Junction | All Rights Reserved</footer>
</body>
</html>