cv-website

Personal website and CV
git clone https://git.in0rdr.ch/cv-website.git
Log | Files | Refs | Pull requests | README | LICENSE

commit 0b89122ccdf0cdf802bf0a911b774f3839a40a14
parent 6f60e15c9b2703808e3a57a27fd44c8bb65df4e3
Author: Andreas Gruhler <andreas.gruhler@adfinis.com>
Date:   Tue, 20 Aug 2024 11:49:10 +0200

feat: improve about page

Diffstat:
Mabout.md | 23+++++++++++++++++------
Massets/scss/_layout.scss | 4++++
2 files changed, 21 insertions(+), 6 deletions(-)

diff --git a/about.md b/about.md @@ -4,17 +4,28 @@ title: About me permalink: /about/ --- + <div style="text-align: justify"> +<p>Apart from my <a href="https://p0c.ch">enthusiasm for open source +software</a>, I'm mainly interested in: +<ul class="list"> + <li>Relational databases</li> + <li>Distributed systems</li> + <li>Theoretical computer science (I invite you to nerd-talk with me about + cryptography/graph/automata/quantum computing/complexity theories)</li> + <li>Infrastructure automation (X as Code) in organizations</li> + <li>Open source licensing</li> + <li>Linux in general</li> +</ul> +</p> <img src="/assets/images/Gruhler Andreas_CV Grey.jpg" alt="Andreas Gruhler CV Picture" - style="width: 130px; margin: 0 0 10px 30px" - class="pull-right" /> + style="width: 110px; margin: 0 30px 10px 20px" class="pull-left" /> -<p>Apart from my <a href="https://p0c.ch">enthusiasm for open source -software</a>, I'm mainly interested in relational databases, distributed -ledgers, graph theory, reputation systems and infrastructure automation (X as -Code) in organizations.</p> +<p>I enjoy to build and work with open source products and systems that do one +thing and do it well. Also, I enjoy working with HashiCorp products and its +open source forks.</p> <p>In my spare time I like to bike, board, ski or <a href="https://code.in0rdr.ch">tinker</a> around, self-host things and kick-off diff --git a/assets/scss/_layout.scss b/assets/scss/_layout.scss @@ -35,6 +35,10 @@ li { list-style: none; } +ul.list li { + list-style: circle; +} + hr { border-top: none; border-bottom: 2px solid lighten($light-gray-color, 7%);