blob: 63a0365e41beeccbf784bd8480941ba45f747cdd (
plain) (
blame)
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
|
{ ... }:
let
tag = t: ''tags # \"${toString t}\"'';
youtube = title: id: tags: {
title = "[yt] ${title} youtube";
url = "https://www.youtube.com/feeds/videos.xml?channel_id=${id}";
tags = ["youtube"] ++ tags;
};
in {
queries = [
{ title = "#dev-blog"; query = tag "dev-blog"; }
{ title = "#dev"; query = tag "dev"; }
{ title = "#podcast"; query = tag "podcast"; }
{ title = "#opensource"; query = tag "opensource"; }
{ title = "#funny"; query = tag "funny"; }
{ title = "#youtube"; query = tag "youtube"; }
{ title = "#news"; query = tag "news"; }
{ title = "#sci"; query = tag "sci"; }
];
visible = [
{ url = "https://mshibanami.github.io/GitHubTrendingRSS/weekly/all.xml"; tags = ["latest"]; }
{ url = "https://dotfyle.com/this-week-in-neovim/rss.xml"; tags = ["opensource" "latest"]; }
{ url = "https://www.reddit.com/r/neovim.rss"; tags = ["reddit"]; title = "r/neovim"; }
];
hidden = [
{ url = "https://www.nasa.gov/feeds/iotd-feed"; tags = ["sci"]; }
{ url = "https://www.nasa.gov/news-release/feed/"; tags = ["sci"]; }
{ url = "https://www.nature.com/nature.rss"; tags = ["sci"]; }
{ url = "https://what-if.xkcd.com/feed.atom"; tags = ["sci"]; }
{ url = "https://feeds.transistor.fm/tomorrow"; tags = ["podcast"]; }
{ url = "https://feed.syntax.fm/"; tags = ["podcast"]; }
{ url = "https://overreacted.io/rss.xml"; tags = ["dev-blog"]; }
{ url = "https://tkdodo.eu/blog/rss.xml"; tags = ["dev-blog"]; }
{ url = "https://kentcdodds.com/blog/rss.xml"; tags = ["dev-blog"]; }
{ url = "https://world.hey.com/dhh/feed.atom"; tags = ["dev-blog"]; }
{ url = "https://developer.chrome.com/blog/feed.xml"; tags = ["dev-blog"]; }
{ url = "https://programmingisterrible.com/rss"; tags = ["dev-blog"]; }
{ url = "https://vercel.com/atom"; tags = ["dev-blog"]; }
{ url = "https://reacttraining.com/rss.xml"; tags = ["dev-blog"]; }
{ url = "https://www.developerway.com/rss.xml"; tags = ["dev-blog"]; }
{ url = "https://cprss.s3.amazonaws.com/javascriptweekly.com.xml"; tags = ["dev"]; }
{ url = "https://cprss.s3.amazonaws.com/react.statuscode.com.xml"; tags = ["dev"]; }
{ url = "https://www.totaltypescript.com/rss.xml"; tags = ["dev"]; }
{ url = "https://dev.to/feed/tag/haskell"; tags = ["dev"]; title = "Haskell - dev.to"; }
{ url = "https://devblogs.microsoft.com/typescript/feed/"; tags = ["news"]; }
{ url = "https://dev.to/feed/tag/typescript"; tags = ["news"]; title = "TS - dev.to"; }
# { url = "https://hnrss.org/frontpage"; tags = ["news"]; }
# { url = "https://hackernoon.com/feed"; tags = ["news"]; }
{ url = "https://nitter.privacydev.net/vim_tricks/rss"; tags = ["twitter" "opensource"]; }
{ url = "https://nixos.org/blog/announcements-rss.xml"; tags = ["opensource" "news"]; }
{ url = "https://www.cyberciti.com/feed/"; tags = ["opensource" "news"]; }
{ url = "https://itsfoss.com/rss/"; tags = ["opensource" "news"]; }
{ url = "https://www.reddit.com/r/opensource.rss"; tags = ["reddit" "opensource"]; title = "r/opensource"; }
{ url = "https://xkcd.com/rss.xml"; tags = ["funny"]; }
{ url = "http://phdcomics.com/gradfeed.php"; tags = ["funny"]; }
# Youtube channels
(youtube "IamMoBo" "UCJswRv22oiUgmT1FuFeUekw" ["funny"])
(youtube "NaturalHabitatShorts" "UCSb_Sui6FBxVS4_ROsrU_Iw" ["funny"])
(youtube "InternetHistorian" "UCR1D15p_vdP3HkrH8wgjQRw" ["funny"])
(youtube "Incognito Mode" "UC8Q7XEy86Q7T-3kNpNjYgwA" ["funny"])
(youtube "Fireship" "UCsBjURrPoezykLs9EqgamOA" ["dev"])
(youtube "No boilerplate" "UCUMwY9iS8oMyWDYIe6_RmoA" ["dev"])
(youtube "TypeCraft" "UCo71RUe6DX4w-Vd47rFLXPg" ["dev"])
(youtube "exurb1a" "UCimiUgDLbi6P17BdaCZpVbg" [])
(youtube "Casually Explained" "UCr3cBLTYmIK9kY0F_OdFWFQ" ["funny"])
(youtube "zefrank1" "UCVpankR4HtoAVtYnFDUieYA" ["funny"])
];
}
|