Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions data/posts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const popularPosts = [

// Starred posts (not in any specific order)
export const postStars = [
"building-a-shell",
"solving-nyt-pips-puzzle",
"compiling-a-forth",
"counting-words-at-simd-speed",
Expand Down
6 changes: 6 additions & 0 deletions data/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ export default [
desc: "A daily word-sliding puzzle game inspired by Wordle and Scrabble.",
to: "/solving-queuedle",
},
{
name: "andsh",
link: "https://github.com/healeycodes/andsh",
desc: "A tiny shell in C with pipes, cd, env var expansion, history, and tab completion.",
to: "/building-a-shell",
},
{
name: "llmfs",
link: "https://github.com/healeycodes/llmfs",
Expand Down
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default function Home({ allPostsData, description, words }) {
I wrote <Link href="/maybe-the-fastest-disk-usage-program-on-macos">one of the fastest disk-usage programs on macOS</Link> by
using macOS-specific system calls, and then
made it faster by <Link href="/optimizing-my-disk-usage-program">reducing thread scheduling overhead and lock contention</Link>. I
also showed how to beat the performance of <code>grep</code> by just <Link href="/beating-grep-with-go">using goroutines</Link>. I like learning by building things from scratch; like <Link href="/a-fair-cancelable-semaphore-in-go">a fair, and cancelable semaphore in Go</Link>.
also showed how to beat the performance of <code>grep</code> by just <Link href="/beating-grep-with-go">using goroutines</Link>. I like learning by building things from scratch; like <Link href="/building-a-shell">a tiny shell</Link>, and <Link href="/a-fair-cancelable-semaphore-in-go">a fair, and cancelable semaphore in Go</Link>.
</p>
<p>
My <Link href="/installing-npm-packages-very-quickly">experimental package manager</Link> uses simple concurrency patterns to be faster than every package manager aside from Bun (mine is 11% slower) when cold-installing from a lockfile.
Expand Down
Loading
Loading