2024-03-17 09:33:22 +00:00
|
|
|
<script lang="ts">
|
|
|
|
|
import { format as formatDate } from "date-fns";
|
|
|
|
|
// TODO: move somewhere common
|
|
|
|
|
interface BlogPost {
|
|
|
|
|
title: string;
|
|
|
|
|
slug: string;
|
|
|
|
|
date: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export let latestBlogPosts: BlogPost[] = [];
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<section class="homepage-header">
|
|
|
|
|
<h1 class="title">(Thomas) Wilson</h1>
|
|
|
|
|
<p class="body">
|
2024-03-17 22:01:32 +00:00
|
|
|
I love the craft of making well-built things, especially software and
|
|
|
|
|
clothes. My embarrassing but earnest goal is to:
|
2024-03-17 09:33:22 +00:00
|
|
|
</p>
|
2024-03-17 22:01:32 +00:00
|
|
|
<blockquote class="mission-statement">
|
|
|
|
|
make things stronger which don't rely on exploitation, excessive waste, or
|
|
|
|
|
dishonesty; and to try and build a kinder, fairer world even when it's hard.
|
|
|
|
|
</blockquote>
|
2024-03-17 09:33:22 +00:00
|
|
|
<p class="body">
|
2024-03-17 22:01:32 +00:00
|
|
|
I try to think and be curious, which is why I keep a <a href="/blog">weblog</a
|
|
|
|
|
> and, equally worth mentioning, what got me through a
|
2024-03-17 09:33:22 +00:00
|
|
|
<a
|
|
|
|
|
class="thesis"
|
|
|
|
|
target="_blank"
|
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
|
href="https://eprints.soton.ac.uk/418168/"
|
|
|
|
|
>Ph.D. in Education Technology</a
|
|
|
|
|
>.
|
|
|
|
|
</p>
|
|
|
|
|
<p class="body">Here are some things I've written recently:</p>
|
|
|
|
|
|
|
|
|
|
<ol>
|
|
|
|
|
{#each latestBlogPosts as post}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="/blog/{post.slug}">{post.title}</a> ({formatDate(
|
|
|
|
|
new Date(post.date),
|
|
|
|
|
"yyyy-MM-dd"
|
|
|
|
|
)})
|
|
|
|
|
</li>
|
|
|
|
|
{/each}
|
|
|
|
|
</ol>
|
|
|
|
|
|
|
|
|
|
<p class="body">
|
|
|
|
|
Right now I am a Senior Software engineer at <a
|
|
|
|
|
href="https://www.laka.co.uk"
|
|
|
|
|
target="_blank"
|
|
|
|
|
rel="noopener noreferrer">Laka</a
|
|
|
|
|
>, building tools actually fairer insurance. Before that, I was Head of
|
|
|
|
|
Software Engineering at
|
|
|
|
|
<a href="https://www.oxwash.com" target="_blank" rel="noopener noreferrer"
|
|
|
|
|
>Oxwash</a
|
|
|
|
|
>, building tools for actually sustainable laundry.
|
|
|
|
|
</p>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.homepage-header {
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a,
|
|
|
|
|
ol,
|
|
|
|
|
li,
|
2024-03-17 22:01:32 +00:00
|
|
|
p,
|
|
|
|
|
blockquote {
|
2024-03-17 09:33:22 +00:00
|
|
|
color: var(--text-color);
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 60ch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-family: inherit;
|
2024-03-17 22:01:32 +00:00
|
|
|
padding-bottom: 1.85rem;
|
2024-03-17 09:33:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.body {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
</style>
|