LemmyNSFW has a fork of the Lemmy software, this is something we’d have to maintain and try to make sure it didn’t break with each update. It’d be more effort than such a project would be worth. We just don’t have the resources for that.
I’d honestly be surprised if LemmyNSFW kept maintaining their fork now that the old admin retired.
Is there any info about why the old admin retired?
The new one seems to have inhaled some gasoline…
He said he allowed loli and a chunk of users shat on him for it. So he just wanted to wash his hands of it.
Thats it?!?
Man, lemmy nsfw will be flooded by onlyfans bots within the next month… The new admin there wants to be PC and Brand-Safe so badly…
Yeah, idk. Seems like he was not able to handle being berated for it. Personally, I would’ve just told them off and that if they don’t like it, beehaw is that way ➡ 🐝 .
This is something that one puts their own time money and effort into, if they’re not contributing towards the server heavily whether that be financially or sysadmin/dev wise, they do not owe you shit and have every right to tell you to go fuck yourselves.
100% agree.
But most of these idiots don’t understand that they can just block communitys they don’t like Themselves…
Brainded consumers. Just the “average redditor” imported to lemmy, what a shame.
Yep, they became the same, if not worse than what they sought to destroy.
Hey… Ist onlyfans advertising allowed here?
I btw have already seen several OF bots on LemmyNSFW…
That being said, I agree it will be an onlyfans safe haven as well as other vanilla “safe” shit.
>fork of Lemmy software
Any chance you can fix this? (Pete wrote this a couple of days ago)
>1. I’m looking into lemmy interaction. I can follow lemmy users, see their public posts, but they don’t show up in my timeline. They only show up if I go to their profile. Why?
Short version: it looks like Lemmy’s fucking up the follower address.
The longer version: AP uses a series of URLs to say who a post is for, and those go into the “to” and “cc” fields. When you tag someone, their actor URL is in the “to” field. There are two special URLs that don’t refer to individual users: “public” and “follower”. The public URL is a constant, it’s https://www.w3.org/ns/activitystreams#Public . If it’s in “to”, it’s public, and if it’s in “cc”, it’s unlisted, so you can see it in either case. The distinction between a public/unlisted post and a followers-only/DM post is that the public URL is omitted from those. The other special URL is the followers URL, which is user-specific. That URL is assigned by the server, and is supposed to be in your metadata. So if you do
curl -H 'Accept: application/json' [https://freespeechextremist.com/users/laurel](https://freespeechextremist.com/users/laurel) | jq -r .followers
, that’ll spit outhttps://freespeechextremist.com/users/laurel/followers
. Your followers URL is included in all of your posts except DMs, so when you post, “https://freespeechextremist.com/users/laurel/followers” is in the “cc” field. Not only does Lemmy appear not to provide a followers URL, they also seem to do some wacky shit with the to/cc when delivering posts.So, pick a Lemmy user at random (I just did
SELECT \* FROM "users" WHERE (split\_part("ap\_id", '/', 3) = 'lemmy.ml')
) and look at the AP URL, it’s https://lemmy.ml/u/jokeyrhyme . Fetch the user and look for the followers address,curl -H 'Accept: application/json' [https://lemmy.ml/u/jokeyrhyme](https://lemmy.ml/u/jokeyrhyme) | jq .
. So there’s no way to pick out the followers address. Then you look at a random post,curl -H 'Accept: application/json' https://lemmy.ml/post/438428
and (although it’s nice Lemmy pretty-prints the JSON) “cc” is empty and “to” just contains["https://lemmy.ml/c/opensource","https://www.w3.org/ns/activitystreams#Public"]
, soBoards, however, *do* have followers URLs:
curl -H 'Accept: application/json' [https://lemmy.ml/c/opensource](https://lemmy.ml/c/opensource) | jq -r .followers
giveshttps://lemmy.ml/c/opensource/followers
. But they fuck that up, too! You can see that the post from before listshttps://lemmy.ml/c/opensource
in the “to” field, nothttps://lemmy.ml/c/opensource/followers
.This should be easy to fix, they just have to add a followers URL to users and stick that on their posts, and then add the advertised followers URL to boards’ posts. So instead of `“to”: ["https://lemmy.ml/c/opensource","https://www.w3.org
Safe to say that we are definitely not using their fork after observing what’s been transpiring over the past several days.
I haven’t looked at the code, but I bet the fix would be easy and with no conflicts with future updates, so you’d be able to just git merge.
there is an on-going contribution for this feature here: https://github.com/LemmyNet/lemmy-ui/issues/1213#issuecomment-1609435697
Currently using liftoff on Android and it lets you disable blur regardless of instance
yeah I use the greasemonkey extension but if it’s possible to do it without an add-on I think that would be a lot better.