-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
91 lines (75 loc) · 4.03 KB
/
resume.html
File metadata and controls
91 lines (75 loc) · 4.03 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>
<meta charset="UTF-8">
<title>Daniel Miranda | Resume</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="rocket-lunch.png" type="image/x-icon">
</head>
<body>
<header>
<a href="index.html" class="logo">Daniel Miranda</a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="blog.html">Blog</a>
<a href="portfolio.html">Portfolio</a>
<a href="resume.html" class="active">Resume</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<div class="resume-title">
<h1>Check out my <span>Resume!</span></h1>
</div>
<div>
<a class="resume-link" href="Resume_1.4* copy.pdf" target="_blank">Download Resume</a>
</div>
<main>
<section class="resume-info">
<!-- Summary Section -->
<p class="summary">Seeking opportunities in backend development or embedded systems where I can leverage my technical skills and project experience to solve complex problems and contribute to innovative solutions.</p>
<!-- Education 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, CA<br>Sept. 2023 - June 2027</p>
<p class="entry-description">
Relevant coursework: Proj-Based Object-Oriented Programming & Design*, Introduction to Computer Organization*, Data Structures, Fundamentals of Computer Science (* indicates currently taking)<br>
Activities & Societies: Society of Hispanic Professional Engineers (SHPE)
</p>
</div>
<!-- Experience Section -->
<h1 class="section-title">Experience</h1>
<div class="entry">
<h3 class="entry-title">Front-End Web Developer</h3>
<p class="entry-info">Milli Transportation Inc., June 2024</p>
<p class="entry-description">Designed a front-end page for a trucking company using Python, HTML, CSS, and JavaScript to streamline client interaction. Collaborated with the company to adapt the webpage to specific business goals.</p>
</div>
<div class="entry">
<h3 class="entry-title">Back-End Software Engineer</h3>
<p class="entry-info">GeoGroove, June 2024 - Aug 2024</p>
<p class="entry-description">Developed a location-based music recommendation system utilizing Python, Leaflet.js, and various APIs to recommend music based on user location and preferences. Integrated learning algorithms to enhance user experience over time.</p>
</div>
<div class="entry">
<h3 class="entry-title">Front-End Software Engineer</h3>
<p class="entry-info">Abuelita's Kitchen, 2020-2021</p>
<p class="entry-description">Created a multi-page cooking and recipe website focusing on user-friendly navigation and visual appeal. Featured a collection of diverse recipes, allowing users to post reviews and sort dishes by relevance and ratings.</p>
</div>
<div class="entry">
<h3 class="entry-title">Software Engineer</h3>
<p class="entry-info">Nuke Type, Oct 2023 - Nov 2023</p>
<p class="entry-description">Co-developed a pop-up typing game using Python, Flask, and Tkinter, designed to improve typing speed and accuracy. Built core functionality and collaborated with a partner to ensure seamless gameplay.</p>
</div>
<!-- Skills Section -->
<h1 class="section-title">Skills</h1>
<ul class="skill-list">
<li>Front End: Python, Javascript, TypeScript, CSS, JSON, styled-components</li>
<li>Back End: C, C++, MySQL, Flask, JQuery</li>
<li>Developer Tools: Insomnia, Git, GitHub, Slack, npm</li>
</ul>
</section>
</main>
<footer class="footer">
<p>© 2024 Daniel Miranda | All Rights Reserved</p>
</footer>
</body>
</html>