Add Curriculum Vitae

master
Hugo Thunnissen 9 months ago
parent de7479d861
commit 705415cad6

@ -0,0 +1,60 @@
<h1>Curriculum Vitae <em>Hugo Thunnissen</em></h1>
<h2>Experience</h2>
<ul>
<li><p><strong>2020 - Now: Freelance Full Stack Developer</strong> As freelance full stack developer I design and develop software solutions for a variety of parties in education, ecommerce and the personal sphere.</p></li>
<li><p><strong>April 2018 - August 2019: Junior Developer at Hostnet</strong> As a junior developer my task was to refactor and redesign legacy parts of internally developed software to remove technical debt. I also maintained internal tooling used by other developers in the company, reviewed code and worked with grafana.</p></li>
</ul>
<h2>Education</h2>
<ul>
<li><strong>2016 - Now</strong> Student Software Engineering - University of Applied Sciences Amsterdam. Minors:
<ul>
<li>Big Data</li>
<li>Russian</li>
</ul></li>
<li><strong>2009 - 2016</strong> VWO Fons Vitae Lyceum Amsterdam</li>
</ul>
<h2>Technical Experience</h2>
<h3>Programming Languages</h3>
<ul>
<li><strong>Go</strong>: Go is my go-to programming language when writing software for personal projects or for infrastructe related projects for my independent business.</li>
<li><strong>PHP</strong>: I first learned PHP when I started working at Hostnet in 2018. In the time since, I have come to know it as the language of commerce while working as a freelance full-stack developer. I am well versed in object oriented PHP and the Symfony framework.</li>
<li><strong>Javascript/HTML/CSS</strong>: I use javascript when necessary and am comfortable developing SPA's and PWA's. My favourite framework to use is Svelte because of its simplicity and flexibility in deployment configurations.</li>
<li><strong>BASH</strong>: As a Linux user I am well-versed in BASH and various command line utilities.</li>
<li><strong>Emacs Lisp</strong>: Some ome of the largest pieces of software that I have developed in my spare time are written in Emacs Lisp. I am competent with this language and would feel comfortable working with other lisp dialects as well.</li>
<li><strong>Java/C#/C++/C</strong>: I have basic knowledge of these languages.</li>
</ul>
<h3>Skills</h3>
<ul>
<li>Continuous Integration and Continuous Deployment</li>
<li>Linux
<ul>
<li>BASH</li>
<li>iptables, UFW</li>
<li>SystemD</li>
</ul></li>
<li>Docker</li>
<li>LXC</li>
<li>AWS</li>
<li>Git</li>
<li>Nginx</li>
</ul>
<h2>More About Me</h2>
<ul>
<li>Human languages:
<ul>
<li>Dutch (native speaker)</li>
<li>English (fluently)</li>
<li>Russian (basic)</li>
</ul></li>
</ul>

@ -298,6 +298,12 @@ for project_dir in "$here/projects"/*; do
"$title"
done
publish-html "$publish_dir" \
"$here/curriculum-vitae" \
"$publish_dir/curriculum-vitae" \
"$(cat "$here/curriculum-vitae/index.html")" \
'Curriculum Vitae'
cp -rv "$here/assets" "$publish_dir/assets" || exit $?
echo 'SUCCESS!'

@ -9,15 +9,20 @@
enabled!
</p>
<p>
Read my <a href="curriculum-vitae/index.html">My Curriculum Vitae</a>
</p>
<p>
Other places you can find me at on the web:
<ul>
<li><a rel="me" href="https://mstdn.social/@hugot">Fediverse</a></li>
<li><a rel="me" href="https://social.hugot.nl/@hugot">Fediverse</a></li>
<li><a href="https://github.com/hugot/">GitHub</a></li>
<li><a href="https://git.snorba.art/hugo/">ᕦ⊙෴⊙ᕤ baart</a></li>
</ul>
</p>
<br>
<hr>
<section>

@ -1 +1 @@
381269847 2090
993068222 2175

@ -1 +1 @@
1653462513
1689945557

@ -218,6 +218,14 @@ article > section > section > section > header {
padding: 0;
}
code:before {
counter-increment: line;
content: counter(line);
display: inline-block;
padding-right: 0.3em;
min-width: 3ch;
}
.code-sample > pre:before {
counter-increment: line;
content: counter(line);

Loading…
Cancel
Save