this post was submitted on 30 Oct 2022
1 points (100.0% liked)

World News

32142 readers
1155 users here now

News from around the world!

Rules:

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] blkpws@lemmy.ml 1 points 2 years ago* (last edited 2 years ago) (1 children)

Yes, the problem is that those people also post propaganda on technology which lemmy.ml also has nice stuff too.

What I did is, using RSS Guard https://github.com/martinrotter/rssguard I subscribed to all topics I am interested. Then I add a filter like this.

var blacklist = [
 '/u/yogthos'
];
 function filterMessage() {
 if (blacklist.some(i => msg.author.indexOf(i) != -1)) { return MessageObject.Ignore;
 } else { 
 return MessageObject.Accept;
 } 
}

So you can block users posting too much propaganda, and you are not going to waste your time on this kind of posts.

Good thing about RSS is that you neither waste time checking new articles, you already get notified. I think this is more efficient.

[–] hfkldjbuq@beehaw.org 1 points 2 years ago* (last edited 2 years ago)

Thanks! I use RSS for work and project-related stuff. Guess I'll look into something for self hosting for general news so I can use it on phone as well