this post was submitted on 30 Oct 2022
1 points (100.0% liked)
World News
32315 readers
1094 users here now
News from around the world!
Rules:
-
Please only post links to actual news sources, no tabloid sites, etc
-
No NSFW content
-
No hate speech, bigotry, propaganda, etc
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
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.
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