my personal website
0

Configure Feed

Select the types of activity you want to include in your feed.

polish: mise, config, bio capitalization, css

author
daniel daum
date (Jul 6, 2026, 12:34 PM -0700) commit 8ee42989 parent 3a04d675 change-id touvqpxv
+80 -40
+1 -3
.gitignore
··· 1 1 # misc 2 2 .DS_Store 3 - .vscode 4 - *.md 5 3 *.vite 6 - .claude 4 +
+6
changelog.html
··· 49 49 <li>streamlined css</li> 50 50 <li>standardized favicon across the site</li> 51 51 <li>updated element spacing across the site</li> 52 + <li>added mise.toml for toolchain config</li> 53 + <li>added favicon link to all pages</li> 54 + <li>capitalized bio text in index.html</li> 55 + <li>cleaned up .gitignore</li> 56 + <li>adjusted .project-type font size to 0.7rem</li> 57 + <li>added scrollbar-gutter and base font-size to html</li> 52 58 </ul> 53 59 54 60 <h3>fixed</h3>
+20 -21
global.css
··· 150 150 /*============================*/ 151 151 html { 152 152 height: 100%; 153 + font-size: 15px; 154 + scrollbar-gutter: stable; 153 155 154 156 --background-dark: #0e140f; 155 157 --borders: #273028; ··· 164 166 } 165 167 166 168 body { 167 - max-width: 65ch; 169 + max-width: 75ch; 168 170 margin: 0 auto; 169 171 padding: min(3rem, 8vw) min(2rem, 4vw); 170 172 font-family: ··· 172 174 "Roboto Mono", Consolas, "Courier New", monospace; 173 175 color: var(--text-body); 174 176 background-color: var(--background-dark); 175 - line-height: 1.6; 177 + line-height: 1.7; 176 178 } 177 179 178 180 header { 179 181 padding: 0.5rem; 180 - font-size: 0.9rem; 181 182 margin-bottom: 0.4rem; 182 183 } 183 184 184 185 main { 185 186 padding: 0.5rem; 186 - font-size: 0.9rem; 187 187 } 188 188 189 189 footer { 190 190 padding: 0.5rem; 191 - font-size: 0.9rem; 192 191 } 193 192 194 193 nav { ··· 205 204 } 206 205 207 206 h1 { 208 - font-size: 1.6rem; 207 + font-size: 1.75rem; 209 208 color: var(--accent); 210 209 margin: 0 0 0.3rem 0; 211 210 font-weight: 700; ··· 213 212 } 214 213 215 214 h2 { 216 - font-size: 1.25rem; 215 + font-size: 1.35rem; 217 216 color: var(--text-headings); 218 217 margin: 2rem 0 0.5rem 0; 219 218 font-weight: 600; ··· 222 221 } 223 222 224 223 h3 { 225 - font-size: 1.05rem; 224 + font-size: 1.15rem; 226 225 color: var(--accent); 227 226 margin: 1rem 0 0.5rem 0; 228 227 font-weight: 600; ··· 264 263 } 265 264 266 265 figcaption { 267 - font-size: 0.8rem; 266 + font-size: 0.85rem; 268 267 color: var(--text-secondary); 269 268 margin-top: 0.6rem; 270 269 } ··· 273 272 font-family: 274 273 "Ioskeley Mono", "Geist Mono", "SF Mono", Monaco, "Cascadia Code", 275 274 "Roboto Mono", Consolas, "Courier New", monospace; 276 - font-size: 0.88rem; 275 + font-size: 0.9rem; 277 276 color: var(--text-headings); 278 277 background: var(--accent-muted); 279 278 padding: 0.2rem 0.4rem; ··· 308 307 padding: 0; 309 308 display: block; 310 309 color: var(--text-body); 311 - font-size: 0.85rem; 310 + font-size: 0.88rem; 312 311 border: none; 313 312 box-shadow: none; 314 313 line-height: 1.5; ··· 362 361 .title { 363 362 margin: 0 0 0.3rem 0; 364 363 font-weight: 700; 365 - line-height: 1.6; 364 + line-height: 1.4; 366 365 color: var(--text-body); 367 - font-size: 2rem; 366 + font-size: 1.9rem; 368 367 } 369 368 370 369 .meta { 371 - font-size: 0.8rem; 370 + font-size: 0.85rem; 372 371 color: var(--text-secondary); 373 372 margin-top: 0.4rem; 374 373 margin-bottom: 1.25rem; ··· 379 378 } 380 379 381 380 .nav-back { 382 - font-size: 0.85rem; 381 + font-size: 0.9rem; 383 382 color: var(--text-secondary); 384 383 margin-bottom: 1.5rem; 385 384 display: block; ··· 407 406 } 408 407 409 408 h1 { 410 - font-size: 1.4rem; 409 + font-size: 1.5rem; 411 410 } 412 411 413 412 h2 { 414 - font-size: 1.15rem; 413 + font-size: 1.2rem; 415 414 margin-top: 1.75rem; 416 415 padding-top: 1rem; 417 416 } 418 417 419 418 h3 { 420 - font-size: 1rem; 419 + font-size: 1.05rem; 421 420 margin-top: 0.9rem; 422 421 } 423 422 ··· 437 436 } 438 437 439 438 pre code { 440 - font-size: 0.8rem; 439 + font-size: 0.82rem; 441 440 } 442 441 443 442 hr { ··· 451 450 } 452 451 453 452 h1 { 454 - font-size: 1.5rem; 453 + font-size: 1.6rem; 455 454 } 456 455 } 457 456 ··· 701 700 } 702 701 703 702 .project-type { 704 - font-size: 0.7rem; 703 + font-size: 0.75rem; 705 704 letter-spacing: 0.1em; 706 705 color: var(--text-secondary); 707 706 }
+46 -16
index.html
··· 13 13 /> 14 14 <meta name="referrer" content="strict-origin-when-cross-origin" /> 15 15 <link rel="stylesheet" href="/global.css" /> 16 - <link rel="icon" type="image/jpeg" href="/src/assets/favicon/coast.jpeg" /> 17 - <link rel="icon" type="image/png" sizes="32x32" href="/src/assets/favicon/favicon-32x32.png" /> 18 - <link rel="icon" type="image/png" sizes="16x16" href="/src/assets/favicon/favicon-16x16.png" /> 19 - <link rel="apple-touch-icon" sizes="180x180" href="/src/assets/favicon/apple-touch-icon.png" /> 16 + <link 17 + rel="icon" 18 + type="image/jpeg" 19 + href="/src/assets/favicon/coast.jpeg" 20 + /> 21 + <link 22 + rel="icon" 23 + type="image/png" 24 + sizes="32x32" 25 + href="/src/assets/favicon/favicon-32x32.png" 26 + /> 27 + <link 28 + rel="icon" 29 + type="image/png" 30 + sizes="16x16" 31 + href="/src/assets/favicon/favicon-16x16.png" 32 + /> 33 + <link 34 + rel="apple-touch-icon" 35 + sizes="180x180" 36 + href="/src/assets/favicon/apple-touch-icon.png" 37 + /> 20 38 <link rel="manifest" href="/src/assets/favicon/site.webmanifest" /> 21 39 <title>daniel daum</title> 22 40 </head> ··· 27 45 <nav aria-label="main navigation"> 28 46 <a href="/index.html" aria-label="return home">home</a> 29 47 <a href="/now" aria-label="now page">now</a> 30 - <s><a href="/writing" aria-label="writing, coming soon">writing</a></s> 31 - <s><a href="/garden" aria-label="garden, coming soon">garden</a></s> 48 + <s 49 + ><a href="/writing" aria-label="writing, coming soon" 50 + >writing</a 51 + ></s 52 + > 53 + <s 54 + ><a href="/garden" aria-label="garden, coming soon" 55 + >garden</a 56 + ></s 57 + > 32 58 <a href="/projects" aria-label="projects">projects</a> 33 59 </nav> 34 60 </header> 35 61 36 62 <main> 37 63 <p> 38 - welcome! i'm daniel, a software engineer living in oakland, ca 64 + Welcome! I'm Daniel, a software engineer living in Oakland, CA 39 65 </p> 40 66 <p> 41 - i built this site to share my thoughts, practice my writing, and 42 - publish things i find interesting. most recently, i've worked on 43 - building backend services and data infrastructure 67 + I built this site to share my thoughts, practice my writing, and 68 + publish things I find interesting. Most recently, I've worked on 69 + building backend services and data infrastructure. 44 70 </p> 45 71 <p> 46 - outside of work i enjoy reading, music, running, lifting, 47 - cooking, video games, writing, hiking, and building software 72 + Outside of work I enjoy reading, music, running, lifting, 73 + cooking, video games, writing, hiking, and building software. 48 74 </p> 49 75 <p> 50 - i am pursuing an undergradute degree in computer science and 51 - currently learning rust and game development 76 + I am pursuing an undergradute degree in computer science and 77 + currently learning game development 52 78 </p> 53 79 <p> 54 - don't hesitate to shoot me an email, especially if it's to chat 80 + Don't hesitate to shoot me an email, especially if it's to chat 55 81 about books or video games 56 82 </p> 57 83 </main> ··· 74 100 >git</a 75 101 > 76 102 77 - <a href="/pgp.asc" aria-label="link to my pgp public key (516E97FF)">pgp</a> 103 + <a 104 + href="/pgp.asc" 105 + aria-label="link to my pgp public key (516E97FF)" 106 + >pgp</a 107 + > 78 108 <a href="/changelog.html">changelog</a> 79 109 </nav> 80 110 <p class="meta" aria-label="page last updated on may 11, 2026">
+7
mise.toml
··· 1 + [tools] 2 + node = "lts" 3 + "npm:vite" = "latest" 4 + 5 + [tasks.dev] 6 + run = "vite" 7 + description = "Start Vite dev server"