-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
162 lines (143 loc) · 6.44 KB
/
index.html
File metadata and controls
162 lines (143 loc) · 6.44 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Derek Tinoco - Resume</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 30px;
line-height: 1.5;
max-width: 1000px;
margin: 0 auto;
color: #000;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.header-left {
text-align: left;
}
.header-center {
text-align: center;
flex-grow: 1;
}
.header-right {
text-align: right;
}
h1 {
font-size: 32px;
margin: 0;
text-align: center;
font-weight: bold;
}
h2 {
margin-top: 15px;
margin-bottom: 5px;
border-bottom: 1px solid #000;
padding-bottom: 3px;
font-size: 18px;
}
ul {
margin-top: 5px;
margin-bottom: 5px;
padding-left: 20px;
}
li {
margin-bottom: 5px;
}
.education-header {
display: flex;
justify-content: space-between;
margin-bottom: 5px;
}
.project {
margin-top: 15px;
}
.project-name {
font-weight: bold;
margin-bottom: 5px;
}
.bullet-prefix {
display: inline-block;
width: 15px;
margin-right: 5px;
}
.indent {
margin-left: 20px;
}
</style>
</head>
<body>
<div class="header">
<div class="header-left">
Salt Lake City, UT
</div>
<div class="header-center">
<h1>Derek Tinoco</h1>
</div>
<div class="header-right">
(801) 580-1697<br>
tinocoderek@hotmail.com
</div>
</div>
<h2>Education</h2>
<div class="education-header">
<div>Salt Lake City, Utah</div>
<div>University of Utah</div>
<div>August 2022 - December 2026</div>
</div>
<ul>
<li>B.S. in Computer Science: August 2022 - December 2026</li>
<li>GPA: 3.29</li>
<li>Applicable coursework: Object Oriented Programming, Data structures and Algorithms, Computer Organization, Software Engineering I and II,</li>
</ul>
<h2>Technical Experience</h2>
<div>Projects</div>
<div class="project">
<div class="project-name">Networking Application</div>
<div class="indent">
<div><span class="bullet-prefix">–</span>Developed a C# networking client and server using the .NET Maui framework and test driven development with a focus on clean/readable code</div>
<div><span class="bullet-prefix">–</span>Implemented a low-latency TCP/IP client protocol facilitating communication between disparate networks, learning about websockets in the process while using git for version control</div>
<div><span class="bullet-prefix">–</span>Designed GUI for the server and client interfaces</div>
<div><span class="bullet-prefix">–</span>Used Microsoft's Maui for the frontend which allowed cross platform development and an easy to maintain and scalable technology stack (collaborative with C ecosystem)</div>
<div><span class="bullet-prefix">–</span>Employed a multi-level logging system to capture detailed system information, enabling efficient analytical debugging</div>
</div>
</div>
<div class="project">
<div class="project-name">Spreadsheet Application</div>
<div class="indent">
<div><span class="bullet-prefix">–</span>A C# spreadsheet with a GUI utilizing the .NET Maui framework</div>
<div><span class="bullet-prefix">–</span>Implemented a strategic infix notation algorithm for simple arithmetic on the backend</div>
<div><span class="bullet-prefix">–</span>Used Microsoft's Maui for the frontend</div>
<div><span class="bullet-prefix">–</span>Utilized Regular Expressions to evaluate Formulas</div>
<div><span class="bullet-prefix">–</span>Used Software practices: Unit testing, Design control, Software Development Life Cycle</div>
</div>
</div>
<div class="project">
<div class="project-name">QT Image Sprite Editor</div>
<div class="indent">
<div><span class="bullet-prefix">–</span>Collaborated on the development of a sprite editor using the Qt framework alongside C++, with pixel-level control and animation management for pixel art with Git version control, made use of agile methodology</div>
<div><span class="bullet-prefix">–</span>Enabled canvas size engineering within set bounds, manage frames to build sprite animations, and modify pixels by drawing, erasing, and selecting colors for sprite design with QT sliders and QT image and QT widgets for the front end</div>
<div><span class="bullet-prefix">–</span>Created an animation preview feature for reviewing sprite motion and save/load functionality for project continuity, enhancing user workflow and productivity in sprite creation</div>
<div><span class="bullet-prefix">–</span>Added file menu options for efficient saving and loading, making use of JSON in the process</div>
</div>
</div>
<h2>Languages and Technologies</h2>
<ul>
<li>Python application development, docker, spring, Java; Junit testing, C#; Xamarin XML forms, C++, Microsoft Office, PowerPoint, Word, Excel, Linux, Windows, Unix, Docker, Agile methodologies, MySQL</li>
</ul>
<h2>Extracurriculars</h2>
<div class="project">
<div><strong>JUMP Program</strong> Danaher January 2024 - May 2024 Hybrid</div>
<div class="indent">
<div><span class="bullet-prefix">•</span>Engaged in comprehensive technical sessions and workshops, learning about technical methodologies relevant to STEM careers. This involved hands-on learning experiences about cutting-edge tools and technologies crucial for data analytics and problem-solving.</div>
</div>
</div>
</body>
</html>