cv/cv_de.tex

713 lines
22 KiB
TeX
Raw Normal View History

2024-03-21 18:02:55 +01:00
%============================================================================%
%
% DOCUMENT DEFINITION
%
%============================================================================%
%we use article class because we want to fully customize the page and don't use a cv template
\documentclass[10pt,A4]{article}
\usepackage{blindtext}
%----------------------------------------------------------------------------------------
% ENCODING
%----------------------------------------------------------------------------------------
% we use utf8 since we want to build from any machine
\usepackage[utf8]{inputenc}
\usepackage{tabularx}
\usepackage{multicol}
%----------------------------------------------------------------------------------------
% LOGIC
%----------------------------------------------------------------------------------------
% provides \isempty test
\usepackage{xstring, xifthen}
%----------------------------------------------------------------------------------------
% FONT BASICS
%----------------------------------------------------------------------------------------
% some tex-live fonts - choose your own
%\usepackage[defaultsans]{droidsans}
%\usepackage[default]{comfortaa}
%\usepackage{cmbright}
\usepackage[default]{roboto}
%\usepackage{fetamont}
%\usepackage[default]{gillius}
%\usepackage[light,math]{iwona}
%\usepackage[thin]{roboto}
% set font default
\renewcommand*\familydefault{\sfdefault}
\usepackage[T1]{fontenc}
% more font size definitions
\usepackage{moresize}
%----------------------------------------------------------------------------------------
% FONT AWESOME ICONS
%----------------------------------------------------------------------------------------
% include the fontawesome icon set
%\usepackage{fontawesome}
\usepackage{fontawesome5}
% use to vertically center content
% credits to: http://tex.stackexchange.com/questions/7219/how-to-vertically-center-two-images-next-to-each-other
\newcommand{\vcenteredinclude}[1]{\begingroup
\setbox0=\hbox{\includegraphics{#1}}%
\parbox{\wd0}{\box0}\endgroup}
% use to vertically center content
% credits to: http://tex.stackexchange.com/questions/7219/how-to-vertically-center-two-images-next-to-each-other
\newcommand*{\vcenteredhbox}[1]{\begingroup
\setbox0=\hbox{#1}\parbox{\wd0}{\box0}\endgroup}
\newcommand*{\topalignedhbox}[1]{\begingroup
\setbox0=\hbox{#1}\parbox[t]{\wd0}{\box0}\endgroup}
% icon shortcut
\newcommand{\icon}[3] {
\makebox(#2, #2){\textcolor{maincol}{\csname fa#1\endcsname}}
}
% icon with text shortcut
\newcommand{\icontext}[4]{
\vcenteredhbox{\icon{#1}{#2}{#3}} \hspace{2pt} \parbox{0.9\mpwidth}{\textcolor{#4}{#3}}
}
\newcommand{\icontexttopalign}[4]{
\topalignedhbox{\icon{#1}{#2}{#3}} \hspace{2pt} \parbox{0.9\mpwidth}{\textcolor{#4}{#3}}
}
% icon with website url
\newcommand{\iconhref}[5]{
\vcenteredhbox{\icon{#1}{#2}{#5}} \hspace{2pt} \href{#4}{\textcolor{#5}{#3}}
}
% icon with email link
\newcommand{\iconemail}[5]{
\vcenteredhbox{\icon{#1}{#2}{#5}} \hspace{2pt} \href{mailto:#4}{\textcolor{#5}{#3 \tiny\faExternalLink*}}
}
\newcommand{\iconadress}[5]{
\vcenteredhbox{\icon{#1}{#2}{#5}} \hspace{2pt} \href{#4}{\textcolor{#5}{#3}}
}
%----------------------------------------------------------------------------------------
% PAGE LAYOUT DEFINITIONS
%----------------------------------------------------------------------------------------
% page outer frames (debug-only)
% \usepackage{showframe}
% we use paracol to display breakable two columns
\usepackage{paracol}
% define page styles using geometry
\usepackage[a4paper]{geometry}
% remove all possible margins
\geometry{top=0.3cm, bottom=0.3cm, left=0.5cm, right=0.5cm}
\usepackage{fancyhdr}
\pagestyle{empty}
% space between header and content
% \setlength{\headheight}{0pt}
% indentation is zero
\setlength{\parindent}{0mm}
%----------------------------------------------------------------------------------------
% TABLE /ARRAY DEFINITIONS
%----------------------------------------------------------------------------------------
% extended aligning of tabular cells
\usepackage{array}
% custom column right-align with fixed width
% use like p{size} but via x{size}
\newcolumntype{x}[1]{%
>{\raggedleft\hspace{0pt}}p{#1}}%
%----------------------------------------------------------------------------------------
% GRAPHICS DEFINITIONS
%----------------------------------------------------------------------------------------
%for header image
\usepackage{graphicx}
% use this for floating figures
% \usepackage{wrapfig}
% \usepackage{float}
% \floatstyle{boxed}
% \restylefloat{figure}
%for drawing graphics
\usepackage{tikz}
\usetikzlibrary{shapes, backgrounds, positioning, mindmap, trees, calc}
%----------------------------------------------------------------------------------------
% Color DEFINITIONS
%----------------------------------------------------------------------------------------
\usepackage{transparent}
\usepackage{color}
% primary color
\definecolor{maincol}{RGB}{ 45, 50, 90 }
\definecolor{maincol}{RGB}{ 0, 120, 148 }
\definecolor{maincol}{HTML}{5E81AC}
\definecolor{offwhite}{HTML}{D8DEE9}
%\definecolor{maincol}{HTML}{4C566A}
% accent color, secondary
% \definecolor{accentcol}{RGB}{ 250, 150, 10 }
% dark color
\definecolor{darkcol}{RGB}{ 70, 70, 70 }
\definecolor{darkcol}{RGB}{ 8, 64, 126}
\definecolor{darkcol}{HTML}{2E3440}
% light color
\definecolor{lightcol}{RGB}{241,241,241}
\definecolor{lightcol}{HTML}{D8DEE9}
% Package for links, must be the last package used
\usepackage[hidelinks]{hyperref}
% returns minipage width minus two times \fboxsep
% to keep padding included in width calculations
% can also be used for other boxes / environments
\newcommand{\mpwidth}{\linewidth-\fboxsep-\fboxsep}
%============================================================================%
%
% CV COMMANDS
%
%============================================================================%
%----------------------------------------------------------------------------------------
% CV LIST
%----------------------------------------------------------------------------------------
% renders a standard latex list but abstracts away the environment definition (begin/end)
\newcommand{\cvlist}[1] {
\begin{itemize}{#1}\end{itemize}
}
%----------------------------------------------------------------------------------------
% CV TEXT
%----------------------------------------------------------------------------------------
% base class to wrap any text based stuff here. Renders like a paragraph.
% Allows complex commands to be passed, too.
% param 1: *any
\newcommand{\cvtext}[1] {
\begin{tabular*}{1\mpwidth}{p{0.98\mpwidth}}
\parbox{1\mpwidth}{#1}
\end{tabular*}
}
%----------------------------------------------------------------------------------------
% CV SECTION
%----------------------------------------------------------------------------------------
% Renders a a CV section headline with a nice underline in main color.
% param 1: section title
\newcommand{\cvsection}[1] {
\vspace{14pt}
\cvtext{
\textbf{\LARGE{\textcolor{darkcol}{#1}}}\\[-4pt]
\textcolor{maincol}{ \rule{0.1\textwidth}{2pt} } \\
}
}
%----------------------------------------------------------------------------------------
% META SKILL
%----------------------------------------------------------------------------------------
% Renders a progress-bar to indicate a certain skill in percent.
% param 1: name of the skill / tech / etc.
% param 2: level (for example in years)
% param 3: percent, values range from 0 to 1
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}}
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}}
\newcolumntype{R}[1]{>{\raggedleft\arraybackslash}p{#1}}
\newcommand{\cvskill}[3] {
\begin{tabularx}{\textwidth}{Xr@{}}
\textcolor{black}{\textbf{#1}} & \textcolor{maincol}{#2}\\
\end{tabularx}\\[-15pt]
\hspace{4pt}
\begin{tikzpicture}[scale=1,rounded corners=2pt,very thin]
\fill [lightcol] (0,0) rectangle (1\linewidth, 0.15);
\fill [maincol] (0,0) rectangle (#3\linewidth, 0.15);
\end{tikzpicture}
}
\newcommand{\cvskillthreecolumn}[3]{
\begin{tabularx}{\textwidth}{Xr@{}}
\textcolor{black}{\textbf{#1}} & \textcolor{maincol}{#2}\\
\end{tabularx}\\[-16pt]
\hspace{4pt}
\begin{tikzpicture}[scale=1,rounded corners=2pt,very thin]
\fill [lightcol] (10pt,0) rectangle (1\linewidth + 4pt , 0.15);
\fill [maincol] (10pt,0) rectangle (#3\linewidth+ 4pt , 0.15);
\end{tikzpicture}
}
%----------------------------------------------------------------------------------------
% CV EVENT
%----------------------------------------------------------------------------------------
% Renders a table and a paragraph (cvtext) wrapped in a parbox (to ensure minimum content
% is glued together when a pagebreak appears).
% Additional Information can be passed in text or list form (or other environments).
% the work you did
% param 1: time-frame i.e. Sep 14 - Jan 15 etc.
% param 2: event name (job position etc.)
% param 3: Customer, Employer, Industry
% param 4: Short description
% param 5: work done (optional)
% param 6: technologies include (optional)
% param 7: achievements (optional)
\newcommand{\cvevent}[7] {
% we wrap this part in a parbox, so title and description are not separated on a pagebreak
% if you need more control on page breaks, remove the parbox
\parbox{\mpwidth}{
\begin{tabular*}{1\mpwidth}{p{0.72\mpwidth} r}
\begin{tikzpicture}[remember picture, overlay]
% 0.5 from bar shifted to the right 0.3 from radius and -0.15 linewidth
\fill[black] (-0.5em -0.3em -0.15em, 4pt) circle [radius=0.3em];
\end{tikzpicture}
\hspace{-0.3em}\textcolor{black}{\textbf{#2}} & \colorbox{maincol}{\makebox[0.25\mpwidth]{\textcolor{white}{#1}}} \\
\textcolor{maincol}{\textbf{#3}} & \\
\end{tabular*}\\
\ifthenelse{\isempty{#4}}{}{
\cvtext{#4}\\
}
}
\ifthenelse{\isempty{#5}}{}{
\vspace{4pt}
{#5}
}
\vspace{0pt}
}
%----------------------------------------------------------------------------------------
% CV META EVENT
%----------------------------------------------------------------------------------------
% Renders a CV event on the sidebar
% param 1: title
% param 2: subtitle (optional)
% param 3: customer, employer, etc,. (optional)
% param 4: info text (optional)
\newcommand{\cvmetaevent}[3] {
\textcolor{maincol} {\cvtext{\textbf{\begin{flushleft}#1\end{flushleft}}}}\\[-8pt]
\ifthenelse{\isempty{#2}}{}{
\textcolor{darkcol} {\cvtext{\textbf{#2}} }
}
\ifthenelse{\isempty{#3}}{}{
\cvtext{{ \textcolor{black} {#3} }}\\[-5pt]
}
}
%---------------------------------------------------------------------------------------
% QR CODE
%----------------------------------------------------------------------------------------
% Renders a qrcode image (centered, relative to the parentwidth)
% param 1: percent width, from 0 to 1
\newcommand{\cvqrcode}[1] {
\begin{center}
\includegraphics[width={#1}\mpwidth]{qrcode}
\end{center}
}
%=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
% EDIT AFTER THIS POINT
%''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
%=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
%============================================================================%
%
%
%
% DOCUMENT CONTENT
%
%
%
%============================================================================%
\begin{document}
\columnratio{0.31}
\setlength{\columnsep}{2.2em}
\setlength{\columnseprule}{4pt}
\colseprulecolor{lightcol}
\begin{paracol}{2}
\begin{leftcolumn}
%---------------------------------------------------------------------------------------
% META IMAGE
%----------------------------------------------------------------------------------------
%\includegraphics[width=\linewidth]{untitled.jpg} %trimming relative to image size
\begin{tikzpicture}[remember picture]
\clip ($(current page text area.north east)!0.06!(current page text area.south east)!0.12!(current page text area.north west)$)
circle (0.5\linewidth) node {\includegraphics[width=\linewidth]{alexander.jpg}};
\end{tikzpicture}
\cvsection{Kontakt}\\[-0.5em]
\iconemail{Envelope}{14}{alexander@bocken.org}{alexander@bocken.org}{black}\\[6pt]
\iconemail{Envelope}{14}{abocken@ethz.ch}{abocken@ethz.ch}{black}\\[6pt]
\icontext{Github}{14}{\href{https://github.com/AlexBocken}{AlexBocken \tiny\faExternalLink*}}{black}\\[6pt]
\icontext{Globe}{14}{\href{https://bocken.org}{bocken.org \tiny\faExternalLink*}}{black}\\[6pt]
\icontext{Phone}{14}{\href{tel:+41-78-692-5995}{+41 (0)78 692 59 95 \tiny\faExternalLink*}}{black}\\[6pt]
\icontexttopalign{MapMarker}{14}{Ausserdorfstr. 10a\\ 8052 Zürich}{black}\\[6pt]
\icontext{Flag}{14}{Österreicher}{black}\\[6pt]
\vfill\null
%\cvqrcode{0.7}
%\vfill\null
%\cvqrcode{0.7}
%---------------------------------------------------------------------------------------
% META SKILLS
%----------------------------------------------------------------------------------------
\cvsection{Kompetenzen}\\[-0.8em]
\vspace{-1.2em}
\begin{itemize}
\leftskip-1.8em
\itemsep-0.2em
\item[] Ausgez. analytische Fähigkeiten
\item[] Ausgez. Präsentationsfähigkeiten
\item[] Arbeite gut in Teams
\item[] Schnelle Auffassungsgabe
\item[] Fokusiert
\item[] Anpassungsfähig
\item[] Selbststarter
\end{itemize}
%---------------------------------------------------------------------------------------
% ACHIEVEMENTS
%----------------------------------------------------------------------------------------
%\newpage
\cvsection{Errungenschaften}
\vspace{-1.8em}
\cvmetaevent
{GRE}
{Graduate Record Examinations}
{164 Verbal (94. Perzentil), \\ 166 Quant (89. Perzentil) }
\cvmetaevent
{Abitur}
{Jahrgangsbester}
{Durchschnittsnote von 1,1.}
\cvmetaevent
{Jugend gründet}
{7. Platz}
{Erreichte den 7. Platz in ``Jugend gründet'' Wettbewerb Süddeutschland in 2014/2015.}
\cvmetaevent
{Technik-Akademie Tübingen}
{}
{Nominiert von meiner Schule für aussergewöhnliche Leistungen zur Teilnahme an der ``Technik-Akademie'' für begabte Kinder in Tübingen im Jahr 2013.
}
\end{leftcolumn}
\begin{rightcolumn}
%---------------------------------------------------------------------------------------
% TITLE HEADER
%----------------------------------------------------------------------------------------
\fcolorbox{white}{darkcol}{\begin{minipage}[c][3.5cm][c]{1\mpwidth}
\begin {center}
\HUGE{ \textbf{ \textcolor{white}{Alexander Bocken } } } \\[-24pt]
% \textcolor{white}{ \rule{0.1\textwidth}{1.25pt} }
\\[4pt]
\large{ \textcolor{offwhite} {MSc. Student - Management, Technologie und Ökonomie} } \\[0.5em]
\small{\textcolor{white}{
\hspace*{0.5em}
\noindent\paragrapah{
Ich bin anpassungsfähig und engagiert, lerne schnell und kann gut kommunizieren und echte Beziehungen aufbauen.
Ich freue mich über Herausforderungen und den Aufbau von Freundschaften und programmiere leidenschaftlich gern. Geschickt im Umgang mit komplizierten technischen Umgebungen.
Sehr international.
}
\hspace*{0.5em}
}}
\end {center}
\end{minipage}} \\[14pt]
\vspace{-12pt}
%---------------------------------------------------------------------------------------
% EDUCATION
%----------------------------------------------------------------------------------------
%\vfill\null
\cvsection{Ausbildung}
\hfill
\begin{minipage}[t]{1em}
\end{minipage}
\begin{minipage}[t]{\linewidth-1em}
\begin{tikzpicture}[scale=1,rounded corners=1.5pt,very thin, overlay, xshift=-0.5em]
\draw[-to, rounded, line width=0.275em, rounded corners=10pt, line cap=round, maincol] (0.1375em, -23em) -- (0.1375em, 0.7em);
\end{tikzpicture}
\cvevent
{\textbf{2022 - heute }}
{MSc. Management, Technology, and Economics}
{ETH Zürich, Schweiz}
{Alle Kurse bereits abgeschlossen (Durchschnittsnote: 5,3/6). Im 4. Semester.
Zusätzlich zu einer breiten Palette von Management- und Wirtschaftskursen wurden Wahlfächer in den Bereichen \emph{Risiko- und Versicherungsmanagement}, \emph{Systemdynamik} und \emph{Komplexität} belegt.
}
\vspace{0cm}\null
\cvevent
{\textbf{2019 - 2022}}
{BSc. Maschineningenieurwissenschaften}
{ETH Zürich, Schweiz}
{Durchschnittsnote: 5.0/6\\
Abschlussarbeit: ``\emph{High speed Image processing for Laser Produced Plasma Applications}''
}
\vspace{0cm}\null
\cvevent
{\textbf{2016 - 2019}}
{BSc. Physik}
{ETH Zürich, Schweiz}
{Übertritt von Physik nach erfolgreichem Abschluss der ersten drei Semester.}
\vspace{0}\null
\cvevent
{\textbf{2016}}
{Abitur}
{Gymnasium Weingarten, Deutschland}
{Abgeschlossen mit 1,1. Bester Schüler des Jahrgangs. Erhielt Preise für Physik, Mathematik und Englisch. Klassensprecher.}
\vspace{0}\null
\end{minipage}
\vspace{-1em}
\cvsection{Sprachen}\\[-0.5em]
\begin{minipage}[t]{0.47\linewidth}
\cvskill{Deutsch}{Muttersprache}{1}\\
\cvskill{Schweizerdeutsch}{Baslerdütsch}{1}\\
\cvskill{Englisch}{fliessend}{1}\\
\end{minipage}
\hfill
\begin{minipage}[t]{0.47\linewidth}
\cvskill{Japanisch}{Anfänger (N5)}{0.25}\\
\cvskill{Latein}{Anfänger}{0.2}\\
\end{minipage}
%\cvskill{Skill_Name} {Years of experience} {percentage of bar fill} \\[-2pt]
\vspace{-1.5em}
\cvsection{Programmingsprachen}\\[-0.5em]
\begin{minipage}[t]{0.47\linewidth}
\cvskill{Python}{versiert}{0.8}\\
\cvskill{R}{mittel}{0.5}\\
\cvskill{C/C++}{mittel}{0.5}\\
\cvskill{POSIX Shell/Bash}{versiert}{0.8}\\
\cvskill{Matlab/Simulink}{mittel}{0.5}\\
\end{minipage}
\hfill
\begin{minipage}[t]{0.47\linewidth}
\cvskill{GAMS}{mittel}{0.5}\\
\cvskill{JavaScript}{mittel}{0.6}\\
\cvskill{HTML/CSS}{versiert}{0.8}\\
\cvskill{elixir}{Anfänger}{0.15}\\
\hspace*{0.5em}Weitere Sprachen:\\
\hspace*{0.5em}\textbf{PHP, AWK, LaTeX, SVG, SQL, SvelteKit}
\end{minipage}
% \vspace{0.7cm}
% \begin{minipage}[t]{0.47\linewidth}
% \cvskill{AWK}{adept}{0.75}\\
% \cvskill{PHP}{beginner}{0.2}\\
% \cvskill{LaTex}{adept}{0.8}\\
% \end{minipage}
% \hfill
% \begin{minipage}[t]{0.47\linewidth}
% \cvskill{Markdown}{}{1}\\
% \cvskill{SVG}{}{1}\\
% \end{minipage}
\vspace{-1.5em}
\cvsection{Computerkenntnisse}\\
\begin{minipage}[t]{0.325\linewidth}
\cvskillthreecolumn{MS Office}{}{1}\\
\cvskillthreecolumn{Multithreading}{C++, Py}{0.5}\\
\cvskillthreecolumn{Linux}{}{0.75}\\
\end{minipage}
\hfill
\begin{minipage}[t]{0.325\linewidth}
\cvskillthreecolumn{Photoshop}{mittel}{0.7}\\
\cvskillthreecolumn{Inkscape}{mittel}{0.7}\\
\cvskillthreecolumn{Nginx}{mittel}{0.7}\\
\end{minipage}
\hfill
\begin{minipage}[t]{0.325\linewidth}
\cvskillthreecolumn{git}{mittel}{0.6}\\
\cvskillthreecolumn{SSH}{}{1}\\
\cvskillthreecolumn{Vim}{}{0.75}\\
\end{minipage}
% - various REST API interactions (Oxford Dictionaries, JDIC, various Google APIs...)
% # Hobbies
% - Reading
% - Hiking
% - Fitness
% - Shell scripting/coding/ linux server stuff
% - learning the Japanese Kanji (https://github.com/AlexBocken/kanji)
%---------------------------------------------------------------------------------------
% WORK EXPERIENCE
%----------------------------------------------------------------------------------------
%\vfill\null
%\cvsection{WORK EXPERIENCE}
%
%\cvevent
% {\textbf{Jan YY - Dec YY}}
% {Position name}
% {Institute/Organization, City (State)}
% {Write about your roles and responsibilities. In case of teaching experience also write about the subjects you taught.}
% {}
%\vfill\null
%
%\cvevent
% {\textbf{Jan YY - Jul YY}}
% {Position name}
% {Institute/Organization, City (State)}
% {Write about your roles and responsibilities. In case of teaching experience also write about the subjects you taught.}
% {}
%\vfill\null
%---------------------------------------------------------------------------------------
% PUBLICATION
%----------------------------------------------------------------------------------------
%\vspace{-0.5cm}
%\vfill\null
%\cvsection{PUBLICATIONS}
%
%\cvevent
% {\textbf{UGC Listed}}
% {Title of your research paper}
% {Journal Name (ISSN: XXXX-XXXX) Vol XX, Issue XX, 20XX}
% {Status: Accepted and Published}
% {}
%\vfill\null
%
%\cvevent
% {\textbf{SCI - IF X.XXX}}
% {Title of your research paper}
% {Journal Name (ISSN: XXXX-XXXX) Vol XX, Issue XX, 20XX}
% {Status: Under Review}
% {}
%\vfill\null
%
%\cvevent
% {\textbf{SCI - IF X.XXX}}
% {Title of your research paper}
% {Journal Name (ISSN: XXXX-XXXX) Vol XX, Issue XX, 20XX}
% {Status: Under Review}
% {}
%\vfill\null
%%---------------------------------------------------------------------------------------
%% PROJECTS
%%----------------------------------------------------------------------------------------
%\vfill\null
%\cvsection{PROJECTS}
%
%\cvevent
% {\textbf{20XX}}
% {Project Name}
% {Tool: Python, Raspberry Pi}
% {A short description of your project.}
%\vfill\null
%
%
%\cvevent
% {\textbf{20XX}}
% {Project Name}
% {Tool: Web Development}
% {A short description of your project.}
%\vfill\null
%
%
%\cvevent
% {\textbf{20XX}}
% {Project Name}
% {Tool: Android Studio}
% {A short description of your project.}
%\vfill\null
%
%%---------------------------------------------------------------------------------------
%% WORKSHOPS
%%----------------------------------------------------------------------------------------
%\vfill\null
%\cvsection{WORKSHOPS \& CONFERENCES}
%
%\cvevent
% {\textbf{Mon 20XX}}
% {Name of Conference}
% {Conducted by}
% {}
%\vfill\null
%
%\cvevent
% {\textbf{May 2019}}
% {IEEE Internation Conference on Future of Internet of Things}
% {IEEE \& IIT Kanpur}
% {}
%\vfill\null
%
%\cvevent
% {\textbf{Jul 2020}}
% {Online International Workshop on Machine Learning Applications to Images, IoT and Wireless Sensor Networks}
% {University of Essex and IIIT, Lucknow}
% {}
%\vfill\null
%---------------------------------------------------------------------------------------
% PERSONAL DETAILS
%----------------------------------------------------------------------------------------
\hfill
\cvsection{Hobbies}
\hspace{0.5em} Wandern, \href{https://bocken.org/rezepte}{Kochen \tiny\faExternalLink*}, Fitness, Linux, Webdev, Erlernen der \href{https://github.com/AlexBocken/kanji}{japanischen Kanji \tiny\faExternalLink*}
% - Reading
% - Hiking
% - Fitness
% - Shell scripting/coding/ linux server stuff
% - learning the Japanese Kanji (https://github.com/AlexBocken/kanji)
%\begin{itemize}
% %\item Reading
% \item Hiking
% \item Fitness
% \item Scripting/Linux/Webdev \& Server Managament
% \item Learning the \href{https://github.com/AlexBocken/kanji}{Japanese Kanji}
%\end{itemize}
%\vfill\null
% hotfixes to create fake-space to ensure the whole height is used
\vfill
\vfill
\vfill
\end{rightcolumn}
\end{paracol}
\end{document}