cv
This commit is contained in:
BIN
LebenslaufIhkZeugnisArbeitszeugnis.pdf
Normal file
BIN
LebenslaufIhkZeugnisArbeitszeugnis.pdf
Normal file
Binary file not shown.
BIN
LebenslaufUIhkZeugnis.pdf
Normal file
BIN
LebenslaufUIhkZeugnis.pdf
Normal file
Binary file not shown.
201
developercv.cls
Normal file
201
developercv.cls
Normal file
@@ -0,0 +1,201 @@
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% Developer CV
|
||||
% LaTeX Class
|
||||
% Version 1.1 (February 24, 2025)
|
||||
%
|
||||
% This class originates from:
|
||||
% https://www.LaTeXTemplates.com
|
||||
%
|
||||
% Authors:
|
||||
% Jan Vorisek (jan@vorisek.me)
|
||||
% Based on a template by Jan Küster (info@jankuester.com)
|
||||
% Modified for LaTeX Templates by Vel (vel@LaTeXTemplates.com)
|
||||
%
|
||||
% License:
|
||||
% The MIT License (see included LICENSE file)
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% CLASS CONFIGURATION
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
\ProvidesClass{developercv}[2025/02/24 Developer CV class v1.1]
|
||||
|
||||
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{extarticle}} % Pass through any options to the base class
|
||||
\ProcessOptions\relax % Process given options
|
||||
|
||||
\LoadClass{extarticle} % Load the base class
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\setlength{\parindent}{0mm} % Suppress paragraph indentation
|
||||
|
||||
\usepackage[hidelinks]{hyperref} % Required for links but hide the default boxes around links
|
||||
|
||||
\newcommand{\lorem}{Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. } % Dummy text
|
||||
|
||||
\pagestyle{empty} % Suppress all headers or footers
|
||||
|
||||
\usepackage{moresize} % Provides more font size commands (\HUGE and \ssmall)
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% PAGE LAYOUT
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage{geometry} % Required for adjusting page dimensions and margins
|
||||
|
||||
\geometry{
|
||||
paper=a4paper, % Paper size, change to letterpaper for US letter size
|
||||
top=1.75cm, % Top margin
|
||||
bottom=1.75cm, % Bottom margin
|
||||
left=2cm, % Left margin
|
||||
right=2cm, % Right margin
|
||||
headheight=0.75cm, % Header height
|
||||
footskip=1cm, % Space from the bottom margin to the baseline of the footer
|
||||
headsep=0.5cm, % Space from the top margin to the baseline of the header
|
||||
%showframe, % Uncomment to show how the type block is set on the page
|
||||
}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% FONTS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage[utf8]{inputenc} % Required for inputting international characters
|
||||
\usepackage[T1]{fontenc} % Output font encoding for international characters
|
||||
|
||||
\usepackage[default]{raleway} % Use Raleway as the default font
|
||||
|
||||
%------------------------------------------------
|
||||
|
||||
\usepackage{fontawesome5} % Required for FontAwesome icons
|
||||
|
||||
% Command to output an icon in a black square box with text to the right
|
||||
\newcommand{\icon}[3]{% The first parameter is the FontAwesome icon name, the second is the box size and the third is the text
|
||||
\vcenteredhbox{\colorbox{black}{\makebox(#2, #2){\textcolor{white}{\large\csname fa#1\endcsname}}}}% Icon and box
|
||||
\hspace{0.2cm}% Whitespace
|
||||
\vcenteredhbox{\textcolor{black}{#3}}% Text
|
||||
}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% GRAPHICS DEFINITIONS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage{tikz} % Required for creating the plots
|
||||
\usetikzlibrary{shapes, backgrounds}
|
||||
\tikzset{x=1cm, y=1cm} % Default TikZ units
|
||||
|
||||
% Command to vertically center adjacent content
|
||||
\newcommand{\vcenteredhbox}[1]{% The only parameter is for the content to center
|
||||
\begingroup%
|
||||
\setbox0=\hbox{#1}\parbox{\wd0}{\box0}%
|
||||
\endgroup%
|
||||
}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% CHARTS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\newcounter{barcount}
|
||||
|
||||
% Environment to hold a new bar chart
|
||||
\newenvironment{barchart}[1]{ % The only parameter is the maximum bar width, in cm
|
||||
\newcommand{\barwidth}{0.35} % Bar width (i.e. height when horizontal)
|
||||
\newcommand{\barsep}{0.2} % Vertical whitespace between the horizontal bars
|
||||
|
||||
% Command to add a bar to the bar chart
|
||||
\newcommand{\baritem}[2]{ % The first argument is the bar label and the second is the percentage the current bar should take up of the total width
|
||||
\pgfmathparse{##2}
|
||||
\let\perc\pgfmathresult
|
||||
|
||||
\pgfmathparse{#1}
|
||||
\let\barsize\pgfmathresult
|
||||
|
||||
\pgfmathparse{\barsize*##2/100}
|
||||
\let\barone\pgfmathresult
|
||||
|
||||
\pgfmathparse{(\barwidth*\thebarcount)+(\barsep*\thebarcount)}
|
||||
\let\barx\pgfmathresult
|
||||
|
||||
\filldraw[fill=black, draw=none] (0,-\barx) rectangle (\barone,-\barx-\barwidth);
|
||||
|
||||
\node [label=180:\colorbox{black}{\textcolor{white}{##1}}] at (0,-\barx-0.175) {};
|
||||
\addtocounter{barcount}{1}
|
||||
}
|
||||
\begin{tikzpicture}
|
||||
\setcounter{barcount}{0}
|
||||
}{
|
||||
\end{tikzpicture}
|
||||
}
|
||||
|
||||
%------------------------------------------------
|
||||
|
||||
\newcounter{a}
|
||||
\newcounter{b}
|
||||
\newcounter{c}
|
||||
|
||||
% Command to output a number of automatically-sized bubbles from a string in the format of '<size>/<label>', e.g. \bubbles{5/Eclipse, 6/git, 4/Office, 3/Inkscape, 3/Blender}
|
||||
\newcommand{\bubbles}[1]{
|
||||
% Reset counters
|
||||
\setcounter{a}{0}
|
||||
\setcounter{c}{150}
|
||||
\tikzset{every node/.append style={text depth=0.4ex}} % Adds a text depth so extenders don't cause mis-alignment of labels
|
||||
|
||||
\begin{tikzpicture}[scale=3]
|
||||
\foreach \p/\t in {#1} {
|
||||
\addtocounter{a}{1}
|
||||
\bubble{\thea/2}{\theb}{\p/25}{\t}{1\p0}
|
||||
}
|
||||
\end{tikzpicture}
|
||||
}
|
||||
|
||||
% Command to output a bubble at a specific position with a specific size
|
||||
\newcommand{\bubble}[5]{
|
||||
\filldraw[fill=black, draw=none] (#1,0.5) circle (#3); % Bubble
|
||||
\node[label=\textcolor{black}{#4}] at (#1,0.7) {}; % Label
|
||||
}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% CUSTOM SECTIONS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
% Command to output section title headings
|
||||
\newcommand{\cvsect}[1]{% The only parameter is the section text
|
||||
\vspace{\baselineskip} % Whitespace before the section title
|
||||
\colorbox{black}{\textcolor{white}{\MakeUppercase{\textbf{#1}}}}\\% Section title
|
||||
}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% ENTRY LIST
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage{longtable} % Required for tables that span multiple pages
|
||||
\setlength{\LTpre}{0pt} % Remove default whitespace before longtable
|
||||
\setlength{\LTpost}{0pt} % Remove default whitespace after longtable
|
||||
|
||||
\setlength{\tabcolsep}{0pt} % No spacing between table columns
|
||||
|
||||
% Environment to hold a new list of entries
|
||||
\newenvironment{entrylist}{
|
||||
\begin{longtable}[H]{l l}
|
||||
}{
|
||||
\end{longtable}
|
||||
}
|
||||
|
||||
\newcommand{\entry}[4]{% First argument for the leftmost date(s) text, second is for the bold entry heading, third is for the bold right-aligned entry qualifier and the fourth is for the entry description
|
||||
\parbox[t]{0.175\textwidth}{% 17.5% of the text width of the page
|
||||
#1 % Leftmost entry date(s) text
|
||||
}%
|
||||
&\hspace{0.04\textwidth}% Horizontal gap between the date column and the entry content
|
||||
\parbox[t]{0.785\textwidth}{% 78.5% of the text width of the page
|
||||
\textbf{#2}% Entry heading text
|
||||
\hfill% Horizontal whitespace
|
||||
{\footnotesize \textbf{\textcolor{black}{#3}}}\\% Right-aligned entry qualifier text
|
||||
#4 % Entry description text
|
||||
}\\\\}
|
||||
|
||||
% Command to output a separator slash between lists, e.g. ' / '
|
||||
\newcommand{\slashsep}{\hspace{3mm}/\hspace{3mm}}
|
||||
BIN
fontawesome5.pdf
Normal file
BIN
fontawesome5.pdf
Normal file
Binary file not shown.
178
main.tex
Executable file
178
main.tex
Executable file
@@ -0,0 +1,178 @@
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% Developer CV
|
||||
% LaTeX Template
|
||||
% Version 1.1 (February 24, 2025)
|
||||
%
|
||||
% This template originates from:
|
||||
% https://www.LaTeXTemplates.com
|
||||
%
|
||||
% Authors:
|
||||
% Jan Vorisek (jan@vorisek.me)
|
||||
% Based on a template by Jan Küster (info@jankuester.com)
|
||||
% Modified for LaTeX Templates by Vel (vel@LaTeXTemplates.com)
|
||||
%
|
||||
% License:
|
||||
% The MIT License (see included LICENSE file)
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\documentclass[9pt]{developercv} % Default font size, values from 8-12pt are recommended
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\begin{document}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% TITLE AND CONTACT INFORMATION
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\begin{minipage}[t]{0.18\textwidth} % Profile photo column
|
||||
\vspace{-\baselineskip} % Required for vertically aligning minipages
|
||||
|
||||
% Profile photo clipped into a circle
|
||||
\begin{tikzpicture}
|
||||
\clip (0,0) circle (1.1cm);
|
||||
\node at (0,0) {\includegraphics[width=2.2cm]{/home/anon/Pictures/Profile.png}};
|
||||
\end{tikzpicture}
|
||||
\end{minipage}
|
||||
\hfill % Automatic horizontal whitespace
|
||||
\begin{minipage}[t]{0.34\textwidth} % Left column with your name and title, change the width as needed
|
||||
\vspace{-\baselineskip} % Required for vertically aligning minipages
|
||||
|
||||
% If your name is very short: use just one of the lines below
|
||||
% If your name is very long: reduce the font size or make the current column wider (and reduce the others proportionately)
|
||||
\colorbox{black}{{\HUGE\textcolor{white}{\textbf{\MakeUppercase{Gregor}}}}} % First name
|
||||
|
||||
\colorbox{black}{{\HUGE\textcolor{white}{\textbf{\MakeUppercase{Lohaus}}}}} % Last name
|
||||
|
||||
\vspace{6pt} % Vertical whitespace
|
||||
|
||||
{\huge Anwendungsentwickler} % Career or current job title
|
||||
\end{minipage}
|
||||
\hfill % Automatic horizontal whitespace
|
||||
\begin{minipage}[t]{0.43\textwidth} % Right column with the icons
|
||||
\vspace{-\baselineskip} % Required for vertically aligning minipages
|
||||
|
||||
% The first parameter is the FontAwesome icon name, the second is the box size and the third is the text
|
||||
% Other icons can be found by referring to fontawesome5.pdf (supplied with the template) and using the word after \fa in the command for the icon you want
|
||||
\icon{Phone}{12}{+49 176 2221 9909}\\
|
||||
\icon{At}{12}{\href{mailto:lohausgregor@gmail.com}{lohausgregor@gmail.com}}\\
|
||||
\icon{Globe}{12}{\href{https://gregorlohaus.com}{gregorlohaus.com}}\\
|
||||
\end{minipage}
|
||||
|
||||
\vspace{0.5cm} % Vertical whitespace
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% INTRODUCTION, SKILLS AND TECHNOLOGIES
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\cvsect{Wer bin ich?}
|
||||
|
||||
\begin{minipage}[t]{0.4\textwidth} % Left column with the introduction text, change the width as needed
|
||||
\vspace{-\baselineskip} % Required for vertically aligning minipages
|
||||
|
||||
Als Anwendungsentwickler mit Leidenschaft für sauberen, wartbaren Code habe ich mit der Ausbildung zum Fachinformatiker für Anwendungsentwicklung meine Begeisterung zum Beruf gemacht. Ich arbeite mich schnell in neue Technologien ein und finde besondere Freude daran, komplexe Probleme strukturiert und nachhaltig zu lösen.\\
|
||||
\end{minipage}
|
||||
\hfill % Automatic horizontal whitespace
|
||||
% The bar chart is wrapped in a zero-size \raisebox so it does not add to the line height
|
||||
% and can be shifted up freely. Increase the lift (1cm) to move the bars up, decrease to move them down.
|
||||
\raisebox{-2.5cm}[0pt][0pt]{%
|
||||
\begin{minipage}[t]{0.5\textwidth} % Right column with the skills bar chart, change the width as needed
|
||||
% Programming languages
|
||||
\begin{barchart}{5.5} % The parameter to the barchart environment is the maximum width (in cm) of the longest bar
|
||||
\baritem{PHP}{80}
|
||||
\baritem{Typescript}{75}
|
||||
\baritem{Javascript}{65}
|
||||
\baritem{SQL}{73}
|
||||
\baritem{Java}{65}
|
||||
\baritem{Python}{40}
|
||||
\baritem{Golang}{40}
|
||||
\end{barchart}
|
||||
\end{minipage}%
|
||||
}
|
||||
|
||||
% Output a series of bubbles showing your proficiency with frameworks, tools and environments
|
||||
\begin{center}
|
||||
\bubbles{3/Symfony, 3/Laravel, 3/Vue.js, 3/PHPUnit, 2/React, 2/Next.js, 2/Svelte, 2/Django, 4/Linux} % Each bubble must be in the format of '<size>/<label>' and you can specify as many bubbles as will fit on the page
|
||||
\end{center}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% EXPERIENCE
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\cvsect{Berufserfahrung}
|
||||
|
||||
\begin{entrylist}
|
||||
\entry
|
||||
{Aug. 2021 -- Feb. 2025}
|
||||
{Azubi Fachinformatiker für Anwendungsentwicklung}
|
||||
{8mylez GmbH, Paderborn}
|
||||
{Durch die Freistellung von der Berufsschule konnte ich bereits wenige Wochen nach Beginn meiner Ausbildung als Vollzeit-Entwickler bei der 8mylez GmbH tätig werden und mich nahtlos in die Arbeitsprozesse des Unternehmens integrieren. Im Rahmen meiner Aufgaben habe ich Shopware-5- und Shopware-6-Shops unserer Kunden weiterentwickelt und gepflegt.\\ \texttt{PHP}\slashsep\texttt{MySQL}\slashsep\texttt{Shopware}\slashsep\texttt{Symfony}\slashsep\texttt{Vue.js}\slashsep\texttt{Docker}\slashsep\texttt{RabbitMQ}\slashsep\texttt{Redis}\slashsep\texttt{OpenSearch}\slashsep\texttt{REST}\slashsep\texttt{GitLab CI/CD}}
|
||||
\entry
|
||||
{Sep. 2019 -- Dez. 2020}
|
||||
{Versandmitarbeiter}
|
||||
{Amazon Logistik Dortmund GmbH, Dortmund}
|
||||
{}
|
||||
\entry
|
||||
{Jan. 2014 -- Feb. 2014}
|
||||
{Praktikant}
|
||||
{Pixelboxx GmbH, Dortmund}
|
||||
{Während meines Praktikums bei der Pixelboxx GmbH hatte ich die Gelegenheit, erste praktische Erfahrungen mit dem agilen Softwareentwicklungsprozess Scrum zu sammeln. Ich nahm regelmäßig an Daily Standups sowie Sprint-Planning-Meetings teil und konnte dabei mein Wissen in der Entwicklung kleinerer Java-Programme erfolgreich anwenden und vertiefen.\\ \texttt{Scrum}\slashsep\texttt{Java}}
|
||||
\end{entrylist}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% EDUCATION
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\cvsect{Schulbildung}
|
||||
|
||||
\begin{entrylist}
|
||||
\entry
|
||||
{Nov. 2025 -- Jun. 2026}
|
||||
{Weiterbildung Java Entwickler, Vorbereitung OCP Zertifizierung}
|
||||
{Comcave College, Dortmund}
|
||||
{}
|
||||
\entry
|
||||
{Aug. 2016 -- Aug. 2018}
|
||||
{Schulische Aussbildung ITA}
|
||||
{Robert Bosch Berufskolleg, Dortmund}
|
||||
{}
|
||||
\entry
|
||||
{Aug. 2009 -- Aug. 2015}
|
||||
{Fachoberschulreife}
|
||||
{Leibniz Gymnasium, Dortmund}
|
||||
{}
|
||||
\end{entrylist}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% ADDITIONAL INFORMATION
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\begin{minipage}[t]{0.3\textwidth} % Left column width
|
||||
\vspace{-\baselineskip} % Required for vertically aligning minipages
|
||||
|
||||
\cvsect{Sprachen}
|
||||
|
||||
\textbf{Deutsch} - Muttersprache\\
|
||||
\textbf{Englisch} - fließend
|
||||
\end{minipage}
|
||||
\hfill % Automatic horizontal whitespace
|
||||
\begin{minipage}[t]{0.65\textwidth} % Right column width
|
||||
\vspace{-\baselineskip} % Required for vertically aligning minipages
|
||||
|
||||
\cvsect{Opensource Beiträge}
|
||||
|
||||
\textbf{devenv}: \href{https://github.com/cachix/devenv/pull/2891}{Verbesserung der Filewatcher}\\
|
||||
\textbf{shopware/recipes}: \href{https://github.com/shopware/recipes/pull/215}{Fix devenv environment}\\
|
||||
\textbf{phpMyAdmin}: \href{https://github.com/phpmyadmin/phpmyadmin/pull/19287}{Erweiterung der globalen Suche}\\
|
||||
\textbf{learn-c.org}: \href{https://github.com/ronreiter/interactive-tutorials/pull/852}{Verbesserung Deutscher Sprachvariante}\\
|
||||
\textbf{jprototerm}: \href{https://gitea.gregorlohaus.com/gregor/jprototerm}{JavaFX Terminalemulator mit integriertem Multiplexer}\\
|
||||
\end{minipage}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\end{document}
|
||||
Reference in New Issue
Block a user