├── .dockerignore ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── prettier.xml ├── vcs.xml └── website.iml ├── .prettierrc ├── .vscode ├── extensions.json └── launch.json ├── Dockerfile ├── README.md ├── assets └── screenshot.png ├── astro.config.mjs ├── flake.lock ├── flake.nix ├── fly.toml ├── package.json ├── pnpm-lock.yaml ├── public ├── cmp-doc-screenshot.png ├── cmp-screenshot.png ├── default-ui-select-screenshot.png ├── first-blur-section-demo.png ├── fonts │ ├── CommitMono-400-Italic.otf │ ├── CommitMono-400-Regular.otf │ ├── CommitMono-700-Italic.otf │ ├── CommitMono-700-Regular.otf │ ├── SymbolsNerdFontMono-Regular.ttf │ ├── georgia-webfont.woff │ ├── georgia-webfont.woff2 │ ├── georgiab-webfont.woff │ ├── georgiab-webfont.woff2 │ ├── georgiai-webfont.woff │ ├── georgiai-webfont.woff2 │ ├── georgiaz-webfont.woff │ └── georgiaz-webfont.woff2 ├── gitsigns-hunk-change-popup-screenshot.png ├── gitsigns-readme-screenshot.png ├── lualine-readme.png ├── mason-screenshot-zoomed.png ├── mathjax-screenshot.png ├── nixpkg-search-cmake.png ├── no-neck-pain-readme.png ├── nvim-cxx-screenshot-zoomed.png ├── nvim-cxx-screenshot.png ├── nvim-filetree-screenshot-zoomed.png ├── nvim-filetree-screenshot.png ├── nvim-go-screenshot-zoomed.png ├── nvim-go-screenshot.png ├── nvim-lazy-screenshot-zoomed.png ├── nvim-lazy-screenshot.png ├── nvim-tree-readme.png ├── progressive-blur-demo.mov ├── progressive-blur-example.jpeg ├── progressive-blur-glitching.mov ├── progressive-blur-gradient.png ├── progressive-blur-illustration-light.png ├── progressive-blur-illustration.png ├── progressive-blur-screenshot.png ├── selection-detection-find-a-light.png ├── selection-detection-find-a.png ├── selection-detection-find-intersection-light.png ├── selection-detection-find-intersection.png ├── selection-detection-problem-light.png ├── selection-detection-problem.png ├── selection-detection-special-cases-light.png ├── selection-detection-special-cases.png ├── selection-projection-light.png ├── selection-projection.png └── telescope-ui-select-screenshot.png ├── src ├── components │ ├── BaseHead.astro │ ├── Buffer.astro │ ├── CommandLine.astro │ ├── Footer.astro │ ├── FormattedDate.astro │ ├── Header.astro │ ├── Link.astro │ └── LuaLine.astro ├── consts.ts ├── content │ ├── blog.ts │ ├── blog │ │ ├── a-gentle-introduction-to-cloudflare-tunnels.md │ │ ├── amor-fati.md │ │ ├── arithmetics-with-typescript-types.md │ │ ├── ask-what-not-why.md │ │ ├── autocomplete-considered-harmful.md │ │ ├── being-alone.md │ │ ├── being-myself-unapologetically.md │ │ ├── continuous-deployment-with-ssh-and-tailscale.md │ │ ├── embracing-impostor-syndrome.md │ │ ├── fear-of-falling-behind.md │ │ ├── friction-create-purpose.md │ │ ├── grand-plan-for-my-life.md │ │ ├── how-to-fix-cs-edu.md │ │ ├── human-connections.md │ │ ├── kenneth-v24-released-today.md │ │ ├── markdown-style-guide.md │ │ ├── mathjax-css-injection.md │ │ ├── my-neovim-setup.md │ │ ├── packaging-go-cli-as-flake.md │ │ ├── piano-and-the-lost-symphony.md │ │ ├── progressive-blur-in-css.md │ │ ├── selection-detection-with-vector-math.md │ │ ├── the-pathological-desire-for-validation.md │ │ ├── three-types-of-figures-in-your-life.md │ │ ├── untitled.md │ │ ├── why-i-still-wont-use-llm.md │ │ └── your-environment-dictates-everything.md │ ├── config.ts │ └── read │ │ ├── being-you.md │ │ ├── the-creative-act.md │ │ ├── user-friendly.md │ │ └── zero-to-one.md ├── env.d.ts ├── layouts │ ├── BlogPost.astro │ └── BookRead.astro ├── pages │ ├── blog │ │ └── [...slug].astro │ ├── index.astro │ ├── read.astro │ ├── read │ │ └── [...slug].astro │ └── rss.xml.js └── styles │ └── global.css ├── tailwind.config.mjs └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/prettier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.idea/prettier.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/website.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.idea/website.iml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/flake.nix -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/fly.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/cmp-doc-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/cmp-doc-screenshot.png -------------------------------------------------------------------------------- /public/cmp-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/cmp-screenshot.png -------------------------------------------------------------------------------- /public/default-ui-select-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/default-ui-select-screenshot.png -------------------------------------------------------------------------------- /public/first-blur-section-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/first-blur-section-demo.png -------------------------------------------------------------------------------- /public/fonts/CommitMono-400-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/fonts/CommitMono-400-Italic.otf -------------------------------------------------------------------------------- /public/fonts/CommitMono-400-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/fonts/CommitMono-400-Regular.otf -------------------------------------------------------------------------------- /public/fonts/CommitMono-700-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/fonts/CommitMono-700-Italic.otf -------------------------------------------------------------------------------- /public/fonts/CommitMono-700-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/fonts/CommitMono-700-Regular.otf -------------------------------------------------------------------------------- /public/fonts/SymbolsNerdFontMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/fonts/SymbolsNerdFontMono-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/georgia-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/fonts/georgia-webfont.woff -------------------------------------------------------------------------------- /public/fonts/georgia-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/fonts/georgia-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/georgiab-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/fonts/georgiab-webfont.woff -------------------------------------------------------------------------------- /public/fonts/georgiab-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/fonts/georgiab-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/georgiai-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/fonts/georgiai-webfont.woff -------------------------------------------------------------------------------- /public/fonts/georgiai-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/fonts/georgiai-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/georgiaz-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/fonts/georgiaz-webfont.woff -------------------------------------------------------------------------------- /public/fonts/georgiaz-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/fonts/georgiaz-webfont.woff2 -------------------------------------------------------------------------------- /public/gitsigns-hunk-change-popup-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/gitsigns-hunk-change-popup-screenshot.png -------------------------------------------------------------------------------- /public/gitsigns-readme-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/gitsigns-readme-screenshot.png -------------------------------------------------------------------------------- /public/lualine-readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/lualine-readme.png -------------------------------------------------------------------------------- /public/mason-screenshot-zoomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/mason-screenshot-zoomed.png -------------------------------------------------------------------------------- /public/mathjax-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/mathjax-screenshot.png -------------------------------------------------------------------------------- /public/nixpkg-search-cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/nixpkg-search-cmake.png -------------------------------------------------------------------------------- /public/no-neck-pain-readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/no-neck-pain-readme.png -------------------------------------------------------------------------------- /public/nvim-cxx-screenshot-zoomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/nvim-cxx-screenshot-zoomed.png -------------------------------------------------------------------------------- /public/nvim-cxx-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/nvim-cxx-screenshot.png -------------------------------------------------------------------------------- /public/nvim-filetree-screenshot-zoomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/nvim-filetree-screenshot-zoomed.png -------------------------------------------------------------------------------- /public/nvim-filetree-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/nvim-filetree-screenshot.png -------------------------------------------------------------------------------- /public/nvim-go-screenshot-zoomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/nvim-go-screenshot-zoomed.png -------------------------------------------------------------------------------- /public/nvim-go-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/nvim-go-screenshot.png -------------------------------------------------------------------------------- /public/nvim-lazy-screenshot-zoomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/nvim-lazy-screenshot-zoomed.png -------------------------------------------------------------------------------- /public/nvim-lazy-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/nvim-lazy-screenshot.png -------------------------------------------------------------------------------- /public/nvim-tree-readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/nvim-tree-readme.png -------------------------------------------------------------------------------- /public/progressive-blur-demo.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/progressive-blur-demo.mov -------------------------------------------------------------------------------- /public/progressive-blur-example.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/progressive-blur-example.jpeg -------------------------------------------------------------------------------- /public/progressive-blur-glitching.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/progressive-blur-glitching.mov -------------------------------------------------------------------------------- /public/progressive-blur-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/progressive-blur-gradient.png -------------------------------------------------------------------------------- /public/progressive-blur-illustration-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/progressive-blur-illustration-light.png -------------------------------------------------------------------------------- /public/progressive-blur-illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/progressive-blur-illustration.png -------------------------------------------------------------------------------- /public/progressive-blur-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/progressive-blur-screenshot.png -------------------------------------------------------------------------------- /public/selection-detection-find-a-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/selection-detection-find-a-light.png -------------------------------------------------------------------------------- /public/selection-detection-find-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/selection-detection-find-a.png -------------------------------------------------------------------------------- /public/selection-detection-find-intersection-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/selection-detection-find-intersection-light.png -------------------------------------------------------------------------------- /public/selection-detection-find-intersection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/selection-detection-find-intersection.png -------------------------------------------------------------------------------- /public/selection-detection-problem-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/selection-detection-problem-light.png -------------------------------------------------------------------------------- /public/selection-detection-problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/selection-detection-problem.png -------------------------------------------------------------------------------- /public/selection-detection-special-cases-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/selection-detection-special-cases-light.png -------------------------------------------------------------------------------- /public/selection-detection-special-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/selection-detection-special-cases.png -------------------------------------------------------------------------------- /public/selection-projection-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/selection-projection-light.png -------------------------------------------------------------------------------- /public/selection-projection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/selection-projection.png -------------------------------------------------------------------------------- /public/telescope-ui-select-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/public/telescope-ui-select-screenshot.png -------------------------------------------------------------------------------- /src/components/BaseHead.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/components/BaseHead.astro -------------------------------------------------------------------------------- /src/components/Buffer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/components/Buffer.astro -------------------------------------------------------------------------------- /src/components/CommandLine.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/components/CommandLine.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/FormattedDate.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/components/FormattedDate.astro -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/Link.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/components/Link.astro -------------------------------------------------------------------------------- /src/components/LuaLine.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/components/LuaLine.astro -------------------------------------------------------------------------------- /src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/consts.ts -------------------------------------------------------------------------------- /src/content/blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog.ts -------------------------------------------------------------------------------- /src/content/blog/a-gentle-introduction-to-cloudflare-tunnels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/a-gentle-introduction-to-cloudflare-tunnels.md -------------------------------------------------------------------------------- /src/content/blog/amor-fati.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/amor-fati.md -------------------------------------------------------------------------------- /src/content/blog/arithmetics-with-typescript-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/arithmetics-with-typescript-types.md -------------------------------------------------------------------------------- /src/content/blog/ask-what-not-why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/ask-what-not-why.md -------------------------------------------------------------------------------- /src/content/blog/autocomplete-considered-harmful.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/autocomplete-considered-harmful.md -------------------------------------------------------------------------------- /src/content/blog/being-alone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/being-alone.md -------------------------------------------------------------------------------- /src/content/blog/being-myself-unapologetically.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/being-myself-unapologetically.md -------------------------------------------------------------------------------- /src/content/blog/continuous-deployment-with-ssh-and-tailscale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/continuous-deployment-with-ssh-and-tailscale.md -------------------------------------------------------------------------------- /src/content/blog/embracing-impostor-syndrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/embracing-impostor-syndrome.md -------------------------------------------------------------------------------- /src/content/blog/fear-of-falling-behind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/fear-of-falling-behind.md -------------------------------------------------------------------------------- /src/content/blog/friction-create-purpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/friction-create-purpose.md -------------------------------------------------------------------------------- /src/content/blog/grand-plan-for-my-life.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/grand-plan-for-my-life.md -------------------------------------------------------------------------------- /src/content/blog/how-to-fix-cs-edu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/how-to-fix-cs-edu.md -------------------------------------------------------------------------------- /src/content/blog/human-connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/human-connections.md -------------------------------------------------------------------------------- /src/content/blog/kenneth-v24-released-today.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/kenneth-v24-released-today.md -------------------------------------------------------------------------------- /src/content/blog/markdown-style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/markdown-style-guide.md -------------------------------------------------------------------------------- /src/content/blog/mathjax-css-injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/mathjax-css-injection.md -------------------------------------------------------------------------------- /src/content/blog/my-neovim-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/my-neovim-setup.md -------------------------------------------------------------------------------- /src/content/blog/packaging-go-cli-as-flake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/packaging-go-cli-as-flake.md -------------------------------------------------------------------------------- /src/content/blog/piano-and-the-lost-symphony.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/piano-and-the-lost-symphony.md -------------------------------------------------------------------------------- /src/content/blog/progressive-blur-in-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/progressive-blur-in-css.md -------------------------------------------------------------------------------- /src/content/blog/selection-detection-with-vector-math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/selection-detection-with-vector-math.md -------------------------------------------------------------------------------- /src/content/blog/the-pathological-desire-for-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/the-pathological-desire-for-validation.md -------------------------------------------------------------------------------- /src/content/blog/three-types-of-figures-in-your-life.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/three-types-of-figures-in-your-life.md -------------------------------------------------------------------------------- /src/content/blog/untitled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/untitled.md -------------------------------------------------------------------------------- /src/content/blog/why-i-still-wont-use-llm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/why-i-still-wont-use-llm.md -------------------------------------------------------------------------------- /src/content/blog/your-environment-dictates-everything.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/blog/your-environment-dictates-everything.md -------------------------------------------------------------------------------- /src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/config.ts -------------------------------------------------------------------------------- /src/content/read/being-you.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/read/being-you.md -------------------------------------------------------------------------------- /src/content/read/the-creative-act.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/read/the-creative-act.md -------------------------------------------------------------------------------- /src/content/read/user-friendly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/read/user-friendly.md -------------------------------------------------------------------------------- /src/content/read/zero-to-one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/content/read/zero-to-one.md -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/layouts/BlogPost.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/layouts/BlogPost.astro -------------------------------------------------------------------------------- /src/layouts/BookRead.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/layouts/BookRead.astro -------------------------------------------------------------------------------- /src/pages/blog/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/pages/blog/[...slug].astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/read.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/pages/read.astro -------------------------------------------------------------------------------- /src/pages/read/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/pages/read/[...slug].astro -------------------------------------------------------------------------------- /src/pages/rss.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/pages/rss.xml.js -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/tailwind.config.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethnym/website/HEAD/tsconfig.json --------------------------------------------------------------------------------