Sfeed: Peak Minimal RSS Feed Reader

preview_player
Показать описание
Newsboat is my personal favourite RSS feed reader but it's not the most minimal option out there but there is one program that stands out in the minimal space and that is sfeed which is barely even an RSS feed reader it's more of an RSS feed parser.

==========Support The Channel==========

==========Resources==========

=========Video Platforms==========

==========Social Media==========

==========Time Stamps==========
0:00 Introduction
1:03 Parsing Feeds
2:36 Example Interface
4:43 Curses Interface
5:26 Adding Feeds
7:01 Importing Feeds
8:07 Overriding Config
8:40 Sfeed Web
10:02 Outro

==========My Repos==========

==========Credits==========
🎨 Channel Art:
All my art has was created by Supercozman

🎵 Ending music

DISCLOSURE: Wherever possible I use referral links, which means if you click one of the links in this video or description and make a purchase I may receive a small commission or other compensation.
Рекомендации по теме
Комментарии
Автор

Pretty soon people are just going to be reading the raw XML.

scalawagmax
Автор

Sfeed is sick I really like it for doing any complex filtering. You can even get it to pull from non rss feeds since it really just uses a shellscript as a config file.

GavinFreeborn
Автор

Great timing, I just started using sfeed. Was looking at newsboat but the list of Rust dependencies is massive.

megadog_
Автор

I wanted to write a RSS reader which understands my interests and which I probably like so I will use it to parse feeds and feed it to my fancy machine learning algorithm and will use my fancy latest bloat library to show me content to keep my dopamine receptors active reading the RSS feeds.

mathematicalninja
Автор

I sometimes find sfeed_update can get stuck for a really long time (possibly due to me pulling feeds from slow servers), so I use:
timeout 10 sfeed_update
to stop it after enough time has passed that it _should_ be done.

I wrote an awk script for putting full feed content into an HTML file:
#!/usr/bin/awk
BEGIN {
print "<!DOCTYPE HTML>\n<html><head>\n"
print "<title>Wide Feed</title>\n"
# print "<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\" />\n"
print "</head><body class=\"noframe\"><div id=\"items\"><pre>\n"

}

{
formatted = "<h3><a id=\"" $6 "\" href=\"" $3 "\">" $2 "</a></h3>\n" $4 "\n"
gsub("\\\\n", "\n", formatted);
gsub("\\\\t", "\t", formatted);
print formatted
}

END {
print"</pre></div></body>\n"
}

...

I refer the reader to section 9.1.3.1 of the gawk Texinfo manual (info gawk) regarding gsub()...

Argletrough
Автор

Can I ask you something ? Why there are these spam comments of forn sites at certain timings? I got those spams on my videos too

LordOfWizardurl
Автор

Hello. But is that possible somehow setup news by tags like in newsboat?

Atheist-kh
Автор

How did you get the transparent cursorline and cursorcolumn? I checked your configs and can't find anything. When I search for it on the web there also people say you can't have them transparent but apparently you can. the init.vim/vimrc doesn't accept alpha values..

patriarch
Автор

I don't know, QuiteRSS is perfect

ackz
Автор

If you make those ads more enthusiastic, we won't be able to tell you apart from LTT with that level of transition smoothness.

vim
Автор

i did mess around with this. I'm trying to think about how to create a good parser for sfeed_curses. Can pandoc convert html into a manpage?

gavinvales
Автор

>not sending rss over pigeon
are you even tryin zoomers?

Bagginsess