forked from jitinnair1/autoCV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv-en.tex
292 lines (247 loc) · 13.7 KB
/
cv-en.tex
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
%-----------------------------------------------------------------------------------------------------------------------------------------------%
% The MIT License (MIT)
%
% Copyright (c) 2021 Jitin Nair
%
% Permission is hereby granted, free of charge, to any person obtaining a copy
% of this software and associated documentation files (the "Software"), to deal
% in the Software without restriction, including without limitation the rights
% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
% copies of the Software, and to permit persons to whom the Software is
% furnished to do so, subject to the following conditions:
%
% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
% THE SOFTWARE.
%
%
%-----------------------------------------------------------------------------------------------------------------------------------------------%
%----------------------------------------------------------------------------------------
% DOCUMENT DEFINITION
%----------------------------------------------------------------------------------------
% article class because we want to fully customize the page and not use a cv template
\documentclass[a4paper,12pt]{article}
%----------------------------------------------------------------------------------------
% FONT
%----------------------------------------------------------------------------------------
% % fontspec allows you to use TTF/OTF fonts directly
% \usepackage{fontspec}
% \defaultfontfeatures{Ligatures=TeX}
% % modified for ShareLaTeX use
% \setmainfont[
% SmallCapsFont = Fontin-SmallCaps.otf,
% BoldFont = Fontin-Bold.otf,
% ItalicFont = Fontin-Italic.otf
% ]
% {Fontin.otf}
%----------------------------------------------------------------------------------------
% PACKAGES
%----------------------------------------------------------------------------------------
\usepackage{url}
\usepackage{parskip}
%other packages for formatting
\RequirePackage{color}
\RequirePackage{graphicx}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage[scale=0.9]{geometry}
%tabularx environment
\usepackage{tabularx}
%for lists within experience section
\usepackage{enumitem}
% centered version of 'X' col. type
\newcolumntype{C}{>{\centering\arraybackslash}X}
%to prevent spillover of tabular into next pages
\usepackage{supertabular}
\usepackage{tabularx}
\newlength{\fullcollw}
\setlength{\fullcollw}{0.47\textwidth}
%custom \section
\usepackage{titlesec}
\usepackage{multicol}
\usepackage{multirow}
%CV Sections inspired by:
%http://stefano.italians.nl/archives/26
\titleformat{\section}{\Large\scshape\raggedright}{}{0em}{}[\titlerule]
\titlespacing{\section}{0pt}{10pt}{10pt}
%for publications
\usepackage[style=authoryear,sorting=ynt, maxbibnames=2]{biblatex}
%Setup hyperref package, and colours for links
\usepackage[unicode, draft=false]{hyperref}
\definecolor{linkcolour}{rgb}{0,0.2,0.6}
\hypersetup{colorlinks,breaklinks,urlcolor=linkcolour,linkcolor=linkcolour}
\addbibresource{citations.bib}
\setlength\bibitemsep{1em}
%for social icons
\usepackage{fontawesome5}
%debug page outer frames
%\usepackage{showframe}
%----------------------------------------------------------------------------------------
% BEGIN DOCUMENT
%----------------------------------------------------------------------------------------
\begin{document}
% non-numbered pages
\pagestyle{empty}
%----------------------------------------------------------------------------------------
% TITLE
%----------------------------------------------------------------------------------------
% \begin{tabularx}{\linewidth}{ @{}X X@{} }
% \huge{Your Name}\vspace{2pt} & \hfill \emoji{incoming-envelope} email@email.com \\
% \raisebox{-0.05\height}\faGithub\ username \ | \
% \raisebox{-0.00\height}\faLinkedin\ username \ | \ \raisebox{-0.05\height}\faGlobe \ mysite.com & \hfill \emoji{calling} number
% \end{tabularx}
\begin{tabularx}{\linewidth}{@{} C @{}}
\Huge{Mateus da Silva Rosario} \\[7.5pt]
\href{https://github.com/mateusrosario}{\raisebox{-0.05\height}\faGithub\ mateusrosario} \ $|$ \
\href{https://linkedin.com/in/mateus-rosario}{\raisebox{-0.05\height}\faLinkedin\ mateus-rosario} \ $|$ \
\href{tel:+55063981133108}{\raisebox{-0.05\height}\faMobile \ +55 063 98113-3108} \ $|$ \
\href{mailto:mateusrosario.me@gmail.com}{\raisebox{-0.05\height}\faEnvelope \ mateusrosario.me@gmail.com} \\
\\
\href{https://mateusrosario.github.io/portfolio/}{\raisebox{-0.05\height} \ \faGlobe \ My Portfolio}
\end{tabularx}
%----------------------------------------------------------------------------------------
% EXPERIENCE SECTIONS
%----------------------------------------------------------------------------------------
%Interests/ Keywords/ Summary
\section{About me}
I am a \textbf{Computer Scientist} passionate about development and programming. I am looking for opportunities to learn and grow professionally. With 2 years of experience in \textbf{FullStack development}, I have worked on the construction of \textbf{web systems} and \textbf{mobile apps} at all stages, from planning to post-launch. In addition, I have learned to make \textbf{assertive decisions}, \textbf{organize work}, \textbf{collaborate} and \textbf{lead teams}. I am passionate about solving problems with programming and always strive to deliver useful and intuitive experiences for users.
%----------------------------------------------------------------------------------------
% Experience
%----------------------------------------------------------------------------------------
\section{Experience}
\begin{tabularx}{\linewidth}{ @{}l r@{} }
\textbf{Internship - FullStack developer} & \hfill Oct. 2020 - Nov. 2022 \\
\textbf{- Software Factory, Federal University of Tocantins} & \hfill Tocantins, Brazil\\[3.75pt]
\multicolumn{2}{@{}X@{}}{
\begin{minipage}[t]{\linewidth}
\begin{itemize}[nosep,after=\strut, leftmargin=1em, itemsep=3pt]
\item[--] Development of a web System to Create, Revise and Manage the Courses Pedagogical Plans inside the University;
\item[--] Frameworks Angular, Django, and Rest API;
\item[--] JavaScript, TypeScript, Python, HTML and CSS Languages;
\item[--] MySQL databases.
\end{itemize}
\end{minipage}
}
\end{tabularx}
\begin{tabularx}{\linewidth}{ @{}l r@{} }
\textbf{Mandatory Internship - FullStack Developer} & \hfill Sept. 2019 - Nov. 2019 \\
\textbf{- Federal University of Tocantins} & \hfill Tocantins, Brazil\\[3.75pt]
\multicolumn{2}{@{}X@{}}{
\begin{minipage}[t]{\linewidth}
\begin{itemize}[nosep,after=\strut, leftmargin=1em, itemsep=3pt]
\item[--] Development of a web system to work as a Accounting Software for Educational Purposes;
\item[--] Frameworks Angular, Django, and Rest API;
\item[--] Languages JavaScript, TypeScript, Python, HTML and CSS;
\item[--] MySQL databases.
\end{itemize}
\end{minipage}
}
\end{tabularx}
%----------------------------------------------------------------------------------------
% Academic Works
%----------------------------------------------------------------------------------------
\section{Academic Works}
\begin{tabularx}{\linewidth}{ @{}l r@{} }
\textbf{GeoPorTOur University Extension Project} & \hfill June 2020 - Oct. 2020 \\
\textbf{- Proex, Federal University of Tocantins} & \hfill Tocantins, Brazil\\[3.75pt]
\multicolumn{2}{@{}X@{}}{
\begin{minipage}[t]{\linewidth}
\begin{itemize}[nosep,after=\strut, leftmargin=1em, itemsep=3pt]
\item[--] Development of the \href{https://play.google.com/store/apps/details?id=com.fabricadesoftwareuft.geoportour}{GePorTour} mobile application for social education about the Porto Nacional city (Tocantins, Brazil) historical landmarks;
\item[--] Dart Language;
\item[--] Firebase Platform;
\item[--] RestFull API Consumption.
\end{itemize}
\end{minipage}
}
\end{tabularx}
\begin{tabularx}{\linewidth}{ @{}l r@{} }
\textbf{Work published in conference proceedings} & \hfill 2018 \\
\textbf{- XI SECCOMP, Federal University of Tocantins} & \hfill Tocantins, Brazil\\[3.75pt]
\multicolumn{2}{@{}X@{}}{
ROSARIO, M. ; ALMEIDA, M. ; Arruda, W.C. ; LIMA, RAFAEL . Comparative analysis between basic GA and NSGA-II using Rastrigin function. In: XI SECCOMP - Academic Week of the Computer Science Course, 2018, Palmas-TO. Proceedings of XI SECCOMP - Academic Week of the Computer Science Course, 2018.
}
\end{tabularx}
\begin{tabularx}{\linewidth}{ @{}l r@{} }
\textbf{Undergraduate research project} & \hfill June 2018 - June 2019 \\
\textbf{- Federal University of Tocantins} & \hfill Tocantins, Brazil\\[3.75pt]
\multicolumn{2}{@{}X@{}}{
Mateus da Silva Rosario. Evaluation of transgenic and homogeneous genetic algorithms. 2019. Undergraduate research project. (Undergraduate in Computer Science) - Federal University of Tocantins. Advisor: Rafael Lima de Carvalho.
}
\end{tabularx}
%----------------------------------------------------------------------------------------
% Habilidades e Competências
%----------------------------------------------------------------------------------------
\section{Skills}
\begin{tabularx}{\linewidth}{@{}l X@{}}
\multicolumn{2}{@{}X@{}}{
\begin{minipage}[t]{\linewidth}
\begin{itemize}[nosep,after=\strut, leftmargin=1em, itemsep=3pt]
\item [--] \textbf{Quick learning} and \textbf{Problem analysis} capability;
\item [--] Competence for \textbf{team work}, \textbf{leadership} and \textbf{problem solving};
\item [--] Domain and plain knowledge in \textbf{programming};
\item [--] Knowledge of clean code and domain on \textbf{good practices};
\item [--] Experience with \textbf{agile development} frameworks \textbf{(Scrum)};
\item [--] Domain in programming languages \textbf{C}, \textbf{Python}, \textbf{Java}, \textbf{JavaScript}, \textbf{TypeScript}, \textbf{Dart} and \textbf{Swift};
\item [--] Experience with \textbf{SQL} and \textbf{NoSql} databases as \textbf{MySQL}, \textbf{Firebase}, and \textbf{IBMCloud};
\item [--] Experience with \textbf{mobile development} with \textbf{Flutter} and \textbf{SwiftUI};
\item [--] Backend experience in \textbf{Django} Framework;
\item [--] Experience and Domain of the \textbf{Angular} Framework;
\item [--] Knowledge and project working with \textbf{React} library;
\item [--] Domain and experience with \textbf{HTML and CSS};
\item [--] Experience with \textbf{Frontend} and \textbf{Backend} systems with communication through \textbf{RestFull APIs};
\item [--] Experience with \textbf{Git} and related tools;
\item [--] Knowledge in \textbf{Computer Networks}.
\item [--] Knowledge in \textbf{Machine Learing} and \textbf{Artificial Intelligence}.
\end{itemize}
\end{minipage}
}
\end{tabularx}
%----------------------------------------------------------------------------------------
% EDUCATION
%----------------------------------------------------------------------------------------
\section{Education}
\begin{tabularx}{\linewidth}{lXr}
2017 - 2023 & Bachelor's Degree in Computer Science at \textbf{Federal University of Tocantins} & \hfill Tocantins, Brazil \\\\
2014 - 2017 & High School Integrated with technical in Land Surveying course at \textbf{Federal Institute of Technology of Tocantins} & \hfill Tocantins, Brazil \\
2010 - 2013 & Elementary Education at \textbf{Caroline Campelo Cruz da Silva School} & \hfill Tocantins, Brazil \\
\end{tabularx}
%----------------------------------------------------------------------------------------
% Languages
%----------------------------------------------------------------------------------------
\section{Languages}
\begin{tabularx}{\linewidth}{@{}l X@{}}
\textbf{Advanced English} & \hfill Language Center - Federal University of Tocantins \\
% \textbf{Basic German} & \hfill Deutsche Welle Online Course \\
\textbf{Portuguese Native Speaker}
\end{tabularx}
% %----------------------------------------------------------------------------------------
% % Plubications
% %----------------------------------------------------------------------------------------
% \section{Atividades Acadêmicas}
% \begin{refsection}[citations.bib]
% \nocite{*}
% \printbibliography[heading=none]
% \end{refsection}
% %----------------------------------------------------------------------------------------
% % Projects
% %----------------------------------------------------------------------------------------
% \section{Projects}
% \begin{tabularx}{\linewidth}{ @{}l r@{} }
% \textbf{Some Project} & \hfill \href{https://some-link.com}{Link to Demo} \\[3.75pt]
% \multicolumn{2}{@{}X@{}}{long long line of blah blah that will wrap when the table fills the column width long long line of blah blah that will wrap when the table fills the column width long long line of blah blah that will wrap when the table fills the column width long long line of blah blah that will wrap when the table fills the column width} \\
% \end{tabularx}
% %----------------------------------------------------------------------------------------
% % SKILLS
% %----------------------------------------------------------------------------------------
% \section{Skills}
% \begin{tabularx}{\linewidth}{@{}l X@{}}
% Some Skills & \normalsize{This, That, Some of this and that etc.}\\
% Some More Skills & \normalsize{Also some more of this, Some more that, And some of this and that etc.}\\
% \end{tabularx}
\vfill
\center{\footnotesize Last update: July 13, 2023}
\end{document}