• 8 Posts
  • 20 Comments
Joined 1 year ago
cake
Cake day: June 17th, 2023

help-circle



  • spin up your own private Lemmy instance

    This is something I’m investigating, but the need to do so is a massive barrier to my adoption of Lemmy.

    I can obviously only speak for myself

    …and that’s totally fair. The majority of us are here because Reddit leadership made decisions without consulting the community. I’m only asking that we expect more from instance admins. Let’s talk about it.

    I’d no more want

    This is the part I don’t understand. How is this content impacting you by being present? Am I wrong about folks using “Subscribed” and I’m the only one who doesn’t use “All” frequently? Is it so inconvenient for an individual to block a noisy Lemmit.Online community they don’t want to hear from, or even for the admins to block those specific communities? Or is the objection “the principle of the thing” despite it being useful to a segment of the community?

    reconsider your stance on making the communities here

    What stance do you mean? I linked to discussions both here and on Reddit where I am trying to foster use of equivalent communities on Lemmy. I want to have the conversations here.

    Let’s just do some quick math, though. (I pulled some of these stats off of Google and am willing to concede in advance that they may not be entirely accurate.)

    Reddit has 861 million monthly active users.

    The Boise subreddit has fewer than 50 thousand subscribers.

    So less than 0.006% of Redditors subscribe to r/Boise. Remember that’s subscribers, including lurkers, and not active posters.

    Lemmy has 21-thousand monthly active users.

    So it’s fair to say that about 1.26 total Lemmy users would have an interest in subscribing to c/Boise right now, if I make it. That’s me and a quarter of a likely lurker.

    This is not an exaggeration. The Idaho Lemmy community I linked (the only one I could find) has 15 subscribers, 1 post, and 1 reply (mine.)

    The content will come when users do, but until it does it’s not really fair to suggest that individuals with niche interests create communities in which they talk exclusively to themselves or one other person if they’re lucky.





















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





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