Skip Navigation

Posts
8
Comments
7
Joined
2 yr. ago

  • 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.

  • Podcasts @lemmy.ml

    Anyone else listening to Hard Fork from NYT?

    Asklemmy @lemmy.ml

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

  • No plans to go back :)

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

  • ultralight @lemmy.world

    Motorola Defy vs Garmin InReach

  • 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.

  • Selfhosted @lemmy.world

    Help installing Lemmy & Wefwef on Synology

    Plex @lemmy.ml

    Plex lays off more than 20 percent of its staff

  • The post he responded to listed a number of alternate scenes. All minor.

  • Movies and TV Shows @lemmy.film

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

    backpacking @lemmy.ml

    Convince me: Backpacking Bidets

    Television @lemmy.world

    Dan Stevens Replaces Justin Roiland in Hulu’s ‘Solar Opposites’

  • 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);
        });
    })();