Must resist
Must resist
I'm just meming, I'm not actually mad at reddit
Chrome has a way back machine extension
I've never actually used it though. Never had a reason till now
I finished watching Beau Is Afraid and immediately looked up the reddit reaction to make sure I wasn't nuts thinking it was awful.
I do that with lots of movies tbh, reddit had kinda taken over the imdb forums. Waiting to see if kbin has the same effect.
Beau is afraid fucking sucks btw
That sucks to hear. Joaquin Phoenix is great in practically everything and Ari Aster crushed it with Hereditary.
Maybe it’s a movie that works better on paper than celluloid.
The first third is cool and interesting. But jfc we don't need a three hour movie of pretentious jerking off of Ari Aster's mother issues.
Total misfire imo. It's like he wanted to ape charlie Kaufman's neurosis without putting in the work of writing a cogent screenplay.
/end rant
I know it's a meme, but the way I see it is, giving Reddit a click or two won't really move the needle much.
Really it's about the long-term. If you're on the Fediverse creating content and not on Reddit, eventually those search results will stop pointing at Reddit. That's the real win I think.
but does the link work? it might not. might be private, might have got deleted. i know mine did.
I've seen posts saying is the right thing to just modify your posts so people can still find the content. i suspect those ideas are well liked by Reddit admins. f that. nuke it from orbit. it's the only way.
In case it hasn't been mentioned, you can exclude reddit from your searches with the flag "-reddit.com". So, searching for...
memes -reddit.com
will show you all results without results from reddit. :)
Whenever that happens, I take a look at the result and bring it here.
I make a post at the relevant community. If it doesn't exist, I make it. I encourage you to do the same. :)
Or this if you use F-droid.
It's based on Firefox and allows you to install addons without using the Nightly version
// ==UserScript==
// @name archive.org link
// @include *://*.google*/search*
// @include *://*
// @exclude *://*.archive.org*
// @exclude *://archive.org*
// @grant none
// @version 1.0
// @author memchr
// @description 6/15/2023, 6:57:32 AM
// ==/UserScript==
function get_archive_href(href) {
return "https://web.archive.org/web/" + href.replace(/^https?:\/\/www\.reddit\.com/, "https://old.reddit.com")
}
if (window.location.hostname.match(/^(\w*\.)?google.*$/)) { // google
const results = document.querySelectorAll('div.yuRUbf > a');
results.forEach(e => {
let href = e.getAttribute('href');
href = get_archive_href(href);
let archive_link = document.createElement('a');
archive_link.href = href;
archive_link.textContent = "archive";
archive_link.style.marginLeft = "10px";
e.insertAdjacentElement("afterend", archive_link);
})
} else if (!window.location.hostname.match(/(localhost$|^(127|192|10)\.)/)) {
const href = get_archive_href(location.href);
document.addEventListener('keydown', function(event) {
if (event.ctrlKey && event.altKey && event.key === 'a') {
window.location.href = href;
}
});
}
press shift+ctrl+A or click on archive if you use google.
And this means we're not giving them clicks or anything? It's basically as if we've never visited in the first place?
I get that "no ads no tracking", but does the proxy give them a view? I don't want them to get any traffic from me, proxy or otherwise.
Thanks for sharing