-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.tex
326 lines (270 loc) · 13.5 KB
/
cv.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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
%-----------------------------------------------------------------------------------------------------------------------------------------------%
% 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}
\usepackage[bitstream-charter]{mathdesign}
\usepackage[T1]{fontenc}
%other packages for formatting
\RequirePackage{color}
\RequirePackage{graphicx}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage[scale=1]{geometry}
\geometry{
a4paper,
total={170mm,257mm},
left=20mm,
right=20mm,
top=30mm,
}
%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 protected] \\
% \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{Jorge Luis Alvarado} \\[7.5pt]
\href{https://github.com/jorge-alvarado-revata}{\raisebox{-0.05\height}\faGithub\ jorge-alvarado-revata} \ $|$ \
\href{mailto:[email protected]}{\raisebox{-0.05\height}\faEnvelope \ [email protected]} \ $|$ \
\href{tel:+51926137221}{\raisebox{-0.05\height}\faMobile \ +51-926-137-221} \\
\end{tabularx}
%----------------------------------------------------------------------------------------
% EXPERIENCE SECTIONS
%----------------------------------------------------------------------------------------
%Interests/ Keywords/ Summary
\section{Resumen}
Ingeniero de Sistemas (UNMSM) con experiencia en roles Developer, Senior Developer, Líder técnico en tecnología Web, APIs y aplicaciones transaccionales en banca y sector público. Experto en Angular, ASP.NET, Java Spring Boot; implementación de consumo de servicios REST, SOAP WSDL, autenticación OAUTH e integración de seguridad cloud. Experiencia en Angular hasta versiones actuales. Experiencia en Flutter. Docente en Python y Angular.
\section{Objetivos}
Lograr la satisfacción del cliente atendiendo pro-activamente las necesidades del proyecto.
Desarrollar componentes y APIs de gran calidad, con código legible, ordenado y siguiendo mejores prácticas de programación, programación reactiva, patrones cloud y principios SOLID.
\begin{minipage}[t]{\linewidth}
\begin{itemize}[nosep,after=\strut, leftmargin=1em, itemsep=3pt]
\item[--] Lograr la satisfacción del cliente atendiendo pro-activamente las necesidades del proyecto.
\item[--] Desarrollar componentes y APIs de gran calidad, con código legible, ordenado y siguiendo mejores prácticas de programación, programación reactiva, patrones cloud y principios SOLID.
\end{itemize}
\end{minipage}
%Experience
\section{Experiencia}
\textsl{FRONTEND DEVELOPER}\\[3.75pt]
\begin{tabularx}{\linewidth}{ @{}l r@{} }
\textsl{INETUM, PERÚ – Contraloría General del Perú} & \hfill Octubre 2023 - Febrero 2024 \\[3.75pt]
\multicolumn{2}{@{}X@{}}{
\begin{minipage}[t]{\linewidth}
\begin{itemize}[nosep,after=\strut, leftmargin=1em, itemsep=3pt]
\item[--] Implemente nuevos componentes de datasource en aplicativo generador de formularios.
\item[--] Implemente de microservicios en Java 17 para consultas de servicios SOAP de seguridad.
\item[--] Implemente microservicios para gestión de configuración de plantillas y tablas de procesos base de datos ORACLE Database.
\item[--] Implemente esquema de validación de parametros de entrada a los APIs.
\item[--] Implemente adecuadamente integración con API para Logging.
\end{itemize}
\end{minipage}
}
\end{tabularx}
\textsl{SENIOR DEVELOPER}\\[3.75pt]
\begin{tabularx}{\linewidth}{ @{}l r@{} }
\textsl{MINEDU, PERÚ – CONCURSO DOCENTE 2023} & \hfill Mayo 2023 - Junio 2023 \\[3.75pt]
\multicolumn{2}{@{}X@{}}{
\begin{minipage}[t]{\linewidth}
\begin{itemize}[nosep,after=\strut, leftmargin=1em, itemsep=3pt]
\item[--] Implemente exitosamente nuevos microservicios C\# con esquemas de validación.
\item[--] Optimización de aplicativo Flutter, mejoras en consumo front de alta concurrencia.
\item[--] Microservicios para gestión de configuración de plantillas y tablas de procesos.
\item[--] Optimización de consumo de servicios RabbitMQ.
\end{itemize}
\end{minipage}
}
\end{tabularx}
\textsl{SENIOR DEVELOPER}\\[3.75pt]
\begin{tabularx}{\linewidth}{ @{}l r@{} }
\textsl{MINEDU, PERÚ – PROYECTO SAISA} & \hfill Julio 2022 - Marzo 2023 \\[3.75pt]
\multicolumn{2}{@{}X@{}}{
\begin{minipage}[t]{\linewidth}
\begin{itemize}[nosep,after=\strut, leftmargin=1em, itemsep=3pt]
\item[--] Implemente de componentes reutilizables en Angular ReactiveForm, integración con servicios BackEnd con Microservicios C\# y base de datos SQL Server.
\item[--] Implemente componentes BackEnd MinIO AWS-S3 para carga y descarga de documentos pdf.
\item[--] Implemente componentes de reportes PDF.
\end{itemize}
\end{minipage}
}
\end{tabularx}
\newpage
\textsl{SENIOR DEVELOPER}\\[3.75pt]
\begin{tabularx}{\linewidth}{ @{}l r@{} }
\textsl{INTELEGO SCRL, PERÚ – GESTOR DE COMPRAS CLOUD} & \hfill Febrero 2021 - Mayo 2022 \\[3.75pt]
\multicolumn{2}{@{}X@{}}{
\begin{minipage}[t]{\linewidth}
\begin{itemize}[nosep,after=\strut, leftmargin=1em, itemsep=3pt]
\item[--] Implemente un sistema de gestión de compras para restaurantes y servicios de catering en Angular 9, Python Django y Flutter 2, implementación de uso de sistemas de autenticación cloud con Firebase.
\item[--] Implemente carga de imágenes en servicios cloud.
\item[--] Implemente componentes de tablas y formularios de carga y visualización.
\end{itemize}
\end{minipage}
}
\end{tabularx}
\textsl{DOCENTE}\\[3.75pt]
\begin{tabularx}{\linewidth}{ @{}l r@{} }
\textsl{UTEC, PERÚ – DOCENTE CURSOS PRESENCIAL} & \hfill Febrero 2017 - Enero 2020 \\[3.75pt]
\multicolumn{2}{@{}X@{}}{
\begin{minipage}[t]{\linewidth}
\begin{itemize}[nosep,after=\strut, leftmargin=1em, itemsep=3pt]
\item[--] Profesor de programación en Python y C++.
\item[--] Profesor de curso de Servicios empresariales.
\end{itemize}
\end{minipage}
}
\end{tabularx}
\textsl{CONSULTOR}\\[3.75pt]
\begin{tabularx}{\linewidth}{ @{}l r@{} }
\textsl{OP ENERGETICA SAC, PERÚ – CONSULTORIA SISTEMAS} & \hfill Junio 2014 - MAyo 2016 \\[3.75pt]
\multicolumn{2}{@{}X@{}}{
\begin{minipage}[t]{\linewidth}
\begin{itemize}[nosep,after=\strut, leftmargin=1em, itemsep=3pt]
\item[--] Diseño y desarrollo de sistema de carga laboral obreros en Jquery, Bootstrap, C\#.
\item[--] Diseño y desarrollo de gestor de planificación de emergencias en Javascript, Bootstrap, Python.
\end{itemize}
\end{minipage}
}
\end{tabularx}
\textsl{LÍDER DE EQUIPO}\\[3.75pt]
\begin{tabularx}{\linewidth}{ @{}l r@{} }
\textsl{NTT DATA, PERÚ – Jefatura y Líder técnico} & \hfill Abril 2012 - Julio 2013 \\[3.75pt]
\multicolumn{2}{@{}X@{}}{
\begin{minipage}[t]{\linewidth}
\begin{itemize}[nosep,after=\strut, leftmargin=1em, itemsep=3pt]
\item[--] Estimación, seguimiento de proyectos, participación en sesiones de diseño técnico-supervisión y apoyo a equipo de 10 analistas programadores.
\end{itemize}
\end{minipage}
}
\end{tabularx}
\textsl{ANALISTA DESARROLLADOR}\\[3.75pt]
\begin{tabularx}{\linewidth}{ @{}l r@{} }
\textsl{BCP, PERÚ – ANÁLISIS Y DISEÑO} & \hfill Enero 2003 - Marzo 2012 \\[3.75pt]
\multicolumn{2}{@{}X@{}}{
\begin{minipage}[t]{\linewidth}
\begin{itemize}[nosep,after=\strut, leftmargin=1em, itemsep=3pt]
\item[--] Liderazgo técnico de proyecto Banca Mobile y proyecto nuevo Web Inversiones.
\item[--] Análisis y Diseño de arquitectura motor de pagos Banca Mobile, nuevo componentes MessageQueue.
\item[--] Análisis y Diseño de aplicaciones en equipo HomeBanking (Web Tasas y Tarifas, Inmuebles, Verified ByVisa).
\item[--] Mantenimiento y pase a producción de aplicaciones Web para clientes de la banca personal, Apps de pasarela de Videos.
\item[--] Mantenimiento de aplicativo Teller atención ventanilla.
\end{itemize}
\end{minipage}
}
\end{tabularx}
%----------------------------------------------------------------------------------------
% EDUCATION
%----------------------------------------------------------------------------------------
\section{EDUCACIÓN}
\begin{tabularx}{\linewidth}{@{}l X@{}}
2023 - present & Maestría Estadística Matemática \hfill \textsl{UNMSM} \\
2009 - 2010 & Máster en I+D+i \hfill \textsl{UNIA.ES} \\
2005 - 2007 & Ingles Intermedio B2 \hfill \textsl{IST Peruano Británico} \\
1997 - 2003 & Ingeniería de Sistemas \hfill \textsl{UNMSM} \\
\end{tabularx}
%Projects
\section{CERTIFICADOS}
\begin{tabularx}{\linewidth}{@{}l X@{}}
ENERO 2023 & Building AI \hfill \textsl{MinnaLearn \& University of Helsinki} \\
OCT 2021 & AWS Machine Learning Foundation \hfill \textsl{Udacity} \\
SEP 2020 & Modern JavaScript ES6 \hfill \textsl{Coursera} \\
AGO 2020 & Google Cloud Fundamentals: Core Infrastructure \hfill \textsl{Coursera} \\
ENERO 2019 & Elements of AI \hfill \textsl{University of Helsinki \& Reacktor} \\
MAYO 2004 & Microsoft Certified Solution Developer \hfill \textsl{Microsoft} \\
\end{tabularx}
%----------------------------------------------------------------------------------------
% SKILLS
%----------------------------------------------------------------------------------------
\section{HABILIDADES}
\begin{tabularx}{\linewidth}{@{}l X@{}}
Front & \normalsize{JavaScript, TypeScript, Angular 17, Jasmine, RxJS, NgRX}\\
Mobile & \normalsize{Flutter, LocalStorage, SQLite } \\
UI & \normalsize{Material Design, Bootstrap, TailWind, CSS}\\
Framework & \normalsize{Django, ASP.NET, .NET Core, Spring Boot, DRF, FastAPI, Swagger}\\
Language & \normalsize{Python, C\#, Java, C++, T-SQL, PL/SQL }\\
Cloud & \normalsize{Google Cloud, AWS, Firebase Auth, Firebase storage}\\
Versioning & \normalsize{git, gitlab, Docker, gestión de ramas}\\
BD & \normalsize{SQL Server, Oracle Database, PostgreSQL }\\
\end{tabularx}
\vfill
\center{\footnotesize Última versión: \today}
\end{document}