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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
<script lang="ts">
//// var
const referrer = "?ref=webb.page";
const products = [
{
comment: "why the hell would I remember a password?",
name: "1Password",
url: "https://1password.com"
},
{
comment: "Terminal emulator",
name: "Alacritty",
url: "https://alacritty.org"
},
{
comment: "when songs aren’t on Bandcamp",
name: "Apple Music",
url: "https://music.apple.com"
},
{
comment: "default browser",
name: "Arc",
url: "https://arc.net"
},
{
comment: "because not having a backup hurts",
name: "Backblaze",
url: "https://www.backblaze.com"
},
{
comment: "better than ChatGPT",
name: "Claude",
url: "https://claude.ai"
},
{
comment: "the best database on the planet",
name: "Gel",
url: "https://www.geldata.com"
},
{
comment: "Terminal emulator with tab support",
name: "Ghostty",
url: "https://ghostty.org"
},
{
comment: "best search engine after Neeva sold out",
name: "Kagi",
url: "https://kagi.com"
},
{
comment: "taking notes on the go",
name: "Lumen",
url: "https://uselumen.com"
},
{
comment: "one day I’ll graduate to hosting my own IMAP software instead",
name: "Mail-in-a-Box",
url: "https://mailinabox.email"
},
{
comment: "RSS is alive and well",
name: "NetNewsWire",
url: "https://netnewswire.com"
},
{
comment: "when Safari is being dumb",
name: "Orion",
url: "https://kagi.com/orion"
},
{
comment: "taking notes at my computer",
name: "Obsidian",
url: "https://obsidian.md"
},
{
comment: "code editor",
name: "Sublime Text",
url: "https://www.sublimetext.com"
},
];
</script>
<style lang="scss">
h2 {
margin: 0 0 calc(var(--padding)* 2); padding: var(--padding) calc(var(--padding) * 2);
background-color: var(--color-border);
color: var(--uchu-yin-7);
font-size: 1rem;
line-height: inherit;
position: sticky;
top: 0;
z-index: 1;
}
ul {
line-height: 1;
margin-left: calc(var(--list-indentation) / 2);
padding: 0 var(--list-indentation) 0.25rem 0;
li {
margin: 0; padding: 0 0 var(--baseline) calc(var(--baseline) * 2);
position: relative;
&::before,
&::after {
background-color: var(--color-border);
content: "";
left: 0;
position: absolute;
}
&::before {
width: calc(var(--list-indentation) / 2); height: 1px;
top: calc(var(--list-indentation) / 4);
}
&::after {
width: 1px; height: var(--list-indentation);
top: calc(var(--list-indentation) * -0.75);
}
}
a {
text-decoration: underline var(--uchu-yin-2);
span {
padding-left: 0.2rem;
position: relative;
text-decoration: underline var(--uchu-gray-2);
}
}
}
</style>
<h2>uses.webb.page</h2>
<ul>
{#each products as product}
<li>
<a href={product.url + referrer}>{product.name}<span> ({product.comment})</span></a>
</li>
{/each}
</ul>
|