Skip Navigation

Posts
8
Comments
7
Joined
3 yr. ago

  • I'm experiencing similar things:

    • Posts made here not appearing on other federated instances
    • Posts made by other federated instances disappearing or never appearing in communities here

    I've checked with alt accounts created on lemm.ee and sh.itjust.works which are subscribed to the same communities.

    @ruud@lemmy.world Is there a federation issue?

    Edit: I think this is a problem with all communities on lemmy.ml. I'm new to the fediverse concept, but the issue seems to specifically be with them.

  • Plex @lemmy.ml

    Plex lays off more than 20 percent of its staff

    www.theverge.com /2023/6/28/23777418/plex-layoffs-20-percent-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

    twitter.com /AlliterAndy/status/1672063881446035456
  • backpacking @lemmy.ml

    Convince me: Backpacking Bidets

  • True, but the writer's room is the real star of R&M and it's been reported that Roiland stopped collaborating there years ago. Hopefully it'll only be disconcerting for a minute or two, but Solar Opposites being first to have a clip out could make it harder for R&M to pull off "<Belch.> I just sound different now! Wubba Lubba Dub Dub!" without looking like a copycat.

  • Television @lemmy.world

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

    www.hollywoodreporter.com /tv/tv-news/dan-stevens-replaces-justin-roiland-solar-opposites-1235519696/
  • Reddit @lemmy.world

    A Bookmarklet to search Lemmy for your Subreddits

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