cm0002@lemmy.world to Fediverse@lemmy.worldEnglish · 2 days agoThere's a clear up tick on daily users growing and we've crossed the 50k line as of yesterday! LETSSS GOOO!lemmy.worldimagemessage-square646fedilinkarrow-up12.41Karrow-down117
arrow-up12.4Karrow-down1imageThere's a clear up tick on daily users growing and we've crossed the 50k line as of yesterday! LETSSS GOOO!lemmy.worldcm0002@lemmy.world to Fediverse@lemmy.worldEnglish · 2 days agomessage-square646fedilink
minus-squareHubi@feddit.orglinkfedilinkEnglisharrow-up22·2 days agoYou 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(); }
minus-squareUltraGiGaGigantic@lemmy.mllinkfedilinkEnglisharrow-up7·edit-21 day agoWhy should the user have to fix reddit to make it functional?
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(); }
Why should the user have to fix reddit to make it functional?