-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogs.ts
More file actions
29 lines (28 loc) · 992 Bytes
/
blogs.ts
File metadata and controls
29 lines (28 loc) · 992 Bytes
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
const BLOGS = [
'https://world.hey.com/dhh/feed.atom',
'https://martinfowler.com/feed.atom',
'https://simonwillison.net/atom/entries',
'https://blog.codinghorror.com/rss',
'https://htmx.org/essays/atom.xml',
'https://www.wheresyoured.at/rss',
'https://www.afterbabel.com/feed',
'https://karpathy.bearblog.dev/feed/',
'https://dev.to/feed/ryansolid',
'https://2ality.com/feeds/posts.atom',
'https://dbushell.com/rss.xml',
'https://crawshaw.io/atom.xml',
'https://deno.com/feed',
'https://nodejs.org/en/feed/blog.xml',
'https://blog.bytebytego.com/feed',
'https://addyo.substack.com/feed',
'https://newsletter.pragmaticengineer.com/feed',
'https://mitchellh.com/feed.xml',
'https://pluralistic.net/feed/',
'https://jakearchibald.com/posts.rss',
'https://antfu.me/feed.xml',
'https://www.joshwcomeau.com/rss.xml',
'https://overreacted.io/rss.xml',
'https://xeiaso.net/blog.rss',
'https://blog.platformatic.dev/rss.xml'
];
export default BLOGS;