-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
91 lines (85 loc) · 4.65 KB
/
resume.html
File metadata and controls
91 lines (85 loc) · 4.65 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
<!DOCTYPE html>
<html>
<head>
<title>
Keila's resume
</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo"><a href="index.html">personal 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">KEILA'S RESUME</h1>
<div class="resume">
<section class="section"><h2 class="section-title">Education</h2></section>
<div class="entry">
<h3 class="entry-title">California Polytechnic State University</h3>
<p class="entry-info">Computer Science Major 2020-2024</p>
<p class="entry-description">Minor in Computing for Interactive Arts</p>
</div>
<section class="section"><h2 class="section-title">Experience</h2></section>
<div class="entry">
<h3 class="entry-title">Applications/Software Engineer Intern</h3>
<p class="entry-info">
Microchip Technology Inc.
</p>
<p class="entry-description">
<p>
• Wrote an automated, Jenkins-integrated testing suite with Python and Google’s OpenHTF interacting with the CLI and REST API of two ultra-precise timing systems to validate the integrity of new firmware images.
</p>
<p>
• Gained comprehensive knowledge of NTP, PTP, and IRIG time synchronization, to produce a published application note on ultra-precise time server configuration for 300,000+ stakeholders.
</p>
• Enhanced back-end of Time Monitor Analyzer software in C to enable diverse data visualization options, including pulse waves and normal distribution curves, resulting in improved data representation for engineers.
</p>
</div>
<div class="entry">
<h3 class="entry-title">Software Engineer & Computer Science Tutor</h3>
<p class="entry-info">
Cal Poly SLO/University of Washington, Seattle
</p>
<p class="entry-description">
• Facilitated 1:1 debugging and testing sessions, resulting in an avg. of 15% university grade improvements.
<p>• Assisted students with Java data structure usage and manipulation (linked lists, hashmaps, stacks, trees, queues).
</p>
</p>
</div>
<section class="section"><h2 class="section-title">Projects</h2></section>
<div class="entry">
<h3 class="entry-title">AI Marine Life Detection</h3>
<p class="entry-info">
June 2023 - Present
</p>
<p class="entry-description">
<p>
• Train YOLOv7 deep learning model to detect oceanic wildlife in drone footage for marine conservation efforts.
</p>
<p>
• Meticulously organize a footage database in SQL for training and validation to ensure detection accuracy.
</p>
• Integrate artificial intelligence model in a full-stack web interface to be adopted by marine biologists.
</p>
</div>
<section class="section"><h2 class="section-title">Skills</h2>
<ul class="course-list">Languages: Java, C, Python, Bash, SQL, R, JavaScript, ARM Assembly, HTML/CSS, Racket
</ul>
</section>
<section class="section"><h2 class="section-title">Coursework</h2></section>
<ul class="course-list">
Data Structures, Analysis of Algorithms, Systems Programming, Statistical Programming, Computer
Architecture, Software Engineering I-II, Operating Systems, Databases, Programming Languages, Artificial Intelligence
</ul>
</div>
</main>
<footer class ="footer"></footer>
</body>
</html>