Skip to content

Commit 35e0ab7

Browse files
committed
chore:
1 parent ef6a4c2 commit 35e0ab7

7 files changed

Lines changed: 50 additions & 20 deletions

File tree

content/private

Submodule private updated from 8620b64 to b5d7462

content/public/content/notes/periodic/daily/2026-01-05.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ date: "2026-01-05T00:00:00.000Z"
44
tags:
55
- "seasons/systems"
66
- "projects/dayjob"
7+
- "engineering/languages/csharp"
78
- "private"
89
---
910

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: "Systems: Day 18"
3+
date: "2026-01-06T00:00:00.000Z"
4+
tags:
5+
- "seasons/systems"
6+
- "projects/dayjob"
7+
- "engineering/languages/csharp"
8+
- "private"
9+
---
10+
11+
This note is part of my private vault, and isn't published publicly on the site or within the public GitHub.
12+
13+
If you are interested in what this note contains, please [[contact|reach out to me!]] If it's not anything terribly sensitive, I'm happy to chat about it!
14+
15+
16+
## Links
17+
18+
This note originally contained the following links:
19+
20+
- [2026-01-05](content/notes/periodic/daily/2026-01-05)
21+
- [the EventStorming intro I was sent](https://www.youtube.com/watch?v=l93N4XaQJok)

content/public/content/notes/scratch/ratchet-testing.md renamed to content/public/content/notes/scratch/ratcheted-testing.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
title: "Ratcheted Testing: Actual Test-Driven Development"
33
date: "2026-01-05T00:00:00.000Z"
44
tags:
5+
- "engineering/devops"
6+
- "articles"
7+
- "projects/games/magic-atlas"
58
- "private"
69
---
710

content/public/content/notes/typst-resume-template.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: Typst Resume Template
33
date: 2024-04-21
44
tags:
55
- articles/tutorials
6+
- projects/college
7+
- projects/teaching
68
draft: false
79
---
810

quartz/layouts/index.layout.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ export const defaultGraphOptions: Partial<D3Config> = {
1414
postPost: 0.05,
1515
},
1616
edgeOpacity: {
17-
tagTag: { min: 1, max: 1.0 },
18-
tagPost: { min: 0.2, max: 0.6 },
19-
postPost: { min: 0.05, max: 1.0 },
17+
tagTag: { min: 0.9, max: 0.9 },
18+
tagPost: { min: 0.2, max: 0.9 },
19+
postPost: { min: 0.05, max: 0.9 },
2020
},
2121
repelForce: 2,
2222
centerForce: 0.25,
@@ -51,10 +51,10 @@ export const defaultGraphOptions: Partial<D3Config> = {
5151
export const defaultLocalGraphOptions: Partial<D3Config> = {
5252
...defaultGraphOptions,
5353
depth: 1,
54-
scale: 0.5,
54+
scale: 0.7,
5555
baseSize: {
56-
tags: 12,
57-
posts: 12,
56+
tags: 10,
57+
posts: 10,
5858
},
5959
linkDistance: {
6060
tagTag: 50,

quartz/util/iconConfig.ts

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,38 +29,41 @@ export interface TagIconConfig {
2929
export const TAG_ICON_CONFIG: TagIconConfig[] = [
3030
// Access/Privacy
3131
{ tag: "private", icon: "mdi:lock" },
32-
32+
33+
// Specific Projects
34+
{ tag: "projects/games/roblox", icon: "custom:roblox" },
35+
{ tag: "projects/games/magic-atlas", icon: "mdi:cards-outline" },
36+
{ tag: "projects/flowthru", icon: "mdi:graph-outline" },
37+
{ tag: "projects/homelab", icon: "mdi:flask-outline" },
38+
3339
// Programming Languages & Technologies
3440
{ tag: "engineering/languages/python", icon: "mdi:language-python" },
3541
{ tag: "engineering/languages/typescript", icon: "mdi:language-typescript" },
3642
{ tag: "engineering/languages/csharp", icon: "mdi:language-csharp" },
3743
{ tag: "engineering/languages/lua", icon: "mdi:language-lua" },
3844
{ tag: "engineering/languages/scratch", icon: "mdi:cat" },
3945

46+
// Economics Subtopics
47+
{ tag: "economics/strategy", icon: "mdi:arrow-decision" },
48+
{ tag: "economics/finance", icon: "mdi:currency-usd" },
49+
{ tag: "economics/markets", icon: "mdi:handshake" },
50+
51+
// Engineering Subtopics
4052
{ tag: "engineering/bio", icon: "mdi:molecule" },
4153
{ tag: "engineering/languages", icon: "mdi:code-braces" },
4254
{ tag: "engineering/data", icon: "mdi:database" },
4355
{ tag: "engineering/devops", icon: "mdi:truck" },
4456
{ tag: "engineering/frontend", icon: "mdi:palette" },
4557
{ tag: "engineering/ai", icon: "mdi:robot" },
4658

47-
{ tag: "projects/games/roblox", icon: "custom:roblox" },
48-
59+
// General Project Types
4960
{ tag: "projects/games", icon: "mdi:controller-classic" },
50-
{ tag: "projects/homelab", icon: "mdi:flask-outline" },
51-
{ tag: "projects/college", icon: "mdi:school" },
5261
{ tag: "projects/teaching", icon: "mdi:school" },
5362
{ tag: "projects/dayjob", icon: "mdi:vote" },
54-
55-
{ tag: "projects/flowthru", icon: "mdi:graph-outline" },
56-
{ tag: "projects/games/magic-atlas", icon: "mdi:cards-outline" },
57-
58-
{ tag: "economics/strategy", icon: "mdi:arrow-decision" },
59-
{ tag: "economics/finance", icon: "mdi:currency-usd" },
60-
{ tag: "economics/markets", icon: "mdi:handshake" },
61-
63+
{ tag: "projects/college", icon: "mdi:school" },
6264
{ tag: "articles/tutorials", icon: "mdi:information" },
6365

66+
// Seasonal Themes
6467
{ tag: "seasons/rhythm", icon: "mdi:music-note" },
6568
{ tag: "seasons/systems", icon: "mdi:transit-connection-variant" },
6669

0 commit comments

Comments
 (0)