-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (110 loc) · 5.1 KB
/
index.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
<!DOCTYPE html>
<!--
Author: Jonathan Rayo
Class: Software Engineering
Project: Web Resume/ Lab 2
Description: This is my best attempt at making a resume with the limited web development
skills that I possess.
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, inital-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Web Resume</title>
</head>
<body>
<div class="topDiv">
<h1>Jonathan Rayo</h1>
<p>Chicago, IL 60666 • <a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div class="sectionDiv">
<h2><strong><font size="6">EDUCATION</font></strong></h2>
<p><span class="tab"></span>Bachelor of Science - Computer Engineering - <em>Lewis University</em></p>
<p><span class="tab"></span>Romeville, IL • Expected <em>Spring 2022</em> </p>
<ul><span class="tab">
<li><strong>GPA: 3.5/4.0</strong></li>
<li><strong>Deans List: Fall 2020, Spring 2021, Fall 2021</strong></li>
<li>Minor: Computer Science</li>
<li>Clubs: IEEE (Institute of Electrical and Electronics Engineers) - <em>Treasurer</em></li>
</span></ul>
</div>
<div class="sectionDiv">
<h2><strong><font size="6">RELEVANT COURSE WORK</strong></font></h2>
<span class="tab">
<div class="leftColumn">
<ul>
<li>Object-Oriented Programming</li>
<li>Electric Circuits</li>
<li>Embedded Systems</li>
<li>Calculus I, II, III</li>
</ul>
</div>
<div class="middleColumn">
<ul>
<li>Software Engineering</li>
<li>Engineering Graphics</li>
<li>Engineering Desgin</li>
<li>Differential Equations</li>
</ul>
</div>
<div class="rightColumn">
<ul>
<li>Applied Statistics and Probability</li>
<li>Logic Design</li>
<li>Computer Architecture</li>
<li>Physics I, II</li>
</ul>
</div>
</span>
</div>
<div class="sectionDiv">
<h3><font size="6"><strong>SKILLS</strong></font></h3>
<span class="tab">
<p><strong>Software: </strong>Java, Python, C, C++, Swift, Assembly Language, Xilinx Vivado, AutoCAD, Microsoft Office, Logisim, Tina TI Spice, PSpice for TI</p>
<p><strong>Hardware: </strong>Oscilloscope, Multimeter, Arduino, NUCLEO-F746ZG-STM32, Rasberry PI, PIXHAWK 4</p>
<p><strong>Practical: </strong>Communication, Coachable, Fluent in Spanish, Organized, Team Player </p>
</span>
</div>
<div class="sectionDiv">
<h4><font size="6"><strong>Projects</strong></font></h4>
<span class="tab">
<p><strong>Biometric Car Key</strong></p>
<span class="projectTab">
<ul>
<li>Takes a fingerprint and registers the biometric data to the key remote.</li>
<li>Uses the AS608 fingerprint reader connected to the Arduino UNO microcontroller to help improve vehicle security.</li>
<li>Recognizes the biometric data with 95% accuracy.</li>
</ul>
</span>
<p><strong>Arduino Traffic Light Simulator</strong></p>
<span class="projectTab">
<ul>
<li>Simulates Chicago’s traffic light system which stays on green for 30 seconds, yellow for 3 seconds, and red for 30 seconds in a continuous loop until turned off. </li>
</ul>
</span>
<p><strong>LED Sound Sensor</strong></p>
<span class="projectTab">
<ul>
<li>Worked on an integrated circuit that detected sound based on frequency to change color of LED light bulbs.</li>
</ul>
</span>
</span>
</div>
<div class ="sectionDiv">
<h5><font size="6"><strong>Employment History</strong></font></h5>
<span class="tab">
<p><strong>Restaurant Manager</strong><span class="tab"></span><span class="tab"></span>08/2018-Current</p>
<p>Francesco’s Bros Pizzeria – 1207 W. Irving Park Rd, Bensenville, IL 60106</p>
<span class="projectTab">
<ul>
<li>Lead of team of Cooks and Delivery Drivers to successfully complete food orders in a timely manner</li>
<li>Filed end-of-month tax information.</li>
<li>Worked on Business Website.</li>
</ul>
</span>
</span>
</div>
</body>
</html>