Update to use scons.

This commit is contained in:
Nicolás A. Ortega Froysa 2022-11-26 15:04:35 +01:00
parent 3a73fb2c98
commit 9435842db8
70 changed files with 49 additions and 4 deletions

2
.gitignore vendored
View File

@ -2,6 +2,8 @@
*.log
*.out
*.pdf
*.fls
.sconsign.dblite
!resume_en.pdf
!resume_es.pdf

9
SConstruct Normal file
View File

@ -0,0 +1,9 @@
import os
# Setup LaTeX environment
env = Environment()
env.Replace(PDFLATEX="xelatex")
# Run scripts for each language
SConscript("en/SConscript", exports="env")
SConscript("es/SConscript", exports="env")

3
en/SConscript Normal file
View File

@ -0,0 +1,3 @@
Import("env")
env = env.Clone()
env.PDF("resume_cv.tex")

View File

@ -16,7 +16,7 @@
{Degree in Administration of Computer Networks} % Degree
{CEU San Pablo Andalucía} % Institution
{Bormujos, Spain} % Location
{PRESENT} % Date(s)
{2021 - Est. 2023} % Date(s)
{ % Description(s) bullet points
\begin{cvitems}
\item {Exercises in Linux system administration.}

View File

@ -12,6 +12,20 @@
%------------------------------------------------
\cventry
{Junior C++ Developer}
{Zevenet}
{Mairena del Aljarafe, Spain}
{Sep. 2022 - PRESENT}
{
\begin{cvitems}
\item Programming with modern C++ standards (C++17).
\item Team collaboration in a dynamic project environment.
\item Code repository management using Git CVS.
\item Maintaining build system using CMake.
\end{cvitems}
}
\cventry
{Developer - Co-Project Leader}
{DMUX}

3
es/SConscript Normal file
View File

@ -0,0 +1,3 @@
Import("env")
env = env.Clone()
env.PDF("resume_cv.tex")

View File

@ -16,7 +16,7 @@
{Ciclo Superior de Administración de Sistemas Informáticos en Red} % Degree
{CEU San Pablo Andalucía} % Institution
{Bormujos, España} % Location
{PRESENTE} % Date(s)
{2021 - Est. 2023} % Date(s)
{ % Description(s) bullet points
\begin{cvitems}
\item {Ejercicios con administración de sistemas Linux.}

View File

@ -12,9 +12,23 @@
%------------------------------------------------
\cventry
{Desarrollador Junior de C++}
{Zevenet}
{Mairena del Aljarafe, España}
{Sep. 2022 - PRESENTE}
{
\begin{cvitems}
\item Programación usando estándares modernos de C++ (C++17).
\item Colaboración en equipo en proyecto modular.
\item Gestión de repositorios con Git.
\item Mantenimiento de sistema de compilación en CMake.
\end{cvitems}
}
\cventry
{Desarrollador - Co-Director de Proyecto}
{DMUX}
{Collective Tyranny}
{Remoto}
{Sep. 2015 - Nov. 2016}
{
@ -27,6 +41,7 @@
\end{cvitems}
}
\iffalse
\cventry
{Administrador Web}
{Servicio de Asistencia Religiosa de la Universidad de Sevilla}
@ -42,7 +57,6 @@
\end{cvitems}
}
\iffalse
\cventry
{Auxiliar de Inglés}
{Clases Privadas de Inglés}

Binary file not shown.

Binary file not shown.