Skip Navigation
What happened to all the posts in this community?
  • Lemmy.world has been acting strangely since yesterday's upgrade, and has also been getting hugged by Reddit refugees.

    I think it's having issues right now seeing posts elsewhere in the fediverse, and sharing posts made on lemmy.world with other servers.

    Using an alternate account on lemm.ee I can see a lot of lemmy.ml posts in here that aren't visible on lemmy.world, and none of those instances seem to be defederated from each other.

    I expect it's just growing pains and will be resolved soon.

    tl;dr You might want to make an alt.

  • Anyone else listening to Hard Fork from NYT?
    www.nytimes.com Hard Fork

    The future is already here.

    Hard Fork

    Lots of AI news, which suits me.

    While UnderUnderstood feels more like the spiritual successor to Gimlet's Reply All, the co-hosts of Hard Fork (Kevin Roose and Casey Newton) banter in a way that reminds me of P. J. Vogt and Alex Goldman.

    0
    Advice needed: Accidentally summoned a demon while trying to make mac & cheese

    So I was hungry and bored and a little drunk and decided to make some homemade macaroni and cheese. I found this old leather-bound book that looked like a cookbook, so I opened it and followed a recipe. Turns out it was like the Necronomicon or something and I summoned a demon. He’s sitting on my couch right now being a dick, watching Netflix and drinking my beer. He won't leave and says he's going to take my soul unless I make him the world's best mac and cheese. I have a box of crappy dollar store instant mac in the pantry. What can I do to make it better? I don't have any crazy ingredients like fancy cheeses or truffles. Help.

    13
    Motorola Defy vs Garmin InReach
  • No plans to go back :)

    I notice you're really putting in the work getting this community started. Thanks for that!

  • Motorola Defy vs Garmin InReach

    I have an InReach Mini 2 but am thinking about picking up a Motorola Defy to try as an alternative.

    I'm mostly out day-hiking, but usually in remote areas which are sparsely-populated where cell signal is inconsistent. Only a few times a year am I lucky enough to find time for multiple-day hikes.

    Garmin is reliable, and I'm in their ecosystem with my watch, too.

    But I'm a sucker for new tech, and the Defy looks interesting.

    Anyone have any thoughts either way?

    3
    Jerboa currently unusable for other people?
  • This is being discussed in https://lemmy.world/c/jerboa@lemmy.ml too. You might want to check out that Community.

    There's a comprehensive list of Lemmy apps being curated here.

    My personal recommendation is https://wefwef.app.

  • Help installing Lemmy & Wefwef on Synology
  • Thanks. My job's gotten busier since I bought my DS412+ and it's been sitting virtually unused for awhile. I'm hoping someone can provide directions that are just a step above "click to install" because I'm (too busy/too lazy/too clueless <-- pick one) to DIY it.

  • Help installing Lemmy & Wefwef on Synology

    Are there any Synology users who might be able to write up step-by-step instructions for installing Lemmy (maybe using Lemmy-Easy-Deploy) and Wefwef on a Synology DS412+ with Docker and Portainer?

    Bonus points for configuration instructions using non-standard ports and DuckDNS dynamic DNS.

    4
    Plex lays off more than 20 percent of its staff
    www.theverge.com Plex lays off more than 20 percent of its staff

    The company has been affected by the downturn in ad markets.

    Plex lays off more than 20 percent of its staff

    Thirty-seven people were cut, and the layoffs affect every department at the company, according to a memo from the CEO.

    1
    Spider-Man: Across The Spider-Verse editor confirms there are multiple versions of the film currently in theaters
  • The post he responded to listed a number of alternate scenes. All minor.

  • Spider-Man: Across The Spider-Verse editor confirms there are multiple versions of the film currently in theaters

    Andy Leviton, Associate Editor on Spider-Man: Across The Spider-Verse, confirms audience speculation that there are multiple cuts of the film in theaters with Tweet, "I was wondering when people might start noticing.”

    6
    Convince me: Backpacking Bidets

    I'm mostly a day-hiker. I'd rather hike farther than carry more.

    I'm slowly Passage-hiking the Arizona Trail, and there are stretches where overnights will be unavoidable.

    I'm not going to cut down my toothbrush, but I do want to carry as little as possible.

    I hear positive things about backpacking bidets, but the concept seems (to put it delicately) "optimistic" to me.

    I may attempt the "try it afterwards in your shower at home" advice I've seen elsewhere, but that seems...gross.

    Am I missing something, or is my risk tolerance misaligned with the reality of roughing it?

    0
    Television @lemmy.world Gamera8ID @lemmy.world
    Dan Stevens Replaces Justin Roiland in Hulu’s ‘Solar Opposites’
    www.hollywoodreporter.com Dan Stevens Replaces Justin Roiland in Hulu’s ‘Solar Opposites’ (Exclusive)

    The animated series, from exec producers Mike McMahan and Josh Bycel, will return with its fourth season in August.

    Dan Stevens (Downton Abbey, Legion, Gaslit) has been tapped to take over the lead role in the animated series that was originally created by Mike McMahan (Star Trek: Lower Decks) and Dustin Roiland, who was ousted in January amid domestic violence charges.

    0
    Subscribed communities copyer
  • I made a slight modification to your bookmarklet asking to which instance you are migrating, which produces a list of links you can paste into something like https://www.openallurls.com so it becomes just a matter of clicking all of the "Subscribe" buttons:

    javascript:(function() {
      const currentHostname = window.location.hostname;
      const tld = prompt("Please enter the name of the instance to which you are migrating:");
      const table = document.getElementById('community_table');
      const anchorTags = table.getElementsByTagName('a');
      const communityUrls = [];
    
      for (let i = 0; i < anchorTags.length; i++) {
        const title = anchorTags[i].title.substring(1);
        const parts = title.split('@');
        const community = parts[0].trim();
        const domain = parts[1] ? parts[1].trim() : currentHostname;
        const communityUrl = `https://${tld}/c/${community}@${domain}`;
        communityUrls.push(communityUrl);
      }
    
      const urlsText = communityUrls.join('\n');
    
      navigator.clipboard.writeText(urlsText)
        .then(() => {
          alert('Community URLs copied to clipboard!');
        })
        .catch((error) => {
          alert('Failed to copy Community URLs to clipboard:', error);
        });
    })();