Skip to content

Commit

Permalink
touch up summary
Browse files Browse the repository at this point in the history
  • Loading branch information
carlossless committed Sep 21, 2019
1 parent 0b4d4f7 commit b2f22ec
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 5 deletions.
40 changes: 40 additions & 0 deletions awesome-cv.cls
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,46 @@
\newcommand*{\letternamestyle}[1]{{\fontsize{10pt}{1em}\bodyfont\bfseries\color{darktext} #1}}
\newcommand*{\letterenclosurestyle}[1]{{\fontsize{10pt}{1em}\bodyfontlight\slshape\color{lighttext} #1}}

% Utils
\usepackage{datenumber}
\usepackage{calc}

\newcounter{datetoday}
\newcounter{diffyears}
\newcounter{diffmonths}
\newcounter{diffdays}

\newcommand{\yearsofexperience}[3]{%
\setmydatenumber{datetoday}{\the\year}{\the\month}{\the\day}%
\setmydatenumber{diffdays}{#1}{#2}{#3}%
\addtocounter{diffdays}{-\thedatetoday}%
\ifnum\value{diffdays}>0
\def\diffbefore{in }%
\def\diffafter{}%
\else
\def\diffbefore{}%
\def\diffafter{ago}%
\setcounter{diffdays}{-\value{diffdays}}%
\fi
\setcounter{diffyears}{\value{diffdays}/365}%
\setcounter{diffdays}{\value{diffdays}-365*\value{diffyears}}%
\setcounter{diffmonths}{\value{diffdays}/30}%
\setcounter{diffdays}{\value{diffdays}-30*\value{diffmonths}}%
%
\ifnum\value{diffyears}=0
\else
\thediffyears
\ifnum\value{diffmonths}>1
+
\fi
\ifnum\value{diffyears}>1
years
\else
year
\fi
\fi
}


%-------------------------------------------------------------------------------
% Commands for personal information
Expand Down
2 changes: 1 addition & 1 deletion sections/experience.tex
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{
\begin{cvitems} % Description(s) of tasks/responsibilities
\item {Designed, specified and managed implementation of various software components, systems and infrastructure parts throughout our consumer facing, business facing and internal software components.}
\item {Managed a team of software developers, their career progression. Mentored junior colleagues.}
\item {Managed a team of backend and frontend engineers, mentored them, facilitated their growth and career progression.}
\end{cvitems}
}

Expand Down
2 changes: 1 addition & 1 deletion sections/skills.tex
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
\medskip
\cvskill
{Languages} % Category
{Lithuanian \textit{\color{gray}{(native)}}, English \textit{\color{gray}{(fluent)}}, German \textit{\color{gray}{(basic)}}} % Skills
{English \textit{\color{gray}{(fluent)}}, Lithuanian \textit{\color{gray}{(native)}}, German \textit{\color{gray}{(basic)}}} % Skills
%---------------------------------------------------------
\end{cvskills}
6 changes: 3 additions & 3 deletions sections/summary.tex
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
% CONTENT
%-------------------------------------------------------------------------------
\begin{cvparagraph}
I have 7+ years experience in programming and software development focusing the majority of my time on iOS and Web development. I've solved software engineering problems in a wide range of industries from video games to industrial manufacturing.
I have \yearsofexperience{2009}{07}{01} of experience in programming and software development. I focused the majority of my professional career on iOS and Web development.

When developing applications I strive to achieve two things: great user experience and a clean, clear and maintainable structure "under the hood".
Throughout this time I solved software engineering problems in a wide range of industries. These span industrial manufacturing, video games, field service management, performance marketing and many others.

An all-round technology lover, I am most intrigued by high level concepts and disciplines like computer language design, functional programming, but also low level performance and hardware design.
I'm an all-rounded technology professional who's always interested in working with both high level and low level systems and their design.
\end{cvparagraph}

0 comments on commit b2f22ec

Please sign in to comment.