Ver Fonte

feat: Initial commit personal motivation letter

joostsijm há 11 meses atrás
commit
d2015d54a5
4 ficheiros alterados com 93 adições e 0 exclusões
  1. 13 0
      .gitignore
  2. 16 0
      Makefile
  3. 64 0
      letter.tex
  4. BIN
      qrcode.png

+ 13 - 0
.gitignore

@@ -0,0 +1,13 @@
+# LaTeX files
+*.aux
+*.log
+*.synctex.gz
+*.toc
+*.out
+*.bbl
+*.blg
+*.fdb_latexmk
+*.fls
+*.gz
+*.dvi
+*.pdf

+ 16 - 0
Makefile

@@ -0,0 +1,16 @@
+publish: letter.pdf
+	if [ ! -d "published" ]; then mkdir published; fi
+	cp letter.pdf published/letter.pdf
+	if [ ! -d "published/archive" ]; then mkdir published/archive/; fi
+	cp letter.pdf published/archive/letter_$(shell date -u +"%Y-%m-%dT%H:%M:%SZ").pdf
+
+letter.pdf: letter.tex
+	latexmk -pdf letter.tex
+
+start: view watch
+
+view:
+	-zathura letter.pdf &!
+
+watch:
+	latexmk -pdf -pvc letter.tex

+ 64 - 0
letter.tex

@@ -0,0 +1,64 @@
+\documentclass[a4paper]{letter}
+
+\usepackage{graphicx}
+\usepackage{url}
+\usepackage[hidelinks]{hyperref}
+\pagenumbering{gobble}
+
+\usepackage[top=1cm,bottom=1cm]{geometry}
+
+\begin{document}
+
+\begin{letter}{Kleine Drift 56 \\ 1221 KB Hilversum \\~\\ Betreft: Persoonlijke brief met introductie.}
+
+\begin{center}
+\includegraphics[width=4cm, height=4cm]{qrcode.png} \\
+\textsc{introductie website:} \\
+\href{http://effyzeng.joostsijm.nl}{\url{http://effyzeng.joostsijm.nl}}, \\
+\end{center}
+
+\opening{Beste bewoners,}
+
+Afgelopen vrijdag hebben we kennisgemaakt en tijdens de bezichtiging onze interesse getoond.
+Bij het bod willen we graag een persoonlijke introductie toevoegen.
+
+\textbf{Effy}:
+I have worked as an engineer in China for several years.
+In 2019, I came to study business in the Netherlands, meanwhile seeking for new meaning in my life.
+Followed by 2021, I started working in Hilversum.
+Life was challenging at the beginning due to language and culture shock.
+Over the last four years to live a life where purpose, care, happiness, and love are essential, it has broadened my horizon.
+The friendliness and openness of the people inspired me.
+I learned to be able to listen actively, communicate directly, and behave authentically.
+
+When I have free time, I like to play sports and create art.
+I am excited to have a place at home where I can do things myself and make things I can use in every day.
+I knew what does a dream house mean after viewing your place, as I started to picture doing yoga in the attic.
+Lucky to have met you in person, getting to know the owner of the house provided me with more context and connection.
+Same as you, I’d like to maintain the peacefulness and loveliness of this space.
+I love the philosophy that you put at home, while we can’t make everybody happy, we still can celebrate life every day, to our daily experience, the space that we live in, the love around us and inside us.
+Wish you all the best, and hopefully we see each other again.
+
+\textbf{Joost:}
+Opgroeiend in Bovenkarspel zijn computers en technologie van jongs af aan mijn passie geweest.
+Na een mbo opleiding tot applicatieontwikkelaar, heb ik het besluit genomen tot een hbo-vervolgstudie.
+Wonend in Amsterdam, heb ik Effy heb ontmoet tijdens een taaluitwisseling.
+Inmiddels wonen we sinds twee jaar in Naarden, en heb ik door haar steun mijn studie succesvol afgerond.
+Met mijn kennis heb ik in Utrecht mijn plek gevonden en werk bij een gezellig bedrijf.
+Hierbij draag ik bij aan de ontwikkeling van software om waterbeheer-problemen op te lossen.
+Na de drukke beleving van Amsterdam, herken ik in Hilversum het karakter van het dorp waar ik ben opgegroeid.
+We hopen hier een plek te vinden om samen iets moois op te bouwen.
+
+Afscheid nemen van je huis na 17 jaar gebeurt niet zomaar.
+We hopen je het beste bij de verkoop, en hopen op een gemakkelijke verhuizing.
+Het huis zou altijd voor je open staan, mocht je eens een kopje thee willen komen drinken.
+
+\closing{Met vriendelijke groet,}
+
+Joost Sijm \& Effy Zeng
+
+\href{mailto:jeofyfyst@gmail.com}{jeofyfyst@gmail.com}
+
+\end{letter}
+
+\end{document}

BIN
qrcode.png