Blaze

joined 2 months ago
[–] Blaze 1 points 2 days ago

No worries, thanks for answering

[–] Blaze 70 points 2 days ago (6 children)

Feel free to block communities with political content.

You can also use an app or alternative frontend to filter keywords. !newtolemmy@lemmy.ca has a post about that.

For communities, !newcommunities@lemmy.world can help

For home kit, the Apple communities are probably more active, and you should be able to post about it there too

[–] Blaze 1 points 2 days ago

BlueSky isn’t really comparable, since they have a user-user interaction model as compared to Reddit / Lemmy which have a community-based interaction model. In a sense every BS user is an admin for their own community.

We could say that every user can mod their own threads.

We could, but again, good faith users tend not to be browsing while logged out. They have little reason to do so, while bad faith users have every reason to.

The way Reddit does it at the moment still allows good faith users to identify such behaviours: it shows [unavailable] when someone who blocked you comments, so you know you just have to open that link in a private tab to see the content. I actually have that at the moment as some right wing user blocked me as I would usually call out their bullshit. Still allows me to see their comments and post them to a meta community to call out their right wing sub.

[–] Blaze 1 points 2 days ago* (last edited 2 days ago) (2 children)

The block mechanism as you suggest is extremely ripe for abuse at large scale, and relying on mods / admins to combat it will place an unnecessary extra load upon them, if it is even possible.

Interestingly enough, I feel like the current systems require mods/admins to keep an eye at all times, as harassment can happen at any time, and users can't really protect themselves.
There is a scenario which is exactly the opposite from the one you presented:

  • user gets harassed, blocks the harasser
  • the harasser can still comment on every comment and post of that user, requiring mod and admins to jump in to stop the abuse. With the Bluesky system, users themselves can prevent that.

We should try to keep in mind that the fediverse and lemmy will likely grow to larger scales.

BlueSky just passed 21 millions users.

Bots and brigading are not the issue here. Neither of them were a factor in the post I linked,

I had a look again at the post.

I first prepared the account by blocking all the moderators and 4 or 5 users who usually call out misinformation posts.

Would that be enough here? Of course, it depends on the topic of the thread (no link in the post, so I can't really see what they were talking about), but I'm pretty sure there would be more than 4 or 5 people who would call out about misinformation.

The very nature of the abuse system being described means that anybody who would report it on YPTB or similar comms can only do so once before themselves being blocked and unable to view future posts of that sort.

Can't we use here the same argument other people use about Lemmy being a public forum, and thus the posts being public for everyone except the blocked accounts?

[–] Blaze 1 points 3 days ago

!linux@linux.community,

Ah, a topic too sparsely discussed here

[–] Blaze 3 points 3 days ago (1 children)

Good luck with this!

[–] Blaze 2 points 3 days ago (4 children)

Do you really believe that someone could get their a misinformation post heavily upvoted here? The main differences with Reddit are

  • actual moderation (most of Reddit mods are inactive since the API shutdown)
  • public votes (via Mbin) which allows to identify bots and brigading
  • meta communities like !yepowertrippinbastards@lemmy.dbzer0.com which allow to call out toxic behavior in a meta way.

If someone would do something similar here, they would at the very least get called out on !fediverselore@lemmy.ca or !yepowertrippinbastards@lemmy.dbzer0.com , and mods and admins would get called out to act on those. Reddit does not have such mechanisms.

[–] Blaze 1 points 3 days ago (2 children)

By the way we are planning to implement multi-communities.

Hello,

Any (even very rough) idea on when you guys will be able to work on it? Three, six, nine months?

[–] Blaze 2 points 3 days ago

An average user is not going to want to continually move around to keep themselves sane & safe.

Indeed, I think I'll just recommend lemmy.cafe as the safe recommendation from now on

[–] Blaze 3 points 3 days ago (1 children)

Therefore I assume that it requires an admin approval to bundle these “Topics” together, and it definitely doesn’t strike me as something that an individual user could put together.

That's why I'm saying it's not personal multi communities, which is something people are definitely looking forward (most upvoted Lemmy GitHub issue)

I remember discussing personal multicommunities with @rimu@piefed.social a while ago, at the time it was not a priority for Piefed, maybe they'll revisit in the future.

[–] Blaze 4 points 3 days ago

In cases of harassment (what I view as the strongest counter argument) I think mods/admin need to take action by banning. Like if someone puts a comment on every post I make saying “JackbyDev is a doodoo head” (or something actually offensive lol) then that’s harassment. I’m having trouble thinking of any problematic behaviors that wouldn’t qualify as harassment that allowing someone to comment in reply to would actually prevent.

I mod several communities. We are lacking mods, and we can't have eyes on the communities 24/7. Allowing users to have this kind of blocking helps.

209
submitted 1 month ago* (last edited 1 month ago) by Blaze to c/reddit@lemmy.world
149
ActivityPods 2.0 is out! (activitypods.org)
143
They deserve it (i.imgflip.com)
submitted 1 month ago* (last edited 1 month ago) by Blaze to c/fedimemes@feddit.uk
 

For the context: https://feddit.org/post/2374543

TL;DR: Aussie.zone has been experiencing a 7-days delay with LW since quite a long time due to the way Lemmy manages federation, and the distance between LW and aussie.zone.

Lemmy.world is the only one having such delay, even Lemm.ee which is the second most active instance is up-to-date (same for Lemmy.ml with a lot of active communities)

Graphs:

The issue has been solved in 0.19.6 (https://github.com/LemmyNet/lemmy/pull/4623) which hasn't been released yet.

Explanation by @Nothing4You@programming.dev

lemmy’s current federation implementation works with a sending queue, so it stores a list of activities to be sent in its database. there is a worker running for each linked instance checking if an activity should be sent to that instance, and if it should, then send it. due to how this is currently implemented, this is always only sending a single activity at a time, waiting for this activity to be successfully sent (or rejected), then sending the next one.

an activity is any federation message when an instance informs another instance about something happening. this includes posts, comments, votes, reports, private messages, moderation actions, and a few others.

let’s assume an activity is generated on lemmy.world every second. now every second this worker will send this activity from helsinki to sydney and wait for the response, then wait for the next activity to be available. to simplify things, i’ll skip processing time in this example and just work with raw latency, based on the number you provided. now lemmy.world has to send an activity to sydney. this takes approximately 160ms. aussie.zone immediately responds, which takes 160ms for the response to get back to helsinki. in sum this means the entire process took 320ms. as long as only one activity is generated per second, this is easy to keep up with. still assuming there is no other time needed for any processing, this means about 3.125 activities can be transmitted from lemmy.world to aussie.zone on average.

the real activity generation rate on lemmy.world is quite a bit higher than 3.125 activities per second, and in reality there are also other things that take up some time during this process. over the last 7 days, lemmy.world had an average activity generation rate of about 5.45 activities per second. it is important to note here that not all activities generated on an instance will be sent to all other linked instance, so this isn’t a reliable number of how many activities are actually supposed to be sent to aussie.zone every second, rather an upper limit. for example, for content in a community, lemmy will only send these activities to other instances that have at least one subscriber on the remote instance. although only a fraction of the activities, private messages are another example of an activity that is only sent to a single linked instance.

to answer the original question: the week of delay is simply built up over time, as the amount of lag just keeps growing.

 

Hello everyone,

!showsandmovies@lemm.ee, the non-LW alternative to talk about TV shows, is quite successful (2.08K users / month)

It's still mostly me posting the content (by the way, thank you @realcaseyrollins@thelemmy.club, @reef@lemmy.ca and @BrikoX@lemmy.zip for posting too), so I'm creating this thread hoping that other people interested in the topic would come to post about their favorite shows there too!

For mods, we are currently two, so if you want to join feel free to comment on the relevant pinned thread. I created it 1 month ago and never had any comment, but who knows

5
submitted 1 month ago* (last edited 1 month ago) by Blaze to c/askhistorians@lemmy.world
 

Context: https://lemmy.world/post/20442786

Can I be a mod and get ride of KarmaBot since it seems like I am the only one posting? I also think I am not alone in the endeavor so we can get at the least a couple mods going on and make it more active

Ping @Don_Dickle@lemmy.world

Anyone else interested?

 

(active = at least one post last week)

110
submitted 1 month ago* (last edited 1 month ago) by Blaze to c/reddit@lemmy.world
view more: ‹ prev next ›