1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
// Site structure and metadata for kumardamani.net.
#let site-info = (
pages: (
index: (title: "Home"),
software: (title: "Software"),
photos: (
title: "Photos",
url: "https://nc.kumardamani.net/apps/memories/a/vSk9IAWVUx2vcqphL9nMnLFmDQBDZWPr",
),
contact: (title: "Contact"),
"post/framework-server-p2": (
title: "Framework Laptop Again",
long-title: "Letting my Framework 13 be a laptop again",
date: "2024-06-03",
description: "Graduating to a more conventional home-lab.",
hidden: true,
),
"post/nas-upgrade": (
title: "NAS Upgrade",
date: "2024-06-01",
description: "I upgrade my NAS hardware, and the platform it runs on.",
hidden: true,
),
"post/listing-my-fav-advice": (
title: "Favourite Life Advice",
long-title: "A list of my favourite life advice",
date: "2023-09-01",
description: "A list of my favourite life advice.",
hidden: true,
),
"post/framework-server": (
title: "Framework Server",
long-title: "Helping my Framework Laptop reach its destiny",
date: "2023-07-29",
description: "Framework laptop as a standalone server.",
hidden: true,
),
"post/nixos-p1": (
title: "NixOS Part 1",
long-title: "Adventures in NixOS - Part 1",
date: "2023-03-24",
description: "Guide to getting started with NixOS the modern way.",
hidden: true,
),
"post/programming-as-art": (
title: "Romanticism in Programming",
date: "2022-11-29",
description: "How programming is romantic.",
hidden: true,
),
"post/self-host": (
title: "Why Self-Host?",
long-title: "Why do I self-host?",
date: "2022-09-12",
description: "Overview of why I self-host.",
hidden: true,
),
"post/programs": (
title: "Programs and Equipment",
date: "2021-11-12",
description: "Overview for the programs and equipment I use day-to-day.",
hidden: true,
),
),
title: "~kumar",
)
|