this post was submitted on 11 Mar 2025
50 points (96.3% liked)

Fediverse

42608 readers
100 users here now

A community to talk about the Fediverse and all it's related services using ActivityPub (Mastodon, Lemmy, Mbin, etc).

If you wanted to get help with moderating your own community then head over to !moderators@lemmy.world!

Rules

Learn more at these websites: Join The Fediverse Wiki, Fediverse.info, Wikipedia Page, The Federation Info (Stats), FediDB (Stats), Sub Rehab (Reddit Migration)

founded 3 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] NOT_RICK_SANCHEZ@lemmy.world 3 points 1 year ago (1 children)

People getting sick and tide of Reddit. TBH I’m still salty over them killing 3rd party apps and I’m so glad they did because that drew the line for me, also fuck spez.

[–] frightful_hobgoblin@lemmy.ml 1 points 1 year ago (1 children)

They've basically banned anonymous accounts. Their whole thing was anonymity.

[–] jaybone@lemmy.world 0 points 1 year ago (1 children)

They seem to be blocking access from certain IPs and VPNs (if not logged in?) Which is funny because some of these VPNs are not really hiding anything. Like my work VPN which I would think makes it pretty obvious which company I work for. Annoying when search results link to reddit content.

[–] Hubi@feddit.org 1 points 1 year ago (1 children)

You can use this script with a browser addon like Tampermonkey to get around the sign-in requirement:

// ==UserScript==
// @name         reddit - unblock (create cookie and reload)
// @namespace    Violentmonkey Scripts
// @match        *://*.reddit.com/*
// @grant        none
// @version      2024-01-08
// @noframes
// @license      MIT License
// @description  for "Blocked" "whoa there, pardner!" cowboy bs
// ==/UserScript==
/* thanks: https://www.reddit.com/r/mullvadvpn/comments/18jbxb2 */
if (document.title === "Blocked") {
  document.cookie="reddit_session=;Domain=.reddit.com;Path=/;Expires=;Secure=true;SameSite=None";
  window.location.reload();
}
[–] UltraGiGaGigantic@lemmy.ml 1 points 1 year ago* (last edited 1 year ago)

Why should the user have to fix reddit to make it functional?