Skip Navigation

Posts
11
Comments
18
Joined
3 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.

  • If "master" unintentionally made some people uncomfortable then there's no harm in changing the default, since you can modify it if you choose.

  • 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

    www.xda-developers.com /motorola-defy-satellite-link-sale/
  • 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

  • Oh no. #Jerboa is crashing on launch after the update :(

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

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

  • Oh no. #Jerboa is crashing on launch after the update :(

    Jump
  • 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
  • Boost user, too. There's !boostforlemmy@lemmy.world modded by the dev, but my understanding is that they have no current plans for supporting Lemmy.

  • Request a subreddit @lemmit.online

    /r/blueskyinvites

  • Deleted

    What is Kbin?

    Jump
  • Very helpful. Thanks!

  • Deleted

    What is Kbin?

    Jump
  • This is helpful, thanks.

    It doesn’t cost you anything to sign up for, so give it a try.

    The main cost is time, to understand the platform and to find community. I created a Kbin account, but I don't see myself having the time to be divided between Kbin and Lemmy so I'm hoping not to have to maintain both.

    Kbin federates with Lemmy - so users can engage in each other’s posts.

    This gives me hope. So is it basically just a different UI? This is where my understanding of the fediverse breaks down.

  • Deleted

    What is Kbin?

    Jump
  • Can you elaborate?

    I read that Kbin defederated with Lemmy because it couldn't initially handle the influx of new users migrating from Reddit, but that it has federated again.

    So is it a Lemmy instance, like Beehaw?

    I know that Kbin doesn't use communities ("/c/") but uses magazines ("/m/") so I thought it was different.

    I also read that there was some new way to post to Lemmy from Mastadon, but I thought those were different, like Reddit and Twitter. But they both rely on something called "ActivityPub"?

    So is Kbin similar to Lemmy (by being Reddit-like), but distinct like Mastadon (which is Twitter-like)?

    I didn't have a Twitter account, but was a heavy Reddit user. I don't have a Mastadon account, but I'm liking Lemmy. However I have some FOMO about Kbin because I don't understand how it all works together.

  • 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/
  • Request a subreddit @lemmit.online

    /r/Ultralight

  • Request a subreddit @lemmit.online

    /r/television

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