rendercv/tests/testdata/test_generate_latex_file/classic_filled.tex

1760 lines
88 KiB
TeX
Raw Normal View History

2024-02-18 19:41:45 +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-02-18 19:41:45 +00:00
\usepackage[explicit]{titlesec} % for customizing section titles
\usepackage{tabularx} % for making tables with fixed width columns
\usepackage{array} % tabularx requires this
\usepackage[dvipsnames]{xcolor} % for coloring text
\definecolor{primaryColor}{RGB}{0, 79, 144} % define primary color
\usepackage{enumitem} % for customizing lists
\usepackage{fontawesome5} % for using icons
2024-02-24 19:28:00 +00:00
\usepackage{amsmath} % for math
2024-02-18 19:41:45 +00:00
\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-16 11:42:47 +00:00
\usepackage{iftex} % check if engine is pdflatex, xetex or luatex
2024-04-07 17:41:52 +00:00
2024-04-15 23:42:56 +00:00
% Theme specific:
\usepackage[default, type1]{sourcesanspro} % for using source sans 3 font
2024-04-07 17:41:52 +00:00
% Ensure that generate pdf is machine readable/ATS parsable:
2024-04-16 11:42:47 +00:00
\ifPDFTeX
2024-04-07 17:41:52 +00:00
\input{glyphtounicode}
\pdfgentounicode=1
2024-04-28 21:30:02 +00:00
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
2024-04-07 17:41:52 +00:00
\fi
2024-02-18 19:41:45 +00:00
% Some settings:
2024-04-14 22:57:16 +00:00
\AtBeginEnvironment{adjustwidth}{\partopsep0pt} % remove space before adjustwidth environment
2024-02-18 19:41:45 +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-07 17:41:52 +00:00
\setlength{\columnsep}{0.15cm} % set column seperation
2024-02-18 19:41:45 +00:00
\makeatletter
\let\ps@customFooterStyle\ps@plain % Copy the plain style to customFooterStyle
\patchcmd{\ps@customFooterStyle}{\thepage}{
\color{gray}\textit{\small John Doe - Page \thepage{} of \pageref*{LastPage}}
}{}{} % replace number by desired string
\makeatother
\pagestyle{customFooterStyle}
\titleformat{\section}{
2024-04-07 17:41:52 +00:00
% avoid page braking right after the section title
\needspace{4\baselineskip}
% make the font size of the section title large and color it with the primary color
\Large\color{primaryColor}
}{
}{
}{
% print bold title, give 0.15 cm space and draw a line of 0.8 pt thickness
% from the end of the title to the end of the body
\textbf{#1}\hspace{0.15cm}\titlerule[0.8pt]\hspace{-0.1cm}
}[] % section title formatting
2024-02-18 19:41:45 +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-02-18 19:41:45 +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,
2024-04-08 00:40:03 +00:00
leftmargin=0.4 cm + 10pt
2024-04-07 17:41:52 +00:00
]
}{
\end{itemize}
} % new environment for highlights
\newenvironment{onecolentry}{
\begin{adjustwidth}{
0.2 cm + 0.00001 cm
2024-02-18 19:41:45 +00:00
}{
2024-04-07 17:41:52 +00:00
0.2 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{1 cm, \fill, 4.5 cm}
2024-04-07 17:41:52 +00:00
\begin{paracol}{3}
2024-04-28 21:57:05 +00:00
{\raggedright #2} \switchcolumn
2024-04-07 17:41:52 +00:00
}{
\switchcolumn \raggedleft \thirdColumn
\end{paracol}
\endonecolentry
} % new environment for three column entries
2024-02-18 19:41:45 +00:00
\newenvironment{header}{
2024-04-07 17:41:52 +00:00
\setlength{\topsep}{0pt}\par\kern\topsep\centering\color{primaryColor}\linespread{1.5}
}{
\par\kern\topsep
} % new environment for the header
2024-02-18 19:41:45 +00:00
\newcommand{\placelastupdatedtext}{% \placetextbox{<horizontal pos>}{<vertical pos>}{<stuff>}
\AddToShipoutPictureFG*{% Add <stuff> to current page foreground
\put(
\LenToUnit{\paperwidth-2 cm-0.2 cm+0.05cm},
\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}}
}}}%
}%
}%
% save the original href command in a new command:
\let\hrefWithoutArrow\href
2024-04-15 23:42:56 +00:00
% new command for external links:
2024-02-18 19:41:45 +00:00
\renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\mbox{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}}
2024-04-15 23:42:56 +00:00
2024-02-18 19:41:45 +00:00
\begin{document}
\placelastupdatedtext
\begin{header}
\fontsize{30 pt}{30 pt}
2024-03-31 19:10:55 +00:00
\textbf{John Doe}
2024-02-18 19:41:45 +00:00
\vspace{0.3 cm}
\normalsize
2024-04-28 21:30:02 +00:00
\mbox{{\footnotesize\faMapMarker*}\hspace*{0.13cm}Istanbul, Turkey}
2024-04-14 22:57:16 +00:00
\kern 0.5 cm
2024-04-28 21:30:02 +00:00
\mbox{\hrefWithoutArrow{mailto:johndoe@example.com}{{\footnotesize\faEnvelope[regular]}\hspace*{0.13cm}johndoe@example.com}}
2024-04-14 22:57:16 +00:00
\kern 0.5 cm
2024-04-28 21:30:02 +00:00
\mbox{\hrefWithoutArrow{tel:+90-541-999-99-99}{{\footnotesize\faPhone*}\hspace*{0.13cm}+90 541 999 99 99}}
2024-04-14 22:57:16 +00:00
\kern 0.5 cm
2024-04-28 21:30:02 +00:00
\mbox{\hrefWithoutArrow{https://example.com/}{{\footnotesize\faLink}\hspace*{0.13cm}example.com}}
2024-04-14 22:57:16 +00:00
\kern 0.5 cm
2024-04-28 21:30:02 +00:00
\mbox{\hrefWithoutArrow{https://linkedin.com/in/johndoe}{{\footnotesize\faLinkedinIn}\hspace*{0.13cm}johndoe}}
2024-04-14 22:57:16 +00:00
\kern 0.5 cm
2024-04-28 21:30:02 +00:00
\mbox{\hrefWithoutArrow{https://github.com/johndoe}{{\footnotesize\faGithub}\hspace*{0.13cm}johndoe}}
2024-04-14 22:57:16 +00:00
\kern 0.5 cm
2024-04-28 21:30:02 +00:00
\mbox{\hrefWithoutArrow{https://instagram.com/johndoe}{{\footnotesize\faInstagram}\hspace*{0.13cm}johndoe}}
2024-04-14 22:57:16 +00:00
\kern 0.5 cm
2024-04-28 21:30:02 +00:00
\mbox{\hrefWithoutArrow{https://orcid.org/0000-0000-0000-0000}{{\footnotesize\faOrcid}\hspace*{0.13cm}0000-0000-0000-0000}}
2024-04-14 22:57:16 +00:00
\kern 0.5 cm
2024-04-28 21:30:02 +00:00
\mbox{\hrefWithoutArrow{https://example/@johndoe}{{\footnotesize\faMastodon}\hspace*{0.13cm}@johndoe@example}}
2024-04-14 22:57:16 +00:00
\kern 0.5 cm
2024-04-28 21:30:02 +00:00
\mbox{\hrefWithoutArrow{https://twitter.com/johndoe}{{\footnotesize\faTwitter}\hspace*{0.13cm}johndoe}}
2024-04-14 22:57:16 +00:00
\kern 0.5 cm
2024-02-18 19:41:45 +00:00
\end{header}
2024-04-08 19:29:24 +00:00
\vspace{0.3 cm - 0.3 cm}
2024-02-18 19:41:45 +00:00
2024-02-20 19:30:54 +00:00
2024-03-11 19:30:02 +00:00
\section{Text Entries}
2024-02-18 19:41:45 +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-02-18 19:41:45 +00:00
2024-03-10 18:08:18 +00:00
\vspace{0.2 cm}
2024-02-18 19:41:45 +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-02-18 19:41:45 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
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-11 19:30:02 +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-11 19:30:02 +00:00
\vspace{0.2 cm}
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-11 19:30:02 +00:00
\section{Publication Entries}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2021
}
2024-04-08 19:29:24 +00:00
\begin{minipage}{\linewidth}
\textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils}
2024-03-11 19:30:02 +00:00
2024-04-08 19:29:24 +00:00
\vspace{0.10 cm}
2024-03-11 19:30:02 +00:00
2024-04-08 19:29:24 +00:00
\mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname}
\end{minipage}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2021
}
2024-04-08 19:29:24 +00:00
\begin{minipage}{\linewidth}
\textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils}
2024-03-11 19:30:02 +00:00
2024-04-08 19:29:24 +00:00
\vspace{0.10 cm}
2024-03-11 19:30:02 +00:00
2024-04-08 19:29:24 +00:00
\mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname}
\vspace{0.10 cm}
2024-03-11 19:30:02 +00:00
2024-04-08 19:29:24 +00:00
\href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} \end{minipage}
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2021
}
2024-04-08 19:29:24 +00:00
\begin{minipage}{\linewidth}
\textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils}
2024-03-11 19:30:02 +00:00
2024-04-08 19:29:24 +00:00
\vspace{0.10 cm}
2024-03-11 19:30:02 +00:00
2024-04-08 19:29:24 +00:00
\mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname}
\vspace{0.10 cm}
2024-03-11 19:30:02 +00:00
2024-04-08 19:29:24 +00:00
IEEE Transactions on Applied Superconductivity \end{minipage}
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2021
}
2024-04-08 19:29:24 +00:00
\begin{minipage}{\linewidth}
\textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils}
2024-03-11 19:30:02 +00:00
2024-04-08 19:29:24 +00:00
\vspace{0.10 cm}
2024-03-11 19:30:02 +00:00
2024-04-08 19:29:24 +00:00
\mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname}
\vspace{0.10 cm}
2024-03-11 19:30:02 +00:00
2024-04-08 19:29:24 +00:00
\href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} (IEEE Transactions on Applied Superconductivity) \end{minipage}
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\section{Experience Entries}
2024-04-07 17:41:52 +00:00
2024-04-28 20:37:03 +00:00
\begin{onecolentry}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-04-28 20:37:03 +00:00
\end{onecolentry}
2024-03-17 19:10:43 +00:00
2024-03-27 17:52:01 +00:00
2024-03-17 19:10:43 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-03-17 19:10:43 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2015 to present
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-04-14 22:57:16 +00:00
June 2020
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
\begin{twocolentry}{
2024-03-11 19:30:02 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{Some \textnormal{Company}}, Software Engineer
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
2024-04-28 20:37:03 +00:00
\begin{onecolentry}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-28 20:37:03 +00:00
\end{onecolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-03-27 17:52:01 +00:00
Sept. 2015 to present
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
\begin{twocolentry}{
2024-03-17 19:10:43 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-14 22:57:16 +00:00
June 2020
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
\begin{twocolentry}{
2024-03-17 19:10:43 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{Some \textnormal{Company}}, Software Engineer
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
\begin{twocolentry}{
2024-03-11 19:30:02 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{Some \textnormal{Company}}, Software Engineer
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2015 to present
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-03-17 19:10:43 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{Some \textnormal{Company}}, Software Engineer
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-04-14 22:57:16 +00:00
June 2020
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2021
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-17 19:10:43 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-17 19:10:43 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
\begin{twocolentry}{
2024-03-17 19:10:43 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{Some \textnormal{Company}}, Software Engineer
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
Sept. 2015 to present
}
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{Some \textnormal{Company}}, Software Engineer
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-14 22:57:16 +00:00
June 2020
2024-04-07 17:41:52 +00:00
}
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
Sept. 2021
}
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-17 19:10:43 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-17 19:10:43 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-03-17 19:10:43 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{Some \textnormal{Company}}, Software Engineer
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2021
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-17 19:10:43 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-17 19:10:43 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2021
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{Some \textnormal{Company}}, Software Engineer
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-04-07 17:41:52 +00:00
}
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
Sept. 2021
}
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-17 19:10:43 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-17 19:10:43 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
Sept. 2021
}
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2021
2024-03-11 19:30:02 +00:00
}
2024-03-31 19:10:55 +00:00
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
Sept. 2021
}
\textbf{Some \textnormal{Company}}, Software Engineer
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-03-17 19:10:43 +00:00
2024-03-27 17:52:01 +00:00
2024-03-17 19:10:43 +00:00
\section{Education Entries}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-11 19:30:02 +00:00
}
2024-03-17 19:10:43 +00:00
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-17 19:10:43 +00:00
2024-03-17 19:36:29 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-17 19:36:29 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-17 19:36:29 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:10:43 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-11 19:30:02 +00:00
Sept. 2015 to present
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-04-14 22:57:16 +00:00
June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-11 19:30:02 +00:00
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-17 19:10:43 +00:00
Sept. 2015 to present
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-04-14 22:57:16 +00:00
June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-11 19:30:02 +00:00
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-03-27 17:52:01 +00:00
Sept. 2015 to present
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-14 22:57:16 +00:00
June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
Istanbul, Turkey
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:10:43 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
Sept. 2015 to present
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:36:29 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-04-14 22:57:16 +00:00
June 2020
2024-04-07 17:41:52 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-03-17 19:10:43 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-17 19:10:43 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-03-17 19:36:29 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-17 19:36:29 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2015 to present
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-04-14 22:57:16 +00:00
June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-17 19:10:43 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
Istanbul, Turkey
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-17 19:10:43 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
Sept. 2015 to present
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-17 19:36:29 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-04-14 22:57:16 +00:00
June 2020
2024-04-07 17:41:52 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-03-17 19:10:43 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-17 19:10:43 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2015 to present
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-04-07 17:41:52 +00:00
\end{highlights}
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-14 22:57:16 +00:00
June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
\vspace{0.2 cm}
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-04-07 17:41:52 +00:00
\end{highlights}
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-11 19:30:02 +00:00
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-04-07 17:41:52 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-03-17 19:10:43 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-17 19:10:43 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-03-17 19:36:29 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-17 19:36:29 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-17 19:10:43 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-03-27 17:52:01 +00:00
Sept. 2015 to present
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-04-07 17:41:52 +00:00
\end{highlights}
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-17 19:10:43 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-04-14 22:57:16 +00:00
June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
\vspace{0.2 cm}
\begin{threecolentry}{\textbf{BS}}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-04-07 17:41:52 +00:00
\end{highlights}
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-11 19:30:02 +00:00
Sept. 2021
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-04-07 17:41:52 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-03-17 19:10:43 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-17 19:10:43 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
\vspace{0.2 cm}
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
\vspace{0.2 cm}
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{}}{
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-04-07 17:41:52 +00:00
\end{highlights}
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-17 19:10:43 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
\vspace{0.2 cm}
\begin{threecolentry}{\textbf{BS}}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
\vspace{0.2 cm}
\begin{threecolentry}{\textbf{BS}}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
2024-03-17 19:36:29 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{threecolentry}{\textbf{BS}}{
Sept. 2021
2024-03-17 19:36:29 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-17 19:36:29 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
\vspace{0.2 cm}
\begin{threecolentry}{\textbf{}}{
2024-03-17 19:36:29 +00:00
Istanbul, Turkey
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{threecolentry}
\vspace{0.2 cm}
\begin{threecolentry}{\textbf{BS}}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{Boğaziçi University}, Mechanical Engineering
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-04-07 17:41:52 +00:00
\end{highlights}
\end{threecolentry}
2024-03-11 19:30:02 +00:00
\section{Normal Entries}
2024-04-07 17:41:52 +00:00
2024-04-28 20:37:03 +00:00
\begin{onecolentry}
2024-03-11 19:30:02 +00:00
\textbf{My Project}
2024-04-28 20:37:03 +00:00
\end{onecolentry}
2024-03-11 19:30:02 +00:00
2024-03-17 19:10:43 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-03-17 19:10:43 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
}
\textbf{My Project}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2015 to present
2024-03-11 19:30:02 +00:00
}
\textbf{My Project}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-04-14 22:57:16 +00:00
June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{My Project}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
\begin{twocolentry}{
2024-03-11 19:30:02 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{My Project}
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
2024-04-28 20:37:03 +00:00
\begin{onecolentry}
2024-03-11 19:30:02 +00:00
\textbf{My Project}
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-28 20:37:03 +00:00
\end{onecolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-03-27 17:52:01 +00:00
Sept. 2015 to present
2024-03-11 19:30:02 +00:00
}
\textbf{My Project}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
\begin{twocolentry}{
2024-03-17 19:10:43 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-14 22:57:16 +00:00
June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{My Project}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
\begin{twocolentry}{
2024-03-17 19:10:43 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{My Project}
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
}
\textbf{My Project}
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{My Project}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
\begin{twocolentry}{
2024-03-11 19:30:02 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{My Project}
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2015 to present
2024-03-11 19:30:02 +00:00
}
\textbf{My Project}
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-02-18 19:41:45 +00:00
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-03-17 19:10:43 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{My Project}
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-04-14 22:57:16 +00:00
June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{My Project}
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-02-18 19:41:45 +00:00
2024-03-11 19:30:02 +00:00
2024-02-18 19:41:45 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{My Project}
2024-03-17 19:10:43 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-17 19:10:43 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-02-18 19:41:45 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-02-18 19:41:45 +00:00
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-02-18 19:41:45 +00:00
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-02-18 19:41:45 +00:00
}
2024-03-11 19:30:02 +00:00
\textbf{My Project}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\vspace{0.2 cm}
\begin{twocolentry}{
2024-03-17 19:10:43 +00:00
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{My Project}
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-02-18 19:41:45 +00:00
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-02-18 19:41:45 +00:00
2024-04-07 17:41:52 +00:00
Sept. 2015 to present
}
\textbf{My Project}
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-02-18 19:41:45 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-03-11 19:30:02 +00:00
Istanbul, Turkey
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{My Project}
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-02-18 19:41:45 +00:00
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-02-18 19:41:45 +00:00
2024-04-14 22:57:16 +00:00
June 2020
2024-04-07 17:41:52 +00:00
}
\textbf{My Project}
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-02-18 19:41:45 +00:00
2024-03-11 19:30:02 +00:00
2024-02-18 19:41:45 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
Sept. 2021
}
\textbf{My Project}
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-02-18 19:41:45 +00:00
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-03-11 19:30:02 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{My Project}
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-03-11 19:30:02 +00:00
}
\textbf{My Project}
2024-03-17 19:10:43 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-17 19:10:43 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-02-18 19:41:45 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{My Project}
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2021
2024-02-18 19:41:45 +00:00
}
2024-03-11 19:30:02 +00:00
\textbf{My Project}
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-02-18 19:41:45 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
2024-03-17 19:10:43 +00:00
Istanbul, Turkey
2024-03-27 17:52:01 +00:00
Sept. 2021
2024-04-07 17:41:52 +00:00
}
\textbf{My Project}
\end{twocolentry}
2024-02-18 19:41:45 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-02-18 19:41:45 +00:00
2024-04-14 22:57:16 +00:00
Sept. 2015 to June 2020
2024-04-07 17:41:52 +00:00
}
\textbf{My Project}
2024-03-17 19:10:43 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-17 19:10:43 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-02-18 19:41:45 +00:00
2024-03-10 18:08:18 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-03-10 18:08:18 +00:00
2024-04-07 17:41:52 +00:00
Sept. 2021
}
\textbf{My Project}
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-10 18:08:18 +00:00
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
Sept. 2021
}
\textbf{My Project}
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +00:00
\vspace{0.2 cm}
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Sept. 2021
2024-03-11 19:30:02 +00:00
}
\textbf{My Project}
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-10 18:08:18 +00:00
2024-02-18 19:41:45 +00:00
\vspace{0.2 cm}
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
\begin{twocolentry}{
Istanbul, Turkey
2024-03-11 19:30:02 +00:00
2024-04-07 17:41:52 +00:00
Sept. 2021
}
\textbf{My Project}
2024-03-11 19:30:02 +00:00
\begin{highlights}
2024-04-28 20:37:03 +00:00
\item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.
\item Did that. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
2024-03-11 19:30:02 +00:00
\end{highlights}
2024-04-07 17:41:52 +00:00
\end{twocolentry}
2024-03-11 19:30:02 +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-10 18:08:18 +00:00
2024-02-18 19:41:45 +00:00
\end{document}