RSS: there's nothing better
81–90 of 295 posts
Re: RSS: there's nothing better
#82The problem with RSS is that I don't want to subscribe to blogs that have only one lucky post in a decade, I want a curated list of topics on a daily/weekly fashion and for that newsletters are the best. Unfortunately email is not the best platform for delivering content so I came up with an idea to offer a news reader that consumes newsletters you can subscribe/unsubscribe at any time. It's just like an email client…
I still derive significant value from Usenet.
People keep saying that IRC is dead (because Slack) or that Jabber is dead (because Slack) but I use both of those daily.
It's a big Internet, there's room for lots of stuff.
Re: RSS: there's nothing better
#83For the websites that actually provide whole articles via RSS, what's your next step ? How do you keep and organize those articles ? edit: I mean how users, not article authors, keep and organize full articles.
I made a markdown-based blog with the articles stored in a PgSQL database and, for now, two interfaces: the website, which I kept as lightweight as possible (no external content, no wasted space for ads etc) and a RSS feed, only experimental for now, which gives the latest articles without content (title, subtitle, dates and that's pretty much it), but I plan to give full article as a markdown article, but that'll need a bit of research (for images and such). Haven't made any way to change the query for latest articles but I'll add pagination the same way my list does it.
Re: RSS: there's nothing better
#84Re: RSS: there's nothing better
#85I really like the idea of RSS I just would replace it with JSON.
All major readers have already added support for it too
Re: RSS: there's nothing better
#86That's why I ended up using RSS client to swiftly filter the content I get then send the interesting titles to a read-it later service -Pocket specifically- that has a better reading experience -TTS anyone?- and solves the truncated RSS articles problem.
Re: RSS: there's nothing better
#87RSS is the best to follow up with the latest news or blogs you like, yet it has some weaknesses like -I know this is the content provider's fault- not serving the full articles. That's why I ended up using RSS client to swiftly filter the content I get then send the interesting titles to a read-it later service -Pocket specifically- that has a better reading experience -TTS anyone?- and solves the truncated RSS artic…
Re: RSS: there's nothing better
#88Some comments bring the question about the readers, and their exposure to publishers, who truncate their content in the RSS feeds.
I solved this by implementing my own reader, web based. It aggregates all RSS feeds from my subscriptions and retrieves the article. When the source only exposes limited data, the script retrieves the full article directly and shows this instead.
I have shared this tool with my friends, they love it. Unfortunately, I cannot widen the audience for legal reasons: the tool automatically scraps all ads and removes any "non-content-related" stuff. I also convinced some of them to share for membership access on some newspapers: a monthly subscription to the NYT shared by 5 people, with a guarantee of "clean, ad-free" content beats anything else.
Sharing these tools with a wider audience would expose me to legal actions, notwithstanding websites that have a JavaScript paywall...
In conclusion, my only recommendation is to spend a few hours learning scripting enough to be able to read from an XML url and parse it. Once you can do that, you have your own RSS reader.
Next challenge will be websites, that expose their content through AJAX requests only...good thing is that most of them have a fallback mechanism for mobile devices, which relies on much simpler logic. The trick is to understand how to convert the 'link' in the RSS feed to a 'mobile link'.
++
Re: RSS: there's nothing better
#89For the websites that actually provide whole articles via RSS, what's your next step ? How do you keep and organize those articles ? edit: I mean how users, not article authors, keep and organize full articles.
I don't really understand your question but if you were asking about how we actually store articles and provide such a feed, I can explain how I did it. I made a markdown-based blog with the articles stored in a PgSQL database and, for now, two interfaces: the website, which I kept as lightweight as possible (no external content, no wasted space for ads etc) and a RSS feed, only experimental for now, which gives the…
Re: RSS: there's nothing better
#90The problem with RSS is that I don't want to subscribe to blogs that have only one lucky post in a decade, I want a curated list of topics on a daily/weekly fashion and for that newsletters are the best. Unfortunately email is not the best platform for delivering content so I came up with an idea to offer a news reader that consumes newsletters you can subscribe/unsubscribe at any time. It's just like an email client…