-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
111 lines (111 loc) · 7.83 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
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<title>Personal Website</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">Resume</h1>
<a href="Anna_Huang_Resume.pdf" download class="button">Download Resume</a>
<div class="resume">
<section class="section"></section>
<h1 class="section-title">Education</h1>
<div class="entry">
<h3 class="entry-title">Bachelor of Science in Computer Science</h3>
<p class="entry-info">California Polytechnic State University, San Luis Obispo | Expected Graduation May 2027</h3>
<p class="entry-description">Dean's List: Fall '23 | Winter '24 | Spring '24 | Summer '24</p>
</div>
<section class="section"></section>
<h1 class="section-title">Experience</h1>
<div class="entry">
<h3 class="entry-title">Public Health Intern</h3>
<h3 class="entry-info">SFDPH - Population Health Division | June 2024 – July 2024</h3>
<p class="entry-description">
<ul class="entry-bullets">
<li>Assisted in the collection and analysis of public health data, contributing to the development of strategies for improving community health outcomes</li>
<li>Developed a mock community assessment project to apply and demonstrate understanding of public health evaluation techniques and data analysis</li>
<li>Gained in-depth knowledge of public health policies, programs, and practices through hands-on experience with the Population Health Division</li>
</ul>
</p>
<h3 class="entry-title">Barista</h3>
<h3 class="entry-info">Starbucks | April 2021 – October 2023</h3>
<p class="entry-description">
<ul class="entry-bullets">
<li>Collaborated with team members to maintain efficiency in food and beverage preparation</li>
<li>Ensured compliance with food safety regulations and cleanliness standards</li>
<li>Provided exceptional customer service to ensure customer satisfaction and customer retention</li>
</ul>
</p>
<h3 class="entry-title">Technology Intern</h3>
<h3 class="entry-info">Each One Teach One | June 2023 – August 2023</h3>
<p class="entry-description">
<ul class="entry-bullets">
<li>Designed a functioning professional website for the non-profit ISSASF (Information Systems Security Association San Francisco Chapter)</li>
<li>Developed proficiency in Python, HTML, CSS through hands-on coding projects</li>
<li>Utilized VS code and Github for version control and collaboration</li>
</ul>
</p>
<h3 class="entry-title">Intern</h3>
<h3 class="entry-info">Code Tenderloin | July 2021 – August 2021</h3>
<p class="entry-description">
<ul class="entry-bullets">
<li>Acquired foundational skills in web development using HTML and CSS</li>
<li>Adapted to remote work environment and effectively communicated with peers</li>
<li>Demonstrated effective communication skills by sharing personal stories and goals through the creation of a
personal website integrating technical training and soft skills</li>
</ul>
</p>
</div>
<section class="section"></section>
<h1 class="section-title">Projects</h1>
<div class="entry">
<h3 class="entry-title">Jigsaw Puzzle</h3>
<h3 class="entry-info">Senior Capstone Project | California Polytechnic State University, San Luis Obispo</h3>
<p class="entry-description">
<ul class="entry-bullets">
<li>Developed an interactive jigsaw puzzle game tailored for seniors using Godot, focusing on accessibility and
user-friendly interface</li>
<li>Integrated Firebase as the backend database to manage user progress, store puzzle data, and facilitate real-time
updates and interactions</li>
<li>Implemented features such as adjustable difficulty levels and customizable puzzle sizes to cater to varying levels of
cognitive and visual ability among senior users</li>
</ul>
</p>
<h3 class="entry-title">SLO Hacks</h3>
<h3 class="entry-info">California Polytechnic State University, San Luis Obispo</h3>
<p class="entry-description">
<ul class="entry-bullets">
<li>Co-founded Poly Exchange with a team of three other members, creating an online marketplace dedicated to
facilitating the exchange of used goods and services among students, promoting cost savings and sustainability</li>
<li>Collaboratively developed and launched Poly Exchange platform, enabling users to register, list items, and connect
for transactions, ensuring a seamless user experience across front-end and back-end functionalities</li>
<li>Successfully delivered a polished final product in less than 24 hours with a focus on usability and aesthetic appeal,
leveraging Flask framework expertise gained during development</li>
</ul>
</p>
</div>
<section class="section"></section>
<h1 class="section-title">Skills</h1>
<h3 class="sub-sections">Languages</h3>
<p class="entry-description">Java | Python | C/C++ | JavaScript | HTML | CSS | GDScript</p>
<h3 class="sub-sections">Developer Tools</h3>
<p class="entry-description">Git | VS Code | PyCharm | IntelliJ | Unix</p>
<section class="section"></section>
<h1 class="section-title">Coursework</h1>
<p class="entry-description">Fundamentals of Computer Science | Data Structures | Intro to Computer Organization | Project Based Object Oriented Programming and Design | Discrete Structures | Systems Programming</p>
</div>
</main>
<footer class="footer">© 2023 Anna Huang Personal Website | All Rights Reserved</footer>
</body>
</html>