this post was submitted on 15 Jun 2023
459 points (98.7% liked)

Lemmy.World Announcements

29057 readers
6 users here now

This Community is intended for posts about the Lemmy.world server by the admins.

Follow us for server news 🐘

Outages πŸ”₯

https://status.lemmy.world/

For support with issues at Lemmy.world, go to the Lemmy.world Support community.

Support e-mail

Any support requests are best sent to info@lemmy.world e-mail.

Report contact

Donations πŸ’—

If you would like to make a donation to support the cost of running this platform, please do so at the following donation URLs.

If you can, please use / switch to Ko-Fi, it has the lowest fees for us

Ko-Fi (Donate)

Bunq (Donate)

Open Collective backers and sponsors

Patreon

Join the team

founded 1 year ago
MODERATORS
 
top 50 comments
sorted by: hot top controversial new old
[–] fishbulb95@lemmy.world 62 points 1 year ago (3 children)

Yet you give in out of desperation only to find the subreddit is private.

[–] ticookie@kbin.social 10 points 1 year ago

As it should be

[–] void404@kbin.social 8 points 1 year ago

This happened to me more than once during the first day of the blackout ;_;

[–] Lemmington@sopuli.xyz 1 points 1 year ago

Cached view works (for now)

[–] ChillPill@lemmy.world 50 points 1 year ago (1 children)

So many tech answers on reddit. Hopefully the community here will bloom soon enough

[–] Discoslugs@lemmy.world 9 points 1 year ago

Its happening, just slowly.

[–] IsThisLemmyOpen@lemmy.dbzer0.com 34 points 1 year ago* (last edited 1 year ago) (2 children)
[–] Lemmyin@lemmy.world 18 points 1 year ago

I'm just meming, I'm not actually mad at reddit

[–] arcrust@lemmy.fmhy.ml 8 points 1 year ago

Chrome has a way back machine extension

I've never actually used it though. Never had a reason till now

[–] JCreazy@midwest.social 27 points 1 year ago (1 children)

Don't forget that it wasn't reddit that provided that information, it was a user that submitted the information for free.

[–] Binette@lemmy.world 7 points 1 year ago (1 children)

Exactly! I think that the solution to this issue is to ask more questions on Lemmy. If more people ask, we may be able to get more information without having to type "reddit" after our questions X)

[–] z3k3lon@lemmy.pt 7 points 1 year ago (1 children)

There will come a time where we search using lemmy as keyword to find the answer straight away.

[–] TheMalWare@lemmy.world 2 points 1 year ago

Would it work with instances without Lemmy in their name (like Beehaw)?

[–] johndroid@lemmy.world 21 points 1 year ago* (last edited 1 year ago)

Since I left Reddit, I've had a few searches yield very helpful Reddit results. I read them and move on. I'm running an adblocker and I'm not providing value by commenting. I see no problem with this.

[–] Xanthrax@lemmy.world 17 points 1 year ago

Copy the link and search an archive; the sub me may be down anyways. Also post your solution here. Be the change you want to see

[–] speff@melly.0x-ia.moe 13 points 1 year ago

Can just use the cached version. That's what I've been doing. In and out in 2 seconds

[–] bill_1992@kbin.social 10 points 1 year ago (1 children)

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.

[–] Garatron@kbin.social 5 points 1 year ago

Is there a viable way to google Fediverse content? I’ve not really had any luck with that. Mostly I get only Mastodon content.

[–] _MoveSwiftly@lemmy.world 9 points 1 year ago (1 children)

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. :)

[–] SteelBeard@lemmy.world 4 points 1 year ago

That's a great idea. I'm on board.

[–] tookmyname@lemmy.ml 7 points 1 year ago

Reddit has become yahoo answers to me. Not a place I browse

[–] Dunkin@lemmy.world 7 points 1 year ago

True this, I had an issue using the duckstation emulator and then googled and the whole first page of search hits were reddit posts to a blacked out sub. Grrr.

[–] sharan@kbin.social 5 points 1 year ago (1 children)

If I need info, and info is there, I click.

[–] SickIcarus@sh.itjust.works 1 points 1 year ago

Same. There’s a massive difference in clicking for info, and clicking for entertainment.

[–] memchr@lemmy.world 5 points 1 year ago (2 children)
// ==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.

[–] Lemmyin@lemmy.world 4 points 1 year ago (1 children)

Nice try. I’ve seen TV shows. This is to get into the C.I.A. workframe mastercode :)

Seriously tho, where do I put this?

[–] memchr@lemmy.world 3 points 1 year ago

user script manager like this one

[–] snarfvsmaximvs@lemmy.world 3 points 1 year ago

For anyone wondering, this is a tampermonkey/violentmonkey script.

[–] JWBananas@startrek.website 4 points 1 year ago

Surely someone has already written a browser extension to automatically redirect reddit links to archive.[org|is]

[–] hlqxz@lemmy.world 4 points 1 year ago

It's been so difficult lately with all the subreddits going private. Makes me sad that I can't get help through Reddit anymore. Years and years of QnA down the drain.

[–] turn_to_follow@kbin.social 4 points 1 year ago (2 children)

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

[–] meat_popsicle@kbin.social 3 points 1 year ago (1 children)

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.

[–] turn_to_follow@kbin.social 2 points 1 year ago

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

You should post your Beau opinion on !movies@lemmy.world, I think since the movie sub is trying to keep its users on reddit it's been slow to get movie discussion going here lol

[–] kraken@lemm.ee 4 points 1 year ago

You could ask lemmy! :D

It's this actually true though? I always had to add Reddit at the end of the search query as it always gave me some shit websites as sources otherwise.

[–] decavolt@kbin.social 3 points 1 year ago

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. :)

[–] glibg10b@lemmy.ml 3 points 1 year ago (4 children)

This automatically redirects Reddit links to their archived versions

load more comments (4 replies)
[–] knighthawk0811@lemmy.one 3 points 1 year ago (1 children)

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.

[–] Lemmyin@lemmy.world 5 points 1 year ago

For my part I'm trying not to generate traffic at all on the site. I feel quite powerless in this mess, and my clicks are all the little power I have. Maybe I'm paranoid but if Reddit leadership continues seeing traffic coming in on the site without people accessing the content and, more importantly, their ads, I fear they'll start to "demod" the current mods and install moderators more aligned with their "policies".

[–] DonnieNarco@lemmy.world 2 points 1 year ago

I get this all the time now....hopefully we can start getting our answers from Lemmy instances soon!

[–] Hazen@lemmy.world 2 points 1 year ago

Use googles cached option.

[–] steakryepig@lemmy.world 2 points 1 year ago

I know it has taken Reddit several years to where it is right now.

[–] Kastelt@lemmy.blahaj.zone 1 points 1 year ago (1 children)

What if you use libreddit? there's an addon that redirects you automatically to it

[–] lvl100magikarp@lemmy.ml 4 points 1 year ago* (last edited 1 year ago) (1 children)

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

[–] Kastelt@lemmy.blahaj.zone 3 points 1 year ago

I honestly don't know, sadly, I don't know that much about it, just thought it could help.

[–] PtitSerpent@kbin.social 1 points 1 year ago
[–] aceshigh@lemmy.world 1 points 1 year ago

It's a free ride when you've already paid

load more comments
view more: next β€Ί