rendercv/tests/testdata/test_generate_latex_file/engineeringresumes_filled.tex

1897 lines
48 KiB
TeX
Raw Normal View History

2024-03-31 19:10:55 +00:00
\documentclass[10pt, letterpaper]{article}
% Packages:
\usepackage[
2024-04-07 17:41:52 +00:00
ignoreheadfoot, % set margins without considering header and footer
top=2 cm, % seperation between body and page edge from the top
bottom=2 cm, % seperation between body and page edge from the bottom
left=2 cm, % seperation between body and page edge from the left
right=2 cm, % seperation between body and page edge from the right
footskip=1.0 cm, % seperation between body and footer
% showframe % for debugging
]{geometry} % for adjusting page geometry
2024-03-31 19:10:55 +00:00
\usepackage{titlesec} % for customizing section titles
2024-04-07 17:41:52 +00:00
\usepackage{tabularx} % for making tables with fixed width columns
\usepackage{array} % tabularx requires this
2024-03-31 19:10:55 +00:00
\usepackage[dvipsnames]{xcolor} % for coloring text
2024-04-08 00:40:03 +00:00
\definecolor{primaryColor}{RGB}{0, 0, 0} % define primary color
2024-03-31 19:10:55 +00:00
\usepackage{enumitem} % for customizing lists
\usepackage{fontawesome5} % for using icons
\usepackage{amsmath} % for math
\usepackage[
pdftitle={John Doe's CV},
pdfauthor={John Doe},
colorlinks=true,
urlcolor=primaryColor
]{hyperref} % for links, metadata and bookmarks
\usepackage[pscoord]{eso-pic} % for floating text on the page
\usepackage{calc} % for calculating lengths
\usepackage{bookmark} % for bookmarks
\usepackage{lastpage} % for getting the total number of pages
2024-04-07 17:41:52 +00:00
\usepackage{changepage} % for one column entries (adjustwidth environment)
\usepackage{paracol} % for two and three column entries
\usepackage{ifthen} % for conditional statements
\usepackage{needspace} % for avoiding page brake right after the section title
2024-04-15 23:42:56 +00:00
% Theme specific:
2024-04-07 17:41:52 +00:00
\usepackage{charter} % for using charter font
% Ensure that generate pdf is machine readable/ATS parsable:
\ifpdf
\input{glyphtounicode}
\pdfgentounicode=1
\fi
2024-03-31 19:10:55 +00:00
% Some settings:
2024-04-08 19:29:24 +00:00
\raggedright
2024-04-14 22:57:16 +00:00
\AtBeginEnvironment{adjustwidth}{\partopsep0pt} % remove space before adjustwidth environment
2024-03-31 19:10:55 +00:00
\pagestyle{empty} % no header or footer
\setcounter{secnumdepth}{0} % no section numbering
\setlength{\parindent}{0pt} % no indentation
\setlength{\topskip}{0pt} % no top skip
2024-04-08 00:40:03 +00:00
\pagenumbering{gobble} % no page numbering
2024-03-31 19:10:55 +00:00
2024-04-07 17:41:52 +00:00
\titleformat{\section}{\needspace{4\baselineskip}\bfseries\large}{}{0pt}{}[\vspace{1pt}\titlerule]
2024-03-31 19:10:55 +00:00
\titlespacing{\section}{
2024-04-07 17:41:52 +00:00
% left space:
2024-04-08 00:40:03 +00:00
-1pt
2024-04-07 17:41:52 +00:00
}{
% top space:
0.3 cm
}{
% bottom space:
0.2 cm
} % section title spacing
2024-04-15 23:42:56 +00:00
\renewcommand\labelitemi{$\vcenter{\hbox{\small$\bullet$}}$} % custom bullet points
2024-03-31 19:10:55 +00:00
\newenvironment{highlights}{
2024-04-07 17:41:52 +00:00
\begin{itemize}[
topsep=0.10 cm,
parsep=0.10 cm,
partopsep=0pt,
itemsep=0pt,
leftmargin=0 cm + 10pt
]
}{
\end{itemize}
} % new environment for highlights
\newenvironment{onecolentry}{
\begin{adjustwidth}{
0 cm + 0.00001 cm
2024-03-31 19:10:55 +00:00
}{
2024-04-07 17:41:52 +00:00
0 cm + 0.00001 cm
}
}{
\end{adjustwidth}
} % new environment for one column entries
\newenvironment{twocolentry}[2][]{
\onecolentry
\def\secondColumn{#2}
2024-04-15 23:54:30 +00:00
\setcolumnwidth{\fill, 4.5 cm}
2024-04-07 17:41:52 +00:00
\begin{paracol}{2}
}{
\switchcolumn \raggedleft \secondColumn
\end{paracol}
\endonecolentry
} % new environment for two column entries
\newenvironment{threecolentry}[3][]{
\onecolentry
\def\thirdColumn{#3}
2024-04-15 23:54:30 +00:00
\setcolumnwidth{, \fill, 4.5 cm}
2024-04-07 17:41:52 +00:00
\begin{paracol}{3}
\raggedright #2 \switchcolumn
}{
\switchcolumn \raggedleft \thirdColumn
\end{paracol}
\endonecolentry
} % new environment for three column entries
2024-03-31 19:10:55 +00:00
\newenvironment{header}{
2024-04-07 17:41:52 +00:00
\setlength{\topsep}{0pt}\par\kern\topsep\centering\linespread{1.5}
}{
\par\kern\topsep
} % new environment for the header
2024-03-31 19:10:55 +00:00
\newcommand{\placelastupdatedtext}{% \placetextbox{<horizontal pos>}{<vertical pos>}{<stuff>}
\AddToShipoutPictureFG*{% Add <stuff> to current page foreground
\put(
2024-04-07 17:41:52 +00:00
\LenToUnit{\paperwidth-2 cm-0 cm+0.05cm},
2024-03-31 19:10:55 +00:00
\LenToUnit{\paperheight-1.0 cm}
){\vtop{{\null}\makebox[0pt][c]{
\small\color{gray}\textit{Last updated in January 2024}\hspace{\widthof{Last updated in January 2024}}
}}}%
}%
}%
2024-04-15 23:42:56 +00:00
% save the original href command in a new command:
\let\hrefWithoutArrow\href
% new command for external links:
2024-03-31 19:10:55 +00:00
\begin{document}
2024-04-14 22:57:16 +00:00
\newcommand{\AND}{\unskip
\cleaders\copy\ANDbox\hskip\wd\ANDbox
\ignorespaces
2024-04-08 19:29:24 +00:00
}
2024-04-14 22:57:16 +00:00
\newsavebox\ANDbox
\sbox\ANDbox{$|$}
2024-04-08 19:29:24 +00:00
2024-03-31 19:10:55 +00:00
\begin{header}
2024-04-08 19:29:24 +00:00
\fontsize{25 pt}{25 pt}\selectfont John Doe
2024-03-31 19:10:55 +00:00
\vspace{0.3 cm}
\normalsize
2024-04-14 22:57:16 +00:00
\mbox{
Istanbul, Turkey
}
\kern 0.25 cm
\AND
\kern 0.25 cm
\mbox{
2024-04-15 23:42:56 +00:00
\hrefWithoutArrow{mailto:johndoe@example.com}{johndoe@example.com}
2024-04-14 22:57:16 +00:00
}
\kern 0.25 cm
\AND
\kern 0.25 cm
\mbox{
2024-04-15 23:42:56 +00:00
\hrefWithoutArrow{tel:+90-541-999-99-99}{+90 541 999 99 99}
2024-04-14 22:57:16 +00:00
}
\kern 0.25 cm
\AND
\kern 0.25 cm
\mbox{
2024-04-15 23:42:56 +00:00
\hrefWithoutArrow{https://example.com/}{example.com}
2024-04-14 22:57:16 +00:00
}
\kern 0.25 cm
\AND
\kern 0.25 cm
\mbox{
2024-04-15 23:42:56 +00:00
\hrefWithoutArrow{https://linkedin.com/in/johndoe}{linkedin.com/in/johndoe}
2024-04-14 22:57:16 +00:00
}
\kern 0.25 cm
\AND
\kern 0.25 cm
\mbox{
2024-04-15 23:42:56 +00:00
\hrefWithoutArrow{https://github.com/johndoe}{github.com/johndoe}
2024-04-14 22:57:16 +00:00
}
\kern 0.25 cm
\AND
\kern 0.25 cm
\mbox{
2024-04-15 23:42:56 +00:00
\hrefWithoutArrow{https://instagram.com/johndoe}{instagram.com/johndoe}
2024-04-14 22:57:16 +00:00
}
\kern 0.25 cm
\AND
\kern 0.25 cm
\mbox{
2024-04-15 23:42:56 +00:00
\hrefWithoutArrow{https://orcid.org/0000-0000-0000-0000}{orcid.org/0000-0000-0000-0000}
2024-04-14 22:57:16 +00:00
}
\kern 0.25 cm
\AND
\kern 0.25 cm
\mbox{
2024-04-15 23:42:56 +00:00
\hrefWithoutArrow{https://mastodon.social/@johndoe@example}{mastodon.social/@johndoe@example}
2024-04-14 22:57:16 +00:00
}
\kern 0.25 cm
\AND
\kern 0.25 cm
\mbox{
2024-04-15 23:42:56 +00:00
\hrefWithoutArrow{https://twitter.com/johndoe}{twitter.com/johndoe}
2024-04-14 22:57:16 +00:00
}
\kern 0.25 cm
\kern 0.25 cm
2024-03-31 19:10:55 +00:00
\end{header}
2024-04-08 19:29:24 +00:00
\vspace{0.3 cm - 0.3 cm}
2024-03-31 19:10:55 +00:00
\section{Text Entries}
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-07 23:44:02 +00:00
This is a \textit{TextEntry}. It is only a text and can be useful for sections like \textbf{Summary}. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.
2024-04-07 17:41:52 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-07 23:44:02 +00:00
This is a \textit{TextEntry}. It is only a text and can be useful for sections like \textbf{Summary}. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.
2024-04-07 17:41:52 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-07 23:44:02 +00:00
This is a \textit{TextEntry}. It is only a text and can be useful for sections like \textbf{Summary}. To showcase the TextEntry completely, this sentence is added, but it doesn't contain any information.
2024-04-07 17:41:52 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
\section{Bullet Entries}
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-07 23:44:02 +00:00
\textbullet \hspace{3pt} This is a bullet entry.
2024-04-07 17:41:52 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-07 23:44:02 +00:00
\textbullet \hspace{3pt} This is a bullet entry.
2024-04-07 17:41:52 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-07 17:41:52 +00:00
\section{Publication Entries}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{samepage}
\begin{twocolentry}{
Sept. 2021
}
\textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils}
\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\end{samepage}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{samepage}
\begin{twocolentry}{
Sept. 2021
}
\textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils}
\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\vspace{0.10 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{onecolentry}
\href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} \end{onecolentry}
\end{samepage}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{samepage}
\begin{twocolentry}{
Sept. 2021
}
\textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils}
\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\vspace{0.10 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{onecolentry}
IEEE Transactions on Applied Superconductivity \end{onecolentry}
\end{samepage}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{samepage}
\begin{twocolentry}{
Sept. 2021
}
\textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils}
\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\vspace{0.10 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{onecolentry}
\href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} (IEEE Transactions on Applied Superconductivity) \end{onecolentry}
\end{samepage}
2024-03-31 19:10:55 +00:00
2024-04-07 17:41:52 +00:00
\section{Experience Entries}
2024-03-31 19:10:55 +00:00
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-14 22:57:16 +00:00
\textbf{Software Engineer}, Some \textbf{Company}\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
2024-04-14 22:57:16 +00:00
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-14 22:57:16 +00:00
\textbf{Software Engineer}, Some \textbf{Company}\end{onecolentry}
\vspace{0.10 cm}
\begin{onecolentry}
2024-04-08 00:40:03 +00:00
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{onecolentry}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{onecolentry}
\vspace{0.10 cm}
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-08 00:40:03 +00:00
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-03-31 19:10:55 +00:00
\section{Education Entries}
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-14 22:57:16 +00:00
\textbf{Boğaziçi University}, Mechanical Engineering\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-14 22:57:16 +00:00
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
2024-04-14 22:57:16 +00:00
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{onecolentry}
\textbf{Boğaziçi University}, Mechanical Engineering\end{onecolentry}
\vspace{0.10 cm}
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-08 00:40:03 +00:00
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-14 22:57:16 +00:00
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{onecolentry}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\vspace{0.10 cm}
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-08 00:40:03 +00:00
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-14 22:57:16 +00:00
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{onecolentry}
\vspace{0.10 cm}
\begin{onecolentry}
2024-04-08 00:40:03 +00:00
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-14 22:57:16 +00:00
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{onecolentry}
\vspace{0.10 cm}
\begin{onecolentry}
2024-04-08 00:40:03 +00:00
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-03-31 19:10:55 +00:00
\section{Normal Entries}
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-14 22:57:16 +00:00
\textbf{My Project}\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
2024-04-14 22:57:16 +00:00
\textbf{My Project} -- Istanbul, Turkey\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{My Project}\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{My Project}\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project}\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{onecolentry}
\textbf{My Project}\end{onecolentry}
\vspace{0.10 cm}
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-08 00:40:03 +00:00
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{My Project} -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{My Project} -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project} -- Istanbul, Turkey\end{twocolentry}
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{onecolentry}
\textbf{My Project} -- Istanbul, Turkey\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\vspace{0.10 cm}
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
2024-04-08 00:40:03 +00:00
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{My Project}\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project}\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{My Project}\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project}\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{My Project}\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project}\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{My Project} -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project} -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to present
}
\textbf{My Project} -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project} -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
June 2020
}
\textbf{My Project} -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project} -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project}\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{My Project}\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project}\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project}\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project} -- Istanbul, Turkey\end{twocolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2015 to June 2020
}
\textbf{My Project} -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project} -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project} -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project}\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-15 23:42:56 +00:00
\vspace{0.2 cm}
2024-04-14 22:57:16 +00:00
\begin{twocolentry}{
Sept. 2021
}
\textbf{My Project} -- Istanbul, Turkey\end{twocolentry}
\vspace{0.10 cm}
2024-04-08 00:40:03 +00:00
\begin{onecolentry}
\begin{highlights}
2024-04-07 17:41:52 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}.
\item Did that.
\end{highlights}
2024-04-08 00:40:03 +00:00
\end{onecolentry}
2024-03-31 19:10:55 +00:00
2024-04-14 22:57:16 +00:00
2024-03-31 19:10:55 +00:00
\section{One Line Entries}
2024-04-07 17:41:52 +00:00
\begin{onecolentry}
\textbf{Pro\textnormal{gram}ming:} Python, C++, JavaScript, MATLAB
\end{onecolentry}
2024-03-31 19:10:55 +00:00
\end{document}