From bb0cd30e25dc0ab8b68f4b8e45c5dc882f480b5f Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Tue, 15 Aug 2023 23:52:25 +0200 Subject: Genesis Commit --- index.html | 150 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 57 +++++++++++++++++++++++ 2 files changed, 207 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..507478b --- /dev/null +++ b/index.html @@ -0,0 +1,150 @@ + + + + + + + Thomas Voss’ CV + + +
+

Thomas Voss

+ +
+ +
+

Competencies

+ +
+ + +
Systems- and Low-Level Programming
+

+ I am very familiar with systems- and low-level + programming with lots of experience using languages like + C and Assembly along with the revelant build-tools such + as Make. +

+
+ + +
Fullstack Web Development
+

+ I’m no stranger to web development either, and I always + try to emphasize simplicity when possible. I have + worked extensively with backend frameworks + like Flask, and I am capable of building + effective- and usable frontends without the need to + download megabytes of useless- and bloated JavaScript. +

+
+
+ +
+

Education

+ +
+ + +
The International School of The Hague
+ 2016–2021 +

Secondary School

+
+ + +
Delft University of Technology
+ 2021–2022 +

+ BSc + Computer Science and Engineering +

+
+
+ +
+

Work Experience

+ +
+ + +
LiteBit
+ Backend Developer +

+ Worked as a backend developer for a crypto-trading + platform, primarily using TypeScript and C#. Other + tools used include Docker, Kubernetes, and Retool. +

+
+ + +
Humanwave
+ Fullstack Developer +

+ Worked as a fullstack developer writing + HR + software. The languages frequently used consisted of + CSS, JavaScript, Jinja, Python (WebApp2 & Flask), and + Vue. Additionally, GNU gettext and the Po language was + used to handle localization. Other tools used include + Google App Engine. +

+
+
+ +
+

My Cool Stuff

+ +
+ + +
+ + mmv + +
+ Move Mapped/Multiple Files +

+ The best tool ever made for renaming- or moving multiple + files. I am not exaggerating. +

+
+ + +
+ mstatus +
+ A FIFO-based status bar for DWM and Sway +

+ A status bar written in C that works with the DWM window + manager on X11 and the Sway window manager on Wayland. It + allows for easy extensibility by allowing the user to send + commands via a named-pipe to customize the contents of the + status bar. +

+
+ + +
+ smallbrain +
+ Optimizing Brainfuck Interpreter in x86 Assembly +

+ A Brainfuck interpreter written in x86-64 assembly that + compiles the given brainfuck source code file into a + bytecode. The bytecode is then optimized and finally + executed. Also, I did proper error checking. +

+
+
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..31d40dc --- /dev/null +++ b/style.css @@ -0,0 +1,57 @@ +@page { + size: auto; + margin: 0; +} + +*, *::before, *::after { + box-sizing: border-box; +} + +body { + display: grid; + grid-template-columns: 1fr min(800px, 90%) 1fr; + margin: 0; + font-size: 1.1rem; +} + +body > * { + grid-column: 2; +} + +#links { + padding-inline-start: 1rem; +} + +@media (min-width: 480px) { + #links { + display: flex; + width: 100%; + justify-content: space-between; + padding-inline: 0; + } + + #links li { + list-style: none; + } +} + +x-entry { + display: grid; + grid-template-columns: 1fr 1fr; +} + +x-entry > header { + font-weight: bold; +} + +x-entry > :is(x-job-title, x-time-range, x-description) { + text-align: right; +} + +x-entry > p { + grid-column: span 2; +} + +section > x-entry:not(:last-child) { + margin-bottom: 1rem; +} -- cgit v1.2.3