-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (52 loc) · 3.22 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<title>Rayo Verweij | Home</title>
<meta name="description" content="Welcome to the website of Rayo Verweij! I'm the Chief Technology Officer of Voxsio, where we build ethical and engaging digital health apps in collaboration with the NHS.">
<meta name="viewport" content="width=device-width, minimum-scale=1" />
<link rel="preconnect" href="https://rsms.me/" />
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="/favicon.ico" />
</head>
<body>
<div id="container">
<header>
<div id="background"></div>
<div id="photocontainer">
<img
id="photograph"
src="./rayoonaboat.webp"
alt="Rayo sitting on a sailing boat smiling at the camera"
/>
</div>
</header>
<main>
<h1>Hoi! I'm Rayo Verweij</h1>
<small><span id="introarr">→ </span><em>That's /rah-yo ver-wai/ and I use he/they pronouns</em></small>
<p>Currently...</p>
<ul id="joblist">
<li id="uni">A PhD candidate at the Centre for Doctoral Training in <a href="https://responsiblenlp.org" target="_blank" rel="noopener noreferrer">Designing Responsible Natural Language Processing</a> at the University of Edinburgh</li>
<li id="voxsio">The chief technology officer of <a href="https://voxsio.com" target="_blank" rel="noopener noreferrer">Voxsio</a>, building ethical and engaging digital health apps in partnership with the NHS</li>
<li id="prewired">The treasurer of <a href="https://prewired.org" target="_blank" rel="noopener noreferrer">Prewired</a>, an Edinburgh charity that runs a weekly after-school coding club for young people</li>
</ul>
<h2>Verweijzingen</h2>
<p id="verwijzing"><strong>ver·'wij·zing</strong> <em>(de, v., mv: -en)</em> "reference".</p>
<ul>
<li id="aisummit">At the 2023 Scottish AI Summit in Glasgow I hosted a workshop called “Building Inclusive AI: Language, Dialect, and Diversity” that <a href="https://www.scottishaisummit.com/workshop-building-inclusive-ai-language-dialect-and-diversity" target="_blank" rel="noopener noreferrer">you can watch some bits of</a> if you're interested</li>
<li id="dissertation">My 2021 MSc dissertation, “An Online Research Environment for Behavioural Studies into Reinforcement Learning”, can be <a href="/docs/Verweij2021-OnlineResearchEnvironment.pdf" target="_blank" rel="noopener noreferrer">read here</a></li>
<li id="tacotab">In 2020 I built <a href="https://rayoverweij.github.io/tacotab/" target="_blank" rel="noopener noreferrer">TacoTab</a>, a web app for tabulating World Schools-style debating tournaments, for the <a href="https://debate.bard.edu" target="_blank" rel="noopener noreferrer">Bard Debate Union</a>—it still holds up quite well!
</ul>
<h2>Contact</h2>
<p>rayo [dot] verweij [at] ed [dot] ac [dot] uk or <a href="https://linkedin.com/in/rayo-verweij" target="_blank" rel="noopener noreferrer">LinkedIn</a></p>
</main>
</div>
<footer>
© Rayo Verweij <span id="date"></span>.
</footer>
<script>
const year = new Date().getFullYear();
document.getElementById("date").innerText = year;
</script>
</body>
</html>