Update to use scons.
This commit is contained in:
parent
3a73fb2c98
commit
9435842db8
2
.gitignore
vendored
2
.gitignore
vendored
@ -2,6 +2,8 @@
|
||||
*.log
|
||||
*.out
|
||||
*.pdf
|
||||
*.fls
|
||||
.sconsign.dblite
|
||||
|
||||
!resume_en.pdf
|
||||
!resume_es.pdf
|
||||
|
9
SConstruct
Normal file
9
SConstruct
Normal 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
3
en/SConscript
Normal file
@ -0,0 +1,3 @@
|
||||
Import("env")
|
||||
env = env.Clone()
|
||||
env.PDF("resume_cv.tex")
|
@ -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.}
|
@ -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
3
es/SConscript
Normal file
@ -0,0 +1,3 @@
|
||||
Import("env")
|
||||
env = env.Clone()
|
||||
env.PDF("resume_cv.tex")
|
@ -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.}
|
@ -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}
|
BIN
resume_en.pdf
BIN
resume_en.pdf
Binary file not shown.
BIN
resume_es.pdf
BIN
resume_es.pdf
Binary file not shown.
Loading…
Reference in New Issue
Block a user