this post was submitted on 09 Aug 2023
70 points (98.6% liked)

Ask Lemmy

26933 readers
916 users here now

A Fediverse community for open-ended, thought provoking questions

Please don't post about US Politics. If you need to do this, try !politicaldiscussion@lemmy.world


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 1 year ago
MODERATORS
 

I'm a software developer, and I'm currently noodling around with the idea of a small suite of software to help me moderate a couple communities. Right now, the features I'm thinking of are:

  • Lemmy bot integration - the suite would require a bot account.
  • Some kind of content moderation (detecting things like spam, bigotry, etc.) to flag for me to review. Similar to the mod queue on that other site.
  • Automatic removal of certain kinds of content. I figure this would be configurable, like you could choose whether your community is for text posts, for links, for videos, for pics, or some combination of everything.
  • Domain blacklists and whitelists.
  • Moderation record keeping - in other words, a database to keep track of bans, warnings, reports, etc.
  • Canned automatic messages, which would be useful to send when banning, unbanning, responding to certain types of queries, and so on. So if you use the software to ban someone, they automatically receive a notification about what they were banned for, and for how long.
  • Scheduled automatic posts, which would be configured with *.md files for content. Good for things like monthly meta threads.
  • Controls for the bot via JSON objects in private messages, which would direct it to follow commands.
  • Some kind of configurable user commands for the bot. (Haven't really figured out what this would look like yet.)
  • A simple web interface for all of this.

That's what I'm considering so far, but I'd love to get more ideas from the broader Lemmy community, and will post it on Github if it comes together.

The technology stack I'm considering is:

  • Node/Typescript
  • The lemmy-bot library
  • Sequelize for the database
  • Nest.js for the web backend
  • [TBD] for the web frontend (I hate React, so not that. Probably either Vue or Angular)
  • Docker for containerization

So what features would other Lemmy mods like to see in a Lemmy moderation suite like this?

Edit: OK, I've had a chance to take a look at the code for the existing Lemmy "automoderator" bot that's in progress, and I think I'm still leaning towards working on one of my own, partly because it looks like there's a real desire for Lemmy bots that use Node. I think there's room for two or more in the fediverse. And hopefully, we can all learn from each other. I know I'm bookmarking the Python bot and watching to see how it improves.

Anyway, I'd like to thank everyone for the suggestions! I'm hoping to get started on it this weekend. We'll see how it goes.

you are viewing a single comment's thread
view the rest of the comments
[–] SnowdenHeroOfOurTime@unilem.org 1 points 1 year ago (1 children)

Thanks for the reply. Yeah, perhaps I would feel differently about Angular now. The thing I didn't like so much was the ng- attributes for everything. Maybe that isn't even a thing anymore.

And yeah, I agree about having a discussion here -- I attribute this largely to a better community on Lemmy. On Reddit, it seemed like so many people were super rude and I think I got a bit that way myself. Here, I find myself being more charitable despite disagreements that can happen.

[–] kescusay@lemmy.world 2 points 1 year ago

There are a few ng attributes still, but if you're used to seeing ng- - as in, with the hyphen - then that's the old version, AngularJS, which is very different. Today, the ng attributes are mostly for interactive stuff, like iterating over an array or allowing a button to trigger a method on an Angular class. It's pretty similar in concept, if not execution, to the way you call JavaScript from inside JSX elements.

I guess one way to look at it is that in order to glue together markup and code, you either have to have some markup in code (the JSX way) or some code in markup (the Angular way). It's mostly a matter of taste, in my opinion.

And yeah, I agree about having a discussion here – I attribute this largely to a better community on Lemmy. On Reddit, it seemed like so many people were super rude and I think I got a bit that way myself. Here, I find myself being more charitable despite disagreements that can happen.

YES, absolutely. Couldn't have said it better. I think Reddit was already becoming toxic before it imploded, and I'm not sure why. Heck, you and I are both refugees from it, and here we are, having an extremely friendly conversation without going after each other despite minor points of disagreement.

Feels really great, honestly. It's a breath of fresh air.