Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
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
/** @jsxImportSource https://esm.sh/react */
import { renderToString } from "npm:react-dom/server";
export const personalWebsite = (request: Request) => {
return new Response(
renderToString(
<html>
<head>
<title>Will Krouse</title>
<style
dangerouslySetInnerHTML={{
__html:
`:root{--slate1: hsl(200, 7%, 8.8%);--slate2: hsl(195, 7.1%, 11%);--slate3: hsl(197, 6.8%, 13.6%);--slate4: hsl(198, 6.6%, 15.8%);--slate5: hsl(199, 6.4%, 17.9%);--slate6: hsl(201, 6.2%, 20.5%);--slate7: hsl(203, 6%, 24.3%);--slate8: hsl(20
}}
>
</style>
</head>
<body>
<h1>Will Krouse</h1>
<p>
Hi, I'm Will. I'm 24 and autistic. I live in Boca Raton. I love reading. I like playing board games, card
games, tennis, and pickleball.
</p>
<p>
I'm learning how to program. My favorite part about programming are the valuable meta skills I learn along
the way. For example, I'm finding the debugging mindset to fix code is useful for fixing problems in
general.
</p>
<h1>Projects</h1>
<ul>
<li>
<a href="https://news.ycombinator.com/item?id=39618062">
Bringing My OCD Online: Userscripts for Immersive Forum Browsing
</a>
</li>
</ul>
</body>
</html>,
),
{
headers: { "Content-Type": "text/html" },
},
);
};
stevekrouse-personalwebsite.web.val.run
March 21, 2024