minus-squareHubi@feddit.orgtoFediverse@lemmy.world•There's a clear up tick on daily users growing and we've crossed the 50k line as of yesterday! LETSSS GOOO!linkfedilinkEnglisharrow-up6·3 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(); } linkfedilink
Hubi@feddit.org to Ukraine@sopuli.xyzEnglish · 3 days agoRusso-Ukrainian War, day 1110: Ukrainian forces break through in Toretskplus-squareeuromaidanpress.comexternal-linkmessage-square0fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1external-linkRusso-Ukrainian War, day 1110: Ukrainian forces break through in Toretskplus-squareeuromaidanpress.comHubi@feddit.org to Ukraine@sopuli.xyzEnglish · 3 days agomessage-square0fedilink
Hubi@feddit.org to Ukraine@sopuli.xyzEnglish · 4 days agoRussian Forces Depleted and Stalling on Eastern Front, Ukraine Saysplus-squarewww.nytimes.comexternal-linkmessage-square0fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1external-linkRussian Forces Depleted and Stalling on Eastern Front, Ukraine Saysplus-squarewww.nytimes.comHubi@feddit.org to Ukraine@sopuli.xyzEnglish · 4 days agomessage-square0fedilink
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(); }