diff --git a/build.sh b/build.sh
new file mode 100755
index 0000000..4003e28
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,3 @@
+#!/usr/bin/zsh
+
+pandoc ./jaytux.com.md -s -o ./jaytux.com.html
diff --git a/index.html b/index.html
deleted file mode 100644
index 8563b98..0000000
--- a/index.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- Jonas Sys (jay-tux)
-
-
-
- Jonas Sys
- aka jay-tux
-
-
diff --git a/jaytux.com.html b/jaytux.com.html
new file mode 100644
index 0000000..e2b96ec
--- /dev/null
+++ b/jaytux.com.html
@@ -0,0 +1,259 @@
+
+
+
+
+
+
+
+
+ Jonas Sys (jay-tux)
+
+
+
+
+
+
+
+
+
+
+News
+
+ASPLOS/EuroSys’25
+I presented at EuroDW’25, and stayed for the full conference.
+
+
+Publications
+
+Coming soon!
+
+
+Teaching
+
+Software Engineering Lab 1 (TA)
+Semester: Spring 2025
+Description: A project-oriented course meant to teach students
+to work in a professional setting, building a mobile app.
+
+
+Education
+
+PhD Student (Computer Science)
+UGent and VUB
+October 2024 - present
+Supervised by both Christophe Scholliers (UGent) and Elisa Gonzalez Boix
+(VUB)
+Master of Computer Science graduated magna
+cum laude
+UGent
+September 2022 - June 2024
+Thesis: Quantifying and
+Mitigating the Cold-Start Problem in GPU Simulation
+
+Erasmus International Exchange
+Aarhus University
+September 2022 - June 2023
+Focused on program verification and algorithms
+
+Bachelor of Computer Science graduated cum
+laude
+UGent
+September 2019 - June 2022
+
+
+
diff --git a/jaytux.com.md b/jaytux.com.md
new file mode 100644
index 0000000..ce20496
--- /dev/null
+++ b/jaytux.com.md
@@ -0,0 +1,72 @@
+---
+title: Jonas Sys (jay-tux)
+author: Jonas Sys
+date: 2025-04-13
+header-includes:
+ - ' '
+ - ' '
+ - ' '
+ - ' '
+---
+
+
+
+---
+
+## News
+
+- **ASPLOS/EuroSys'25**
+ I presented at EuroDW'25, and stayed for the full conference.
+
+---
+
+## Publications
+
+Coming soon!
+
+---
+
+## Teaching
+
+- **Software Engineering Lab 1** (TA)
+ *Semester:* Spring 2025
+ *Description:* A project-oriented course meant to teach students to work in a professional setting, building a mobile app.
+
+---
+
+## Education
+
+- **PhD Student (Computer Science)**
+ [UGent](https://ugent.be/en) and [VUB](https://www.vub.be/en)
+ October 2024 - present
+ Supervised by both Christophe Scholliers (UGent) and Elisa Gonzalez Boix (VUB)
+
+- **Master of Computer Science** *graduated magna cum laude*
+ [UGent](https://ugent.be/en)
+ September 2022 - June 2024
+ Thesis: [Quantifying and Mitigating the Cold-Start Problem in GPU Simulation](https://jaytux.com/thesis.pdf)
+
+ - *Erasmus International Exchange*
+ [Aarhus University](https://international.au.dk/)
+ September 2022 - June 2023
+ Focused on program verification and algorithms
+
+- **Bachelor of Computer Science** *graduated cum laude*
+ [UGent](https://ugent.be/en)
+ September 2019 - June 2022
diff --git a/lucide_github.svg b/lucide_github.svg
new file mode 100644
index 0000000..60c011f
--- /dev/null
+++ b/lucide_github.svg
@@ -0,0 +1,14 @@
+
+
+
+
diff --git a/lucide_mail.svg b/lucide_mail.svg
new file mode 100644
index 0000000..10c16aa
--- /dev/null
+++ b/lucide_mail.svg
@@ -0,0 +1,14 @@
+
+
+
+
diff --git a/overrides.css b/overrides.css
new file mode 100644
index 0000000..10b1c30
--- /dev/null
+++ b/overrides.css
@@ -0,0 +1,32 @@
+body {
+ max-width: 60rem;
+ width: 60rem;
+}
+
+header {
+ display: none;
+}
+
+.header-icons {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ gap: 20px;
+}
+
+.icon {
+ position: relative;
+ display: inline-block;
+ color: inherit;
+ text-decoration: none;
+}
+
+.icon .detail {
+ display: none;
+ margin-left: 8px;
+ font-size: 0.9em;
+}
+
+.icon:hover .detail {
+ display: inline;
+}
diff --git a/pfp.png b/pfp.png
new file mode 100644
index 0000000..9384dd2
Binary files /dev/null and b/pfp.png differ
diff --git a/picture.jpg b/picture.jpg
new file mode 100644
index 0000000..b428f85
Binary files /dev/null and b/picture.jpg differ
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..7c5d790
--- /dev/null
+++ b/style.css
@@ -0,0 +1,62 @@
+/* styles.css */
+
+/* General page styling */
+body {
+ font-family: Arial, sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+}
+
+/* Header container styling */
+.header-container {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 20px;
+ border-bottom: 1px solid #ccc;
+ background-color: #f9f9f9;
+}
+
+/* Header images */
+.header-image {
+ width: 150px;
+ height: auto;
+}
+
+/* Specific classes for left/right images */
+.header-image.left {
+ float: left;
+}
+
+.header-image.right {
+ float: right;
+}
+
+/* Header details (center section) */
+.header-details {
+ flex-grow: 1;
+ text-align: center;
+}
+
+/* Section headings styling */
+h1, h2, h3 {
+ color: #333;
+ margin-bottom: 10px;
+}
+
+/* Formatted list items styling */
+ul {
+ list-style: none;
+ padding: 0;
+}
+
+ul li {
+ margin-bottom: 15px;
+ padding-left: 15px;
+ border-left: 3px solid #0077cc;
+}
+
+ul li strong {
+ color: #0077cc;
+}