this post was submitted on 23 Jun 2023
2472 points (95.9% liked)

Lemmy

2172 readers
81 users here now

Everything about Lemmy; bugs, gripes, praises, and advocacy.

For discussion about the lemmy.ml instance, go to [email protected].

founded 4 years ago
MODERATORS
 

Please. Captcha by default. Email domain filters. Auto-block federation from servers that don't respect. By default. Urgent.

meme not so funny

And yes, to refute some comments, this publication is being upvoted by bots. A single computer was needed, not "thousands of dollars" spent.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 1 year ago (1 children)

Maybe I'll work on this. I'm trying to get more involved in lemmy-adjacent dev work, so this might be a fun project.

[–] [email protected] 0 points 1 year ago (1 children)

Well, I dug around and built a pretty simple webassembly GUI for lemmy just now-

It would appear, the API is actually missing easy ways to just... query users, and actions. However, skipping past the lemmy api and going directly to the database, is easy enough.

And, from there, its pretty easy to run each user's post history through say, a piece of ML, which detects the potential for spam, and reports on the highest risk users.

[–] [email protected] 1 points 1 year ago (1 children)

I wonder how hard that would be to throw into a separate service? We could probably set up a replica of the main db to run the ML algo against and ship it as an optional add-on service.

Admins could then set it to update the model on some schedule and to flag likely spammers/scammers.

Sounds feasible.

[–] [email protected] 1 points 1 year ago

Querying users, is actually extremely easy.

Query users, posts, and then performing sentiment analysis, is also extremely easy.

(From the database- that is)

The API is a bit limited.

I am messing around with the database right now.... and.. well, it maintains a LOT of data.