-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogroll.html
More file actions
355 lines (301 loc) · 13 KB
/
blogroll.html
File metadata and controls
355 lines (301 loc) · 13 KB
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blogroll</title>
<link href="stylesheets/reset.css" rel="stylesheet">
<link href="stylesheets/fonts.css" rel="stylesheet">
<link href="stylesheets/base.css" rel="stylesheet">
<link href="stylesheets/utils.css" rel="stylesheet">
<link href="stylesheets/page.css" rel="stylesheet">
<style>
section {
border: 1px solid #ccc;
padding: 4px;
background-color: #f9f9f9;
}
p {
margin: 0;
}
code {
background-color: #f4f4f4;
padding: 2px 4px;
border-radius: 3px;
}
main {
max-width: 100ch;
}
</style>
<script>
class RssFeedList extends HTMLElement {
async connectedCallback() {
const feedUrl = this.getAttribute('feed-url');
if (!feedUrl) return;
try {
const response = await fetch(feedUrl);
const text = await response.text();
const parser = new DOMParser();
const xml = parser.parseFromString(text, 'text/xml');
const items = xml.querySelectorAll('item, entry');
const ul = document.createElement('ul');
items.forEach(item => {
const title = item.querySelector('title').textContent;
const link = item.querySelector('link').textContent;
const li = document.createElement('li');
const a = document.createElement('a');
a.href = link;
a.textContent = title;
li.appendChild(a);
ul.appendChild(li);
});
this.appendChild(ul);
} catch (e) {
console.error('Failed to load RSS feed:', e);
}
}
}
customElements.define('rss-feed-list', RssFeedList);
</script>
</head>
<body>
<main>
<p><a href="index.html">← max bo</a></p>
<h1>Blogroll</h1>
<p>My blogroll, a collection of backlinks to blogs I read occasionally. I was inspired to create one after reading <a href="https://cheapskatesguide.org/articles/personal-website-hunting.html">Hunting the Nearly-Invisible Personal Website</a>.</p>
<br />
<br />
<p>
<b>NOTE:</b> I have an <q>authoritative</q> list of RSS/Atom feeds I follow at <a href="feeds.html">feeds.html</a>
which I load into <a href="https://newsboat.org/">newsboat</a> with <code>newsboat -u <(curl -s https://maxbo.me/feeds)</code>.
There will often be more RSS feeds than blogroll entries, as I may not have added all the blogs to the blogroll yet.
</p>
<br />
<br />
<section>
<em><a href="https://stratechery.com/">Stratechery by Ben Thompson</a></em>
<p>On the business, strategy, and impact of technology.</p>
<p><a href="https://twitter.com/benthompson">Twitter</a></p>
</section>
<section>
<em><a href="https://simonwillison.net/">Simon Willison's Weblog</a></em>
<p>Simon Willison's blog on web development, data journalism, and more.</p>
<p><a href="https://twitter.com/simonw">Twitter</a>, <a href="https://simonwillison.net/atom/everything/">Atom</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://simonwillison.net/atom/everything/"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://tigerbeetle.com/blog/">TigerBeetle</a></em>
<p><a href="https://tigerbeetle.com/blog/atom.xml">Atom</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://tigerbeetle.com/blog/atom.xml"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://apenwarr.ca/log/">apenwarr</a></em>
<p>Avery Pennarun's blog on various tech topics.</p>
<p><a href="https://twitter.com/apenwarr">Twitter</a>, <a href="https://apenwarr.ca/log/rss.php">RSS</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://apenwarr.ca/log/rss.php"></rss-feed-list>
</section>
<section>
<em><a href="https://www.kalzumeus.com/greatest-hits/">Patio11's Greatest Hits</a></em>
<p>Patrick McKenzie's blog on marketing and engineering.</p>
<p><a href="https://twitter.com/patio11">Twitter</a></p>
</section>
<section>
<em><a href="https://www.eugenewei.com/">Remains of the Day</a></em>
<p>Eugene Wei's blog on technology, product development, and more.</p>
<p><a href="https://twitter.com/eugenewei">Twitter</a></p>
</section>
<section>
<em><a href="https://www.hillelwayne.com/about/">Hillel Wayne</a></em>
<p>Blog on formal methods and programming topics.</p>
<p><a href="https://twitter.com/hillelogram">Twitter</a>, <a href="https://buttondown.com/hillelwayne/rss">RSS</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://buttondown.com/hillelwayne/rss"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://julian.digital/">julian.digital</a></em>
<p>Julian Lehr's blog on tech, economics, and more.</p>
<p><a href="https://twitter.com/lehrjulian">Twitter</a>, <a href="https://julian.digital/feed/">RSS</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://julian.digital/feed/"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://overreacted.io/">Overreacted</a></em>
<p>Dan Abramov's personal blog on React and web development.</p>
<p><a href="https://mobile.twitter.com/dan_abramov">Twitter</a>, <a href="https://overreacted.io/rss.xml">RSS</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://overreacted.io/rss.xml"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://www.gwern.net/Changelog">Gwern</a></em>
<p>Gwern Branwen's website on various topics including statistics, psychology, and more.</p>
<p><a href="https://twitter.com/gwern">Twitter</a>, <a href="https://gwern.substack.com/feed">RSS</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://gwern.substack.com/feed"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://thehtml.review/about">the html review</a></em>
<p>An annual journal of literature made to exist on the web.</p>
<p><a href="https://thehtml.review/rss.xml">RSS</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://thehtml.review/rss.xml"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://juw.ee/">juwee</a></em>
<p><a href="https://juw.ee/rss.xml">RSS</a>, <a href="https://digest.juw.ee/">digest</a>, <a href="https://digest.juw.ee/rss.xml">digest RSS</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://juw.ee/rss.xml"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://faultlore.com/blah/">Aria Desires</a></em>
<p><a href="https://faultlore.com/blah/rss.xml">RSS</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://faultlore.com/blah/rss.xml"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://ciechanow.ski/">Bartosz Ciechanowski</a></em>
<p><a href="https://ciechanow.ski/atom.xml">Atom</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://ciechanow.ski/atom.xml"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://justine.lol/">Justine Tunney</a></em>
<p><a href="https://justine.lol/rss.xml">RSS</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://justine.lol/rss.xml"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://borretti.me/">Fernando Borretti</a></em>
<p><a href="https://borretti.me/feed.xml">RSS</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://borretti.me/feed.xml"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://unplannedobsolescence.com/">Alexander Petros</a></em>
<p><a href="https://unplannedobsolescence.com/atom.xml">Atom</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://unplannedobsolescence.com/atom.xml"></rss-feed-list>
</details>
</section>
<section>
<em><a href="http://jakecoppinger.com/">Jake Coppinger</a></em>
<p><a href="https://jakecoppinger.com/feed/">RSS</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://jakecoppinger.com/feed/"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://spencer.place/">Spencer Chang</a></em>
<p><a href="https://spencer.place/rss.xml">RSS</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://spencer.place/rss.xml"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://leanrada.com/">Lean Rada</a></em>
<p><a href="https://leanrada.com/rss.xml">RSS</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://leanrada.com/rss.xml"></rss-feed-list>
</details>
</section>
<section>
<em><a href="https://classicprogrammerpaintings.com/">Classic Programmer Paintings</a></em>
<p>Software engineering as depicted by artists through history.</p>
<p><a href="https://twitter.com/progpaintings">Twitter</a></p>
</section>
<section>
<em><a href="https://connie.surf/">Connie Liu</a></em>
<p><a href="https://www.are.na/connie-liu-kg4ypfp7ry0/channels">Are.na</a></p>
</section>
<section>
<em><a href="https://www.hame.page/">Hamish Bultitude</a></em>
</section>
<section>
<em><a href="https://laurelschwulst.com/">Laurel Schwulst</a></em>
<p><a href="https://www.are.na/laurel-schwulst/channels">Are.na</a></p>
</section>
<section>
<em><a href="https://www.trudy.computer/">Trudy Painter</a></em>
<p><a href="https://www.are.na/trudy-painter/channels">Are.na</a></p>
</section>
<!-- <section>
<em><a href="https://geokash.com/">Katarina Lingat</a></em>
</section> -->
<!-- <section>
<em><a href="https://www.claireosbornli.click/">Claire Osborn-Li</a></em>
<p><a href="https://www.are.na/claire-li/channels">Are.na</a></p>
</section> -->
<!-- <section>
<em><a href="https://rory.green/">Rory Green</a></em>
<p><a href="https://www.are.na/rory-green/channels">Are.na</a></p>
</section> -->
<!-- <section>
<em><a href="http://www.amanda.zip/">Amanda Figueroa</a></em>
<p><a href="https://www.are.na/amanda-figueroa-tvrbptrr6x0/channels">Are.na</a></p>
</section> -->
<!-- <section>
<em><a href="https://www.blazesmith.xyz/">Blaze Smith</a></em>
<p><a href="https://www.are.na/blaze-smith/channels">Are.na</a></p>
</section> -->
<section>
<em><a href="https://everythingi.love/">Chia Amisola</a></em>
<p><a href="https://www.are.na/chia/channels">Are.na</a></p>
</section>
<section>
<em><a href="https://cristobal.space/">Cristóbal Sciutto</a></em>
<p><a href="https://www.are.na/cristobal-sciutto/channels">Are.na</a></p>
</section>
<!-- <section>
<em><a href="http://cloudlord.management/">Kristoffer Tjalve</a></em>
<p><a href="https://www.are.na/kristoffer-tjalve/channels">Are.na</a></p>
</section> -->
<!-- <section>
<em><a href="https://elliott.computer/">Elliott Cost</a></em>
<p><a href="https://www.are.na/elliott-cost/channels">Are.na</a></p>
</section> -->
<section>
<em><a href="https://websitesite.xyz/">Jisu L</a></em>
<p><a href="https://www.are.na/jisu-l/channels">Are.na</a></p>
</section>
<!-- <section>
<em><a href="https://100r.co/site/home.html">100R</a></em>
<p><a href="https://100r.co/links/rss.xml">RSS</a></p>
<details>
<summary>View feed</summary>
<rss-feed-list feed-url="https://100r.co/links/rss.xml"></rss-feed-list>
</details>
</section> -->
</main>
</body>
</html>