-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
98 lines (90 loc) · 3.66 KB
/
resume.html
File metadata and controls
98 lines (90 loc) · 3.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Personal Website</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class= "logo">
<a href="index.html">Aaron's Website</a></h1>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">Resume</h1>
<a href="Resume.pdf" download class="download-link">Download Resume</a>
<div class="resume-box">
<section>
<h2>Technical Skills</h2>
<ul>
<li><strong>Languages:</strong> Python, C/C++, Java, JavaScript, SystemVerilog, RISC-V Assembly</li>
<li><strong>Tools:</strong> Spring Boot, PostgreSQL, Git, STM32CubeIDE, Xilinx Vivado, VS Code, PyCharm, IntelliJ</li>
<li><strong>Hardware:</strong> STM32, BASYS3 FPGA, LTspice, UART, PWM, I2C, SPI</li>
</ul>
</section>
<section>
<h2>Experience</h2>
<div class="job">
<div class="job-header">
<h3>MiTiara | Backend Developer</h3>
<span class="date">June 2024 – September 2024 | Hybrid</span>
</div>
<ul>
<li>Built MiTiara backend in Spring Boot + PostgreSQL for an event-vendor booking platform.</li>
<li>Collaborated with frontend developers to align APIs and error handling for seamless integration.</li>
<li>Tested and optimized API performance for reliability and user satisfaction.</li>
</ul>
</div>
<div class="job">
<div class="job-header">
<h3>Battle Bots Project | Electrical & Control Systems Engineer</h3>
<span class="date">September 2025 – Present | Cal Poly SLO</span>
</div>
<ul>
<li>Developing motor control and power systems for a 250 lb BattleBot in collaboration with teammates.</li>
<li>Diagnosing RoboClaw controllers, calibrating AmpFlow motors, and synchronizing wheel speeds.</li>
<li>Designing PWM drive systems, wiring layouts, and safety mechanisms per BattleBots regulations.</li>
</ul>
</div>
</section>
<section>
<h2>Projects</h2>
<div class="job">
<div class="job-header">
<h3>32-bit Otter MCU | SystemVerilog, RISC-V Assembly, BASYS3 FPGA</h3>
<span class="date">September 2024 – December 2024</span>
</div>
<ul>
<li>Implemented a custom 32-bit RISC-V MCU with compliant interrupt handling.</li>
<li>Verified functionality through simulation and synthesis on a BASYS3 FPGA.</li>
<li>Enhanced performance with pipelining, hazard detection, and cache integration.</li>
</ul>
</div>
<div class="job">
<div class="job-header">
<h3>Automatic Parking Gate | Embedded Systems Project</h3>
<span class="date">April 2024 – June 2024</span>
</div>
<ul>
<li>Developed a secure automatic parking gate with ultrasonic sensor, motor driver, and keypad.</li>
<li>Programmed C firmware for passcode generation, UART display, PWM control, and interrupts.</li>
<li>Tested sensor reliability, timing, and motor accuracy for optimal performance.</li>
</ul>
</div>
</section>
<section>
<h2>Education</h2>
<p><strong>California Polytechnic State University, San Luis Obispo</strong><br>
Bachelor of Science in Computer Engineering | <em>Expected Graduation June 2026</em></p>
</section>
</div>
</main>
<footer class="footer"><strong>© 2025 Personal Website | All Rights Reserved | Made with LOVE and AFFECTION</strong></footer>
</body>
</html>