You Should Know
YSK - for all the things that can make your life easier!
The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:
Rules (interactive)
Rule 1- All posts must begin with YSK.
All posts must begin with YSK. If you're a Mastodon user, then include YSK after @youshouldknow. This is a community to share tips and tricks that will help you improve your life.
Rule 2- Your post body text must include the reason "Why" YSK:
**In your post's text body, you must include the reason "Why" YSK: It’s helpful for readability, and informs readers about the importance of the content. **
Rule 3- Do not seek mental, medical and professional help here.
Do not seek mental, medical and professional help here. Breaking this rule will not get you or your post removed, but it will put you at risk, and possibly in danger.
Rule 4- No self promotion or upvote-farming of any kind.
That's it.
Rule 5- No baiting or sealioning or promoting an agenda.
Posts and comments which, instead of being of an innocuous nature, are specifically intended (based on reports and in the opinion of our crack moderation team) to bait users into ideological wars on charged political topics will be removed and the authors warned - or banned - depending on severity.
Rule 6- Regarding non-YSK posts.
Provided it is about the community itself, you may post non-YSK posts using the [META] tag on your post title.
Rule 7- You can't harass or disturb other members.
If you harass or discriminate against any individual member, you will be removed.
If you are a member, sympathizer or a resemblant of a movement that is known to largely hate, mock, discriminate against, and/or want to take lives of a group of people and you were provably vocal about your hate, then you will be banned on sight.
For further explanation, clarification and feedback about this rule, you may follow this link.
Rule 8- All comments should try to stay relevant to their parent content.
Rule 9- Reposts from other platforms are not allowed.
Let everyone have their own content.
Rule 10- The majority of bots aren't allowed to participate here.
Unless included in our Whitelist for Bots, your bot will not be allowed to participate in this community. To have your bot whitelisted, please contact the moderators for a short review.
Rule 11- Posts must actually be true: Disiniformation, trolling, and being misleading will not be tolerated. Repeated or egregious attempts will earn you a ban. This also applies to filing reports: If you continually file false reports YOU WILL BE BANNED! We can see who reports what, and shenanigans will not be tolerated. We are not here to ban people who said something you don't like.
If you file a report, include what specific rule is being violated and how.
Partnered Communities:
You can view our partnered communities list by following this link. To partner with our community and be included, you are free to message the moderators or comment on a pinned post.
Community Moderation
For inquiry on becoming a moderator of this community, you may comment on the pinned post of the time, or simply shoot a message to the current moderators.
Credits
Our icon(masterpiece) was made by @clen15!
view the rest of the comments
Can Lemmy ban outgoing link URLs? Given the spread of slop websites, that seems like useful functionality.. Could even combine it with an AI slop URL blacklist...
There were various Reddit automod bots that went after these, but then you had people trying to evade them by using one of the zillions of link shortener sites out there, so then you also have to ban link shorteners or try to resolve all the links (which may be a good idea as well, but saying that it's a more-complicated problem than initially meets the eye).
Also, I was banned in a few communities by an automod bot on the Threadiverse, and given that it happened when I posted some comment linking to a number of sites, I assume that one of the URLs must have tripped some automod list, so I'm a little irritable about bots running permabans on blacklisted sites, as users can inadvertently link to them.
I'm of a mind that link shorteners should be banned everywhere. You should never click a link unless you know exactly where it's going. Plus, some of them have interstitial ads and/or get deleted after a period of time, so even in the best case scenarios, they're just spraying out ads and link rot when you get down to it.
Not to mention, they're almost always used on platforms where you can just click on the link regardless of how long and/or unwieldy it is.
The only use case for bit [dot] ly and their ilk are if you need to publish a long link in print medium (such as a newspaper public notice or something) where a full link to a specific page would be unreasonable to expect people to type into a browser by hand.
Edit: Apparently it can do URLs and not just domains. See @flamingos@feddit.uk 's reply below.
~~URLS, no, but it can disallow specific domains. So it could work against specific spam domains but not against a bunch of accounts spamming, say, a Github repo, unless you want to block links to all of Github which isn't ideal.~~
~~There's a list of disallowed domains that can be configured in the admin area. Until relatively recently, it would only prevent users of that instance from posting to them, but somewhat recently it now prevents inbound federation of anything linking to those. If something links to a blocked URL (post, comment, user with that in their bio, etc), Lemmy will reject it.~~
I don't know why more admins don't look at the spam that gets modded and add the domain to their URL block list other than it being tedious work lol.
It does work on URLs. The https part gets stipped out because of how the regex is built internally, but you can absolutely block a Github repo. I have a Discord invite link in the feddit.uk one.
It always worked on federated content? It was added in response to a Mastodon spam wave (source: I added it).
Oh, nice. For some reason I assumed it was only domains.
I know it has for a good while but I forget when it was applied to inbound federation. I think it was that Mastodon/Misskey spam wave I was thinking of but don't recall which version was running at the time and how I wished it would stop content to those domains from federating in. Nice contribution, BTW.
Thanks! I have also floated the idea of a regex blocklist, but Nutomic shot that down because 'it can be done with a plugin'. Can't wait until 1.0 so Lemmy can have feature parity with a 2006 forum.
I think that a heavyweight automod feature that works something like SpamAssassin, where one builds a training corpus of known spam and known ham, and then one writes a bunch of rules (e.g. "domain is less than X days old", "account has less than N votes", etc) and then runs it on the training corpus to auto-generate score weights for the rules, and then runs the rules on each post to provide an estimated "spam probability score" on given posts would probably scale better.
Doesn't need to be built into Lemmy or Mbin or PieFed, and running as an automod bot, it'd be able to run on all of those platforms, share effort among them.
I don't disagree, and the plugin system is cool as it'll enable people to build things like that. I think SJW even has something like that already. But I can't begin to tell you how much work a simple text filter would have saved me as an admin.
Seems like scripting that wouldn't be a super heavy lift.