| api | ||
| cgol | ||
| public | ||
| secrets | ||
| src | ||
| .envrc | ||
| .gitignore | ||
| check_cleanup.txt | ||
| eslint.config.js | ||
| flake.lock | ||
| flake.nix | ||
| index.html | ||
| module.nix | ||
| package-lock.json | ||
| package.json | ||
| prettier.config.js | ||
| README.md | ||
| secrets.nix | ||
| tor.har | ||
| tsconfig.json | ||
| vite-plugin-ansi.ts | ||
| vite-plugin-markdown.ts | ||
| vite.config.ts | ||
jetpham.com
Jet Pham's personal website. This website comes with a long story. The domain was originally registered in highschool by my teamate on my robotics team as a joke. The site was originally a filesystem full of memes and random files. Once I was in college, the domain expired and I registered it myself.
The site originally contained a blog. It was made in Next.js plainly with plain colors and no real style. I posted a few blogs about my life but eventually lost motivaiton and didn't like sharing it with other people after having been inspired by so many other cool websites.
I started to become more obsessed with Rust and rewrote my website from being a blog into a static linktree site made in rust via WASM. It was in ASCII style using a modified fork of ratzilla and had a fun implementation of Conways Game of Life in the background.
After leaving that website alone, I started to make more web based projects in Next.js. I realized I could properly make this website awesome and still keep the interesting style in the site while making it more performant, responsive, and accessible. This is the state that you see the website in now.
I have some awesome features packed in this site now that represent all the cool things I'm interested in:
- ANSI rendering of my name in CSS!
- Terminal style text, font, and colors just like BBS
- Rust WASM implementation of Conway's Game of Life running in the background
- List of socials and contact info
Let me know if you have any feedback about the site!
Tech Stack
- Next.js 16 with Turbo mode
- Tailwind CSS v4
- TypeScript
- React 19
- Rust + WebAssembly (for Conway's Game of Life)
- Bun (package manager)
Development
Prerequisites
- Bun
- Rust (for building the Conway's Game of Life WASM module)
- wasm-pack (or use the install script)
Getting Started
-
Clone the repository
-
Build the Rust WASM module:
bun run build:wasmOr use the install script:
./install.sh -
Install dependencies:
bun install -
Start the development server:
bun run dev
The site will be available at http://localhost:3000.
Q&A Mail Safety
The Q&A feature sends notification emails from qa@... and uses a static Reply-To like qa@jetpham.com. Replies are matched back to the right question by parsing the question number from the email subject, e.g. 123 - ....
To avoid breaking normal inbound mail when the Q&A API is down:
- set
services.jetpham-website.qaMailDomain = "jetpham.com"; - set
services.jetpham-website.qaReplyDomain = "jetpham.com"; - route only the exact reply address
qa@jetpham.cominto the Q&A webhook - keep your personal mail domain (
extremist.software) delivering normally without depending on the Q&A webhook
This isolates the automation path from your main inbox. If the Q&A API fails, Q&A replies may be delayed, but personal mail should still deliver normally.
Project Structure
src/ - Next.js app router pages
cgol/ - Rust WASM module for Conway's Game of Life
public/ - Static assets