Skip to content

Commit 481576a

Browse files
committed
small copy updates
1 parent 60376c2 commit 481576a

File tree

4 files changed

+8
-11
lines changed

4 files changed

+8
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Issues/bug reports are very welcome.
99
## Features
1010

1111
- Next.js hosted on Vercel
12-
- Markdown + images
12+
- Markdown, images, and videos
1313
- RSS feed (links, not full content)
1414
- Simple design focused on content (responsive for desktop/mobile)
15-
- Code highlighting via `prism-react-renderer`
15+
- Code highlighting via `prism-react-renderer` (TODO fix Lisp syntax highlighting)
1616
- Newsletter CTA (powered by Buttondown)
1717
- All core features work without JavaScript enabled
1818
- End-to-end tests with `playwright`
@@ -40,4 +40,4 @@ npm run dev
4040

4141
Feel free to use any of my writing or code for educational reasons (e.g. you're teaching a class).
4242

43-
Otherwise, check with me before republishing my writing or code (I'll give permission 99% of the time).
43+
Otherwise, check with me before republishing my writing (I'll give permission 99% of the time).

pages/about.tsx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@ export default function About() {
1111
<h1>About</h1>
1212
<main>
1313
<p>
14-
I write software and write about software. I{" "}
15-
<a href="mailto:[email protected]">love getting email</a>. My research interests include programming languages, game solvers (chess, sokoban, and more), and isolation/sandboxing.
16-
</p>
14+
I write software and write about software. My research interests include programming language design, compilers, JavaScript runtimes, game solvers, and running untrusted code.</p>
1715
<p>
18-
This <a href={siteConfig.REPO_URL}>open source</a> website is built with Next.js.
16+
This <a href={siteConfig.REPO_URL}>open source</a> website is built with Next.js, and I <a href="mailto:[email protected]">love getting email.</a>
1917
</p>
2018
<SpacedImage
2119
src={mePresenting}
@@ -28,8 +26,7 @@ export default function About() {
2826
style={{ borderRadius: '0.4em' }}
2927
/>
3028
<p>
31-
I like teaching people things that I know. I like video games,
32-
running, and reading.
29+
I like teaching people things that I know. I like video games, classic games (chess, scrabble, sudoku), running, and reading.
3330
</p>
3431
<p>
3532
I am easily impressed by people and the cool stuff they build. I

pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default function Home({ allPostsData, description, words }) {
5555
style={{ borderRadius: '0.4em' }}
5656
/>
5757
<p className="avatar-text">
58-
Hey, I'm Andrew Healey. I'm a software engineer at Vercel, and I'm interested in the joy of computing. I've written{" "}
58+
Hey, I'm Andrew Healey. I'm a software engineer at Vercel, and I'm interested in the <Link href="/my-time-at-the-recurse-center">joy of computing</Link>. I've written{" "}
5959
{numberWithCommas(words)} words on this{" "}
6060
<a href={siteConfig.REPO_URL}>open source</a> website.
6161
</p>

pages/projects.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function Projects({ totalStars, mostRecentPushFormatted }: { tota
1717
<h1>Projects</h1>
1818
<main>
1919
<p>
20-
My side projects include programming languages, web frameworks, game solvers, developer tools, databases, and games. My public GitHub repositories have been starred {totalStars} times, and my last open source <code>git push</code> was {mostRecentPushFormatted} ago.
20+
My side projects include interpreters and compilers, web frameworks, game solvers, developer tools, databases, games, and more. My public GitHub repositories have been starred {totalStars} times, and my last open source <code>git push</code> was {mostRecentPushFormatted} ago.
2121
</p>
2222
<h2>Open Source</h2>
2323
<div className="project-list">

0 commit comments

Comments
 (0)