The first time icon of RSS I see is in the CD show. I even don’t know what exactly is it. It appeared in the product birthed in last 10 years in China mainland.
And then, when I have some spare time in 2020, I notice it again. I wonder whether it have some interesting story or not. And at that point, I use a simple and not well reader to subscribe RSS. And just feeling amazing, and feel sad as well, like (by the way, they’re sucks)
If you host a RSS link, you’ve well done. I would appreciate you 😘
Why
Build self host info flow ⇒ only focus on some fields.
How
Backup and share your subscription.
https://gist.github.com/bGZo/f16fbc8d22cb77ae8078f8ac09234e03
RSS workflow
- When rss failed, go to Inoreader - Take back control of your news feed. Subscribe, and find the old articles.
- When you seeing a good source, you shouldn’t subscribe immediately, you should save a read latter and done it as soon as possible. Because it will accumulate while you don’t care it. Yet it might be a instant source, so it will be spam in the future.
In deeper, I take rss more than a reading tool, but their origional purpose, notification.
- How to build a good flow of reading latter? When I meet a good blog.
- RSS + Raindrop + Export to Each Platform
- 依赖 Raindrop 的高亮导致无法在 RSS Reader 内阅读;
- 我想划线高亮, 我就必须跳转到原网站去阅读, 传统的 Rss Reader 全文抓取失去了意义
- 稍后读 Read Latter 无所谓, 因为本来就打算在后者阅读
- 参考同类竞品 Alternative tools
- 简悦 SimpRead - 如杂志般沉浸式阅读体验的扩展
- Readwise
- Pocket: Home
- Instapaper
- No more free 😭 I only could use raindrop.
- 依赖 Raindrop 的高亮导致无法在 RSS Reader 内阅读;
Trash Category
I devided the feed to 2 parts:
- Uninstant messages, which I should read it alone. (moonight would be better)
- I archived article without images using rsstt telegram bot.
- I browser social media and most blog on another channel.
- Instant messages, which would never take much time(See ((646a045c-74f6-49d4-bbce-78ec1484d73c)))
Find RSS
Some websites will include element whose type is application/atom+xml
or application/rss+xml
. They would include RSS link.
<link rel="alternate" type="application/atom+xml" title="${source.title}" href="${source.url}">
And following are some address they mostly used:
./feed
./rss.xml
./feed.xml
./atom.xml
./rss/index.xml
./index.xml
./rss
./rss/rss
./rss/rss.xml
<!-- Z-Blog via: https://bbs.zblogcn.com/thread-3527.html-->
./feed.asp?user=userID
./feed.asp?tags=TagID
<!-- Youtube -->
https://www.youtube.com/feeds/videos.xml?channel_id=<channel_id>
https://www.youtube.com/feeds/videos.xml?playlist_id=<playlist_id>
What
- Build yourself RSS reader
RSS standards
- XML like https://www.tiangal.com/feed
- Atom like https://gmgard.moe/rss
RFC 4287 - The Atom Syndication Format
opml
Group with Tags
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>Opml Template</title>
</head>
<body>
<outline title="News" text="News">
<outline type="rss" text="title" xmlUrl="url" />
</outline>
</body>
</opml>
Attributes
<?xml version="1.0" encoding="UTF-8"?>
<opml version="2.0">
<head>
<title>Opml Template</title>
</head>
<body>
<outline type="rss" text="title" xmlUrl="url" group="group/name" />
</body>
</opml>
What I used in past and recommend now
I prefer like the brave build-in RSS reader😭
- ✨ rss-to-telegram-bot
- ✨ Feedbro - Chrome Web Store (google.com)
- ✨ Inoreader to browser feed history.
- Others
- 期待 V2RSS by angelia
- yang991178/fluent-reader: Modern desktop RSS reader built with Electron, React, and Fluent UI (github.com)
- HenryQW/Awesome-TTRSS: [maintainer wanted] 🐋 Awesome TTRSS, a powerful Dockerised all-in-one RSS solution. (github.com)
- zhaoolee/garss: Github Actions采集RSS, 打造无广告内容优质的头版头条超赞宝藏页
- 己思
Half-text RSS sucks, this is over-design
Some website not support output full-text RSS, so we have to open in browser to read. Luckily, we could get full-text RSS through parse url, most rss reader support that. But even more, they change the output format of HTML, and they wouldn’t support full-text fetch. You will always see following page:
I know they want to get more actual views, to get more money ads brings. But it’s really likely say:
“Do you want me to tell this stuff?” “Suck my dick first, reader 😝”
They’re not solving anything, and having put the situation more complex!
via: Sukka’s Blog