Initial commit of simple php site.

This commit is contained in:
2026-05-22 13:02:57 +02:00
parent 96419b9f81
commit b2b00df260
11 changed files with 129 additions and 7 deletions
+33
View File
@@ -0,0 +1,33 @@
<?php include_once(ROOT . '/web/partials/head.php'); ?>
<section>
<h2 class="main-title">Hi, I'm Jason</h2>
<h1 class="sub-title">Software engineer.</h1>
<p>
I build backend systems, data pipelines, and internal tooling. I have a bias toward simplicity and the shortest path
to something solid — built to last, not just to ship. I'd rather understand a system deeply than paper over it with abstractions.
</p>
<p>
When I'm not working, I'm either in the water surfing, spending time with my girlfriend, playing games, or digging into systems programming
— CPU simulators, indie game experiments, and the custom tooling that tends to grow around them. I run Linux, daily-drive a
Happy Hacking Keyboard, and have strong opinions about my desktop setup — some might call it a problem, I call it a hobby.
</p>
<div>
<p>Values I hold in work and life</p><br>
<span>Simplicity.</span><br>
<span>Pragmatism.</span><br>
<span>Minimalism.</span><br>
<span>Right tool for the job.</span><br>
<span>Unix philosophy</span><br>
</div>
<p> ---------------------------------------------- </p>
<div>
<a target="_blank" href="https://codeberg.org/jasonhilder">Codeberg</a>
<a target="_blank" href="https://github.com/jasonhilder">Github</a>
<a target="_blank" href="https://www.linkedin.com/in/jason-hilder/">LinkedIn</a>
<p><small>Active work lives on Codeberg — GitHub is kept as an archive of older projects.</small></p>
</div>
</section>
<?php include_once(ROOT . '/web/partials/footer.php') ?>