From 446db517fa2661b0db532ef77533b840c6bd5a46 Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Sun, 19 May 2024 00:59:07 +0300 Subject: [PATCH] tests: update testdata --- .../classic_filled_new.tex | 1814 ----------------- .../test_latex_to_pdf/classic_empty.pdf | Bin 151651 -> 151651 bytes .../test_latex_to_pdf/classic_filled.pdf | Bin 265530 -> 265514 bytes .../engineeringresumes_empty.pdf | Bin 14365 -> 14365 bytes .../engineeringresumes_filled.pdf | Bin 68649 -> 68646 bytes .../test_latex_to_pdf/moderncv_empty.pdf | Bin 27698 -> 27698 bytes .../test_latex_to_pdf/moderncv_filled.pdf | Bin 268718 -> 269049 bytes .../test_latex_to_pdf/sb2nov_empty.pdf | Bin 62801 -> 62801 bytes .../test_latex_to_pdf/sb2nov_filled.pdf | Bin 233198 -> 233197 bytes .../test_markdown_to_html/classic_filled.html | 18 +- .../engineeringresumes_filled.html | 18 +- .../moderncv_filled.html | 18 +- .../test_markdown_to_html/sb2nov_filled.html | 18 +- 13 files changed, 36 insertions(+), 1850 deletions(-) delete mode 100644 tests/testdata/test_generate_latex_file/classic_filled_new.tex diff --git a/tests/testdata/test_generate_latex_file/classic_filled_new.tex b/tests/testdata/test_generate_latex_file/classic_filled_new.tex deleted file mode 100644 index a0a265f..0000000 --- a/tests/testdata/test_generate_latex_file/classic_filled_new.tex +++ /dev/null @@ -1,1814 +0,0 @@ -\documentclass[10pt, letterpaper]{article} - -% Packages: -\usepackage[ - 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 -\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 -\usepackage{amsmath} % for math -\usepackage[ - pdftitle={John Doe's CV}, - pdfauthor={John Doe}, - colorlinks=true, - urlcolor=primaryColor -]{hyperref} % for links, metadata and bookmarks -\usepackage[pscoord]{eso-pic} % for floating text on the page -\usepackage{calc} % for calculating lengths -\usepackage{bookmark} % for bookmarks -\usepackage{lastpage} % for getting the total number of pages -\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 -\usepackage{iftex} % check if engine is pdflatex, xetex or luatex - -% Ensure that generate pdf is machine readable/ATS parsable: -\ifPDFTeX - \input{glyphtounicode} - \pdfgentounicode=1 - \usepackage[T1]{fontenc} - \usepackage[utf8]{inputenc} - \usepackage{lmodern} -\fi - -\usepackage[default, type1]{sourcesanspro} - -% Some settings: -\AtBeginEnvironment{adjustwidth}{\partopsep0pt} % remove space before adjustwidth environment -\pagestyle{empty} % no header or footer -\setcounter{secnumdepth}{0} % no section numbering -\setlength{\parindent}{0pt} % no indentation -\setlength{\topskip}{0pt} % no top skip -\setlength{\columnsep}{0.15cm} % set column seperation -\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}{ - % 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 - -\titlespacing{\section}{ - % left space: - -1pt -}{ - % top space: - 0.3 cm -}{ - % bottom space: - 0.2 cm -} % section title spacing - -% \renewcommand\labelitemi{$\vcenter{\hbox{\small$\bullet$}}$} % custom bullet points -\newenvironment{highlights}{ - \begin{itemize}[ - topsep=0.10 cm, - parsep=0.10 cm, - partopsep=0pt, - itemsep=0pt, - leftmargin=0.4 cm + 10pt - ] -}{ - \end{itemize} -} % new environment for highlights - - -\newenvironment{onecolentry}{ - \begin{adjustwidth}{ - 0.2 cm + 0.00001 cm - }{ - 0.2 cm + 0.00001 cm - } -}{ - \end{adjustwidth} -} % new environment for one column entries - -\newenvironment{twocolentry}[2][]{ - \onecolentry - \def\secondColumn{#2} - \setcolumnwidth{\fill, 4.5 cm} - \begin{paracol}{2} -}{ - \switchcolumn \raggedleft \secondColumn - \end{paracol} - \endonecolentry -} % new environment for two column entries - -\newenvironment{threecolentry}[3][]{ - \onecolentry - \def\thirdColumn{#3} - \setcolumnwidth{1 cm, \fill, 4.5 cm} - \begin{paracol}{3} - {\raggedright #2} \switchcolumn -}{ - \switchcolumn \raggedleft \thirdColumn - \end{paracol} - \endonecolentry -} % new environment for three column entries - -\newenvironment{header}{ - \setlength{\topsep}{0pt}\par\kern\topsep\centering\color{primaryColor}\linespread{1.5} -}{ - \par\kern\topsep -} % new environment for the header - -\newcommand{\placelastupdatedtext}{% \placetextbox{}{}{} - \AddToShipoutPictureFG*{% Add 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 - -% new command for external links: -\renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\mbox{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}} - - -\begin{document} - \placelastupdatedtext - \begin{header} - \fontsize{30 pt}{30 pt} - \textbf{John Doe} - - \vspace{0.3 cm} - - \normalsize - \mbox{{\footnotesize\faMapMarker*}\hspace*{0.13cm}Istanbul, Turkey} - \kern 0.5 cm - \mbox{\hrefWithoutArrow{mailto:john_doe@example.com}{{\footnotesize\faEnvelope[regular]}\hspace*{0.13cm}john\_doe@example.com}} - \kern 0.5 cm - \mbox{\hrefWithoutArrow{tel:+90-541-999-99-99}{{\footnotesize\faPhone*}\hspace*{0.13cm}+90 541 999 99 99}} - \kern 0.5 cm - \mbox{\hrefWithoutArrow{https://example.com/}{{\footnotesize\faLink}\hspace*{0.13cm}example.com}} - \kern 0.5 cm - \mbox{\hrefWithoutArrow{https://linkedin.com/in/johndoe}{{\footnotesize\faLinkedinIn}\hspace*{0.13cm}johndoe}} - \kern 0.5 cm - \mbox{\hrefWithoutArrow{https://github.com/johndoe}{{\footnotesize\faGithub}\hspace*{0.13cm}johndoe}} - \kern 0.5 cm - \mbox{\hrefWithoutArrow{https://instagram.com/johndoe}{{\footnotesize\faInstagram}\hspace*{0.13cm}johndoe}} - \kern 0.5 cm - \mbox{\hrefWithoutArrow{https://orcid.org/0000-0000-0000-0000}{{\footnotesize\faOrcid}\hspace*{0.13cm}0000-0000-0000-0000}} - \kern 0.5 cm - \mbox{\hrefWithoutArrow{https://example/@johndoe}{{\footnotesize\faMastodon}\hspace*{0.13cm}@johndoe@example}} - \kern 0.5 cm - \mbox{\hrefWithoutArrow{https://twitter.com/johndoe}{{\footnotesize\faTwitter}\hspace*{0.13cm}johndoe}} - \kern 0.5 cm - \end{header} - - \vspace{0.3 cm - 0.3 cm} - - - \section{Text Entries} - - - \begin{onecolentry} - 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. - \end{onecolentry} - - \vspace{0.2 cm} - - \begin{onecolentry} - 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. - \end{onecolentry} - - \vspace{0.2 cm} - - \begin{onecolentry} - 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. - \end{onecolentry} - - - - \section{Bullet Entries} - - - \begin{onecolentry} - \textbullet \hspace{3pt} This is a bullet entry. - \end{onecolentry} - - \vspace{0.2 cm} - - \begin{onecolentry} - \textbullet \hspace{3pt} This is a bullet entry. - \end{onecolentry} - - - - \section{Publication Entries} - - - \begin{samepage} - \begin{onecolentry} - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} - - \vspace{0.10 cm} - - \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} - \end{onecolentry} - \end{samepage} - - \vspace{0.2 cm} - - \begin{samepage} - \begin{onecolentry} - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} - - \vspace{0.10 cm} - - \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} - \vspace{0.10 cm} - - \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} \end{onecolentry} - \end{samepage} - - \vspace{0.2 cm} - - \begin{samepage} - \begin{onecolentry} - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} - - \vspace{0.10 cm} - - \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} - \vspace{0.10 cm} - - IEEE Transactions on Applied Superconductivity \end{onecolentry} - \end{samepage} - - \vspace{0.2 cm} - - \begin{samepage} - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} - - \vspace{0.10 cm} - - \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} - \end{twocolentry} - \end{samepage} - - \vspace{0.2 cm} - - \begin{samepage} - \begin{onecolentry} - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} - - \vspace{0.10 cm} - - \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} - \vspace{0.10 cm} - - \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} (IEEE Transactions on Applied Superconductivity) \end{onecolentry} - \end{samepage} - - \vspace{0.2 cm} - - \begin{samepage} - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} - - \vspace{0.10 cm} - - \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} - \vspace{0.10 cm} - - \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} \end{twocolentry} - \end{samepage} - - \vspace{0.2 cm} - - \begin{samepage} - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} - - \vspace{0.10 cm} - - \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} - \vspace{0.10 cm} - - IEEE Transactions on Applied Superconductivity \end{twocolentry} - \end{samepage} - - \vspace{0.2 cm} - - \begin{samepage} - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} - - \vspace{0.10 cm} - - \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} - \vspace{0.10 cm} - - \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} (IEEE Transactions on Applied Superconductivity) \end{twocolentry} - \end{samepage} - - - - \section{Experience Entries} - - - \begin{onecolentry} - \textbf{Some \textnormal{Company}}, Software Engineer - \end{onecolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2015 to present - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - June 2020 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{onecolentry} - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{onecolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2015 to present - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - June 2020 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2015 to June 2020 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2015 to present - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - June 2020 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2015 to June 2020 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2015 to present - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - June 2020 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2015 to June 2020 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2015 to June 2020 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Some \textnormal{Company}}, Software Engineer - \begin{highlights} - \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} - \end{twocolentry} - - - - - \section{Education Entries} - - - \begin{threecolentry}{\textbf{}}{ - - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Sept. 2015 to present - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Sept. 2015 to present - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - - Sept. 2015 to present - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - - June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Sept. 2015 to June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Sept. 2015 to present - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - - Sept. 2015 to present - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - - June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Sept. 2015 to June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Sept. 2015 to present - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - - Sept. 2015 to June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - - Sept. 2015 to present - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - - June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Sept. 2015 to June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - - Sept. 2015 to June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - - Sept. 2015 to present - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - - June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Sept. 2015 to June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - - Sept. 2015 to June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - - Sept. 2015 to June 2020 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - \vspace{0.2 cm} - - \begin{threecolentry}{\textbf{BS}}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{Boğaziçi University}, Mechanical Engineering - \begin{highlights} - \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} - \end{threecolentry} - - - - \section{Normal Entries} - - - \begin{onecolentry} - \textbf{My Project} - \end{onecolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2015 to present - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - June 2020 - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{onecolentry} - \textbf{My Project} - \begin{highlights} - \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} - \end{onecolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2015 to present - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - June 2020 - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2015 to June 2020 - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2015 to present - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - June 2020 - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2015 to June 2020 - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2015 to present - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - June 2020 - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2015 to June 2020 - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{My Project} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Sept. 2021 - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2015 to June 2020 - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - \vspace{0.2 cm} - - \begin{twocolentry}{ - Istanbul, Turkey - - Sept. 2021 - } - \textbf{My Project} - \begin{highlights} - \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} - \end{twocolentry} - - - - - \section{One Line Entries} - - - \begin{onecolentry} - \textbf{Pro\textnormal{gram}ming:} Python, C++, JavaScript, MATLAB - \end{onecolentry} - - - - -\end{document} \ No newline at end of file diff --git a/tests/testdata/test_latex_to_pdf/classic_empty.pdf b/tests/testdata/test_latex_to_pdf/classic_empty.pdf index 29d6329c8c5c8d05bc3e8cdd51a8e194cdebd1c2..cba5222a8b2666c9971598492fd78cecfbd3008e 100644 GIT binary patch delta 112 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 R5e)<&2{$ncB_%~qMhf`k6(s-w delta 4273 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 diff --git a/tests/testdata/test_latex_to_pdf/engineeringresumes_filled.pdf b/tests/testdata/test_latex_to_pdf/engineeringresumes_filled.pdf index 19c5966f9f657c5b070091cb915ce68e75b9c7bb..e920932b4a1a699f9015aeb1addcf3422831177c 100644 GIT binary patch delta 4009 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 diff --git a/tests/testdata/test_latex_to_pdf/moderncv_empty.pdf b/tests/testdata/test_latex_to_pdf/moderncv_empty.pdf index 2f8c1392b55cfdc2f9965440ea0bbe1f865d12ad..db04903a87277ce57cc2a09849eeff776996ddda 100644 GIT binary patch delta 129 zcmdmVgK^Uh#tl4aT9yU|rWS_A+6Knz1_tVyT>8HGDK3d6sR|k{Rz?O!CI+U4P$iqq y(tfizTe@1fm>IblSQxlE8W~xbxth3`yIGoA7#NtDx)>N4+bP%(QZl(DdmjL-iXkch delta 129 zcmdmVgK^Uh#tl4aTIPnP#)d|Q+6Knz1_tVyT>8HGDK3d6sR|k{Rz?O!CI+U4P$iqq y(tfizo4A=-8d(^bxHy|S8kxH|8JIemm^-@~8W@>6n^;;p+9}u&QZl(DdmjL)S0P9M diff --git a/tests/testdata/test_latex_to_pdf/moderncv_filled.pdf b/tests/testdata/test_latex_to_pdf/moderncv_filled.pdf index 8c9cd774ece594002e41894582c5fa65328820a0..dadf1cf919313ca2a178bfea2cfabb9788b38644 100644 GIT binary patch delta 14579 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 Gxc>!pj?*## delta 14210 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 delta 106 zcmcckiuvLz<_+TS*v$=1jSY=VC(FH)fw4C`zT;qXHZpW^c62neaC9|rGBh?dws0{r aGBh?YGI4e^F?Mw`wo|Ynq-1i>m!klO*B!C| diff --git a/tests/testdata/test_latex_to_pdf/sb2nov_filled.pdf b/tests/testdata/test_latex_to_pdf/sb2nov_filled.pdf index 81dac870b4b89ca41fabc37a1beec0b38a623cfb..18bb2c034b344506ce821e636e00ff51a6a0e811 100644 GIT binary patch delta 4335 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 diff --git a/tests/testdata/test_markdown_to_html/classic_filled.html b/tests/testdata/test_markdown_to_html/classic_filled.html index e808ede..6098fca 100644 --- a/tests/testdata/test_markdown_to_html/classic_filled.html +++ b/tests/testdata/test_markdown_to_html/classic_filled.html @@ -25,10 +25,6 @@
  • J. Doe, H. Tom, S. Doe, A. Andsurname
-

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils

-
    -
  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • -

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • @@ -38,6 +34,15 @@
  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • IEEE Transactions on Applied Superconductivity
+

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils

+
    +
  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • +
+

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

+
    +
  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • +
  • IEEE Transactions on Applied Superconductivity
  • +

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • @@ -49,11 +54,6 @@

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

    -
  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • -
  • IEEE Transactions on Applied Superconductivity
  • -
-

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

-
  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • IEEE Transactions on Applied Superconductivity
diff --git a/tests/testdata/test_markdown_to_html/engineeringresumes_filled.html b/tests/testdata/test_markdown_to_html/engineeringresumes_filled.html index e808ede..6098fca 100644 --- a/tests/testdata/test_markdown_to_html/engineeringresumes_filled.html +++ b/tests/testdata/test_markdown_to_html/engineeringresumes_filled.html @@ -25,10 +25,6 @@
  • J. Doe, H. Tom, S. Doe, A. Andsurname
-

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils

-
    -
  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • -

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • @@ -38,6 +34,15 @@
  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • IEEE Transactions on Applied Superconductivity
+

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils

+
    +
  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • +
+

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

+
    +
  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • +
  • IEEE Transactions on Applied Superconductivity
  • +

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • @@ -49,11 +54,6 @@

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

    -
  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • -
  • IEEE Transactions on Applied Superconductivity
  • -
-

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

-
  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • IEEE Transactions on Applied Superconductivity
diff --git a/tests/testdata/test_markdown_to_html/moderncv_filled.html b/tests/testdata/test_markdown_to_html/moderncv_filled.html index e808ede..6098fca 100644 --- a/tests/testdata/test_markdown_to_html/moderncv_filled.html +++ b/tests/testdata/test_markdown_to_html/moderncv_filled.html @@ -25,10 +25,6 @@
  • J. Doe, H. Tom, S. Doe, A. Andsurname
-

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils

-
    -
  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • -

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • @@ -38,6 +34,15 @@
  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • IEEE Transactions on Applied Superconductivity
+

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils

+
    +
  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • +
+

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

+
    +
  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • +
  • IEEE Transactions on Applied Superconductivity
  • +

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • @@ -49,11 +54,6 @@

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

    -
  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • -
  • IEEE Transactions on Applied Superconductivity
  • -
-

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

-
  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • IEEE Transactions on Applied Superconductivity
diff --git a/tests/testdata/test_markdown_to_html/sb2nov_filled.html b/tests/testdata/test_markdown_to_html/sb2nov_filled.html index e808ede..6098fca 100644 --- a/tests/testdata/test_markdown_to_html/sb2nov_filled.html +++ b/tests/testdata/test_markdown_to_html/sb2nov_filled.html @@ -25,10 +25,6 @@
  • J. Doe, H. Tom, S. Doe, A. Andsurname
-

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils

-
    -
  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • -

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • @@ -38,6 +34,15 @@
  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • IEEE Transactions on Applied Superconductivity
+

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils

+
    +
  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • +
+

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

+
    +
  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • +
  • IEEE Transactions on Applied Superconductivity
  • +

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • @@ -49,11 +54,6 @@

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

    -
  • J. Doe, H. Tom, S. Doe, A. Andsurname
  • -
  • IEEE Transactions on Applied Superconductivity
  • -
-

Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils (10.1109/TASC.2023.3340648)

-
  • Sept. 2021 - J. Doe, H. Tom, S. Doe, A. Andsurname
  • IEEE Transactions on Applied Superconductivity