-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
120 lines (116 loc) · 6.37 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
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume</title>
<link rel="icon" type="image/x-icon" href="/assets/img/favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lexend:[email protected]&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Vinpatrik Magdangal</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 id="resume-download" href="assets/vmagdang_resume.pdf" download>Download Resume</a>
<div class="resume">
<section class="section">
<h2 class="section-title">Education</h2>
<div class="entry">
<h3 class="entry-title">Bachelor of Science in Computer Science</h3>
<p class="entry-info"><em>California Polytechnic State University, San Luis Obispo</em></p>
<p class="entry-description">June 2025</p>
</div>
</section>
<section class="section">
<h2 class="section-title">Experience</h2>
<div class="entry">
<h3 class="entry-title">Instructional Student Assistant</h3>
<p class="entry-info">California Polytechnic State University, San Luis Obispo<br><em>April 2024 - June 2024</em></p>
<p class="entry-description">● Worked alongside instructors for a class on databases, relational models, and using SQL queries on MySQL Workbench.<br>
● Assisted and gave feedback to instructors to update existing class content to provide a better
educational experience for students.<br>
● Utilized a deep understanding of SQL to grade college-level coursework and give feedback on SQL queries
for dozens of students.</p>
</div>
<div class="entry">
<h3 class="entry-title">Student Assistant - Food Service</h3>
<p class="entry-info">Cal Poly Dining<br><em>January 2024 - June 2023</em></p>
<p class="entry-description">● Demonstrated excellent teamwork, time management, customer service, and communication skills</p>
</div>
</section>
<section class="section">
<h2 class="section-title">Projects</h2>
<div class="entry">
<h3 class="entry-title">OrganizZen</h3>
<p class="entry-info">Intro to Software Engineering Final<br><em>Utilized Tools: Figma, Javascript, React, Node.JS, Express.JS, MongoDB, Microsoft Azure, AGILE Development</em></p>
<p class="entry-description">● Created a web application that helps users manage tasks during their daily lives<br>
● Used Figma to create a high-fidelity prototype and gathered feedback to improve design<br>
● Fully set up a backend to save data between user sessions, then hosted on Azure</p>
</div>
<div class="entry">
<h3 class="entry-title">Recipea</h3>
<p class="entry-info">UXFest Designathon Entry<br><em>Utilized Tools: Figma, Google Forms</em></p>
<p class="entry-description">● Worked alongside a team to design mobile app in Figma that generates cooking recipes<br>
● Responsible for conducting user testing and providing feedback to the rest of the team<br>
● Designed a responsive sign-up page in Figma based on feedback from peers and users</p>
</div>
<div class="entry">
<h3 class="entry-title">BobaBot</h3>
<p class="entry-info">Personal Project<br><em>Utilized Tools: Javascript, discord.js</em></p>
<p class="entry-description">● Created a bot on the Discord social platform that allows users to play a game where they run a virtual boba shop<br>
● Allowed users to use buttons and chat messages to navigate menus and unlock new ingredients</p>
</div>
</section>
<section class="section">
<h2 class="section-title">Coursework</h2>
<ul class="course-list">
<li>User-Centered Interface Design and Development</li>
<li>Introduction to Database Systems</li>
<li>Introduction to Software Engineering</li>
<li>Programming Languages</li>
<li>Introduction to Computer Security</li>
<li>Systems Programming</li>
<li>Design and Analysis of Algorithms</li>
<li>Data Structures</li>
<li>Computer Architecture</li>
<li>Project-Based Object-Oriented Programming and Design</li>
</ul>
</section>
<section class="section">
<h2 class="section-title">Skills</h2>
<ul class="skill-list">
<li>Javascript</li>
<li>Python</li>
<li>Java</li>
<li>C</li>
<li>Racket</li>
<li>SQL</li>
<li>CSS</li>
<li>HTML</li>
<li>Figma</li>
<li>Git</li>
<li>Microsoft Office</li>
<li>Google Workspace</li>
<li>Adobe Photoshop</li>
<li>Adobe Illustrator</li>
</ul>
</section>
</div>
</main>
<footer class="footer">© 2024 Vin's Personal Site | All Rights Reserved</footer>
</body>
</html>