614
Why are people hyped about RSS regaining relevance?
(lemmy.world)
This is a most excellent place for technology news and articles.
Because then they can avoid social media again by building their own catalog of interest.
For me, the value of RSS is bypassing the fucking algorithm.
Just give me the raw feed from the websites I like. No suggestions, no "someone else liked this." Just the raw firehose of content that I asked for.
This is the reason why for me, I actually took it one step further and rebuilt a front end news site with Django and shared the link out with friends who are interested in the same topics, added a discussion feature. Essentially, I have a python script that runs and pulls RSS feed data. If the whole article isn’t included then it uses Asyncio, aiohttp, and Beautifulsoup to pull in the article. Dump all that to a Postgres instance then have Django run on top of it. It’s like deconstructing news to reconstruct it
That sounds awesome! Any chance you'd be willing to share your code?