Skip to content

Commit

Permalink
Small copy updates
Browse files Browse the repository at this point in the history
  • Loading branch information
healeycodes committed Nov 28, 2023
1 parent 14460a7 commit c6ca87b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 18 deletions.
2 changes: 1 addition & 1 deletion components/newsletter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function Newsletter() {
return (
<div className="newsletter-section">
<p className="newsletter-desc">
Subscribe to my new posts (about once a month).
Subscribe to be notified of my new posts. I write the newsletters by hand and they are not as frequent as the posts on here.
</p>
<form
action={`https://buttondown.email/api/emails/embed-subscribe/${siteConfig.BUTTON_DOWN_USER}`}
Expand Down
21 changes: 7 additions & 14 deletions pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import mePresenting from "../public/assets/presenting-high-res.jpg";

import SpacedImage from "../components/image";
import Layout from "../components/layout";
import Link from "next/link";

export default function About() {
return (
Expand All @@ -12,16 +11,10 @@ export default function About() {
<main>
<p>
I write software and write about software. I{" "}
<a href="mailto:[email protected]">love getting email</a>
consider this a{" "}
<a
href="https://www.kalzumeus.com/standing-invitation/"
target="_blank"
rel="noreferrer"
>
standing invitation
</a>
. My research interests include personal computing, game solvers (chess, sokoban, and more), and programming language design. This <a href={siteConfig.REPO_URL}>open source</a> website is built with Next.js.
<a href="mailto:[email protected]">love getting email</a>. My research interests include cloud infrastructure, programming languages, game solvers (chess, sokoban, and more), and isolation/sandboxing.
</p>
<p>
This <a href={siteConfig.REPO_URL}>open source</a> website is built with Next.js.
</p>
<SpacedImage
src={mePresenting}
Expand All @@ -38,14 +31,14 @@ export default function About() {
running, and reading.
</p>
<p>
I am easily impressed by people and the cool stuff that they build. I
I am easily impressed by people and the cool stuff they build. I
read a lot of technical blogs. If we've ever interacted,
I've visited your website and probably think it's cool!
</p>
<p>Technical books I recommend include Crafting Interpreters, and The Computational Beauty of Nature. Non-tech authors I recommend include Patricia Lockwood and Ben Lerner. In my undergrad, I mostly studied post-WWII fiction.</p>
<p>I prefer cold days, and drink coffee every day.</p>
<p>I prefer rainy days, I like the colder months, and I drink coffee every day.</p>
<h2>Work</h2>
<p>I'm a software engineer at Vercel.</p>
<p>I'm a software engineer at Vercel in the infrastructure org.</p>
<h2>Education</h2>
<ul>
<li>The Recurse Center (W2'23)</li>
Expand Down
8 changes: 7 additions & 1 deletion pages/articles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,20 @@ export default function Articles({ tags, posts }) {
<h1>{title}</h1>
<main>
<p className="articles-intro">Here's a chronological list of all the posts on this website.
A star means that I thought the post was pretty neat (or, that a lot of other people thought it was pretty neat).
A star (<span className="star">*</span>) means that I thought the post was pretty neat (or, that a lot of other people thought it was pretty neat).
</p>
<PostList posts={posts} showYears={true} />
</main>
<style jsx>{`
.articles-intro {
padding-bottom: 24px;
}
.star {
font-size: 28px;
vertical-align: text-top;
/* not sure of support, so the above is an okay default! */
vertical-align: -webkit-baseline-middle;
}
`}</style>
</Layout>
);
Expand Down
4 changes: 2 additions & 2 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ export async function getStaticProps() {
count + getPostData(current.id).content.split(" ").length,
0
) +
// Count notes
getAllNotes().reduce((count, current) => count + current.content.split(" ").length, 0)
// Count notes
getAllNotes().reduce((count, current) => count + current.content.split(" ").length, 0)
return {
props: {
allPostsData,
Expand Down

1 comment on commit c6ca87b

@vercel
Copy link

@vercel vercel bot commented on c6ca87b Nov 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.