Looks like KBin has an edge over Lemmy now in terms of monthly active users.

It’s obviously a pretty silly thing, and is not in any way indicative of which project is “better” or more “long-term viable” or anything — instances of both federate with one another, and with the rest of fedi, so it’s all one happy family.

That said, it’s notable. KBin is a relative newcomer to the “Reddit-like fedi instance” game, and also does not have the tankie baggage.

Anyway, the more, the merrier!

KBin: https://the-federation.info/platform/184

Lemmy: https://the-federation.info/platform/73

Discussion on fedi: https://mstdn.social/@rysiek/110527049024028986

  • PeaPanties@lemmy.ml
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    The lack of app for KBin kills it for me.

    I have a account with KBin and I may use it as well if there’s an app

  • bad_alloc@feddit.de
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    This is great. It suddenly feels like the internet of 2003 again, with small communities popping up, competition and less of a corporate chokehold. Only this time they have a shared login and crosstalk, which was sorely lacking back then. If we are lucky this event might establish a stable, new part of the internet, which is separate from the consolidated platforms. The Fediverse doesn’t have to replace sites like reddit, just be a next step for people fed up with the corporate net (corponet?).

    • jmp242@sopuli.xyz
      link
      fedilink
      English
      arrow-up
      0
      ·
      1 year ago

      This is actually more like a return to the 90s of Usenet and mailing lists imho.

      • ApathyMoose@beehaw.org
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 year ago

        Maybe its just Nostalgia, but ill take that. Where you actually go to a place that has something to do with what your looking for, rather then a giant, centralized site where random people pop in, talk crap, and pop out.

  • greenguy@sopuli.xyz
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    instances of both federate with one another

    At least for me, I cannot access most kbin magazines from Lemmy

  • Veraticus@lib.lgbt
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    Hmm, interesting. I just spent some time getting a Lemmy instance set up – maybe I should’ve gone for kbin instead?

    • jay@beehaw.org
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 year ago

      i think you can engage and interact across both so it may not matter as much.

    • rysiek@szmer.infoOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 year ago

      I don’t think you need to worry about it. It’s up to a given community whether or not that baggage affects it or not, I think. Building communities that are very explicitly not tankie is a great way of helping overcome that baggage for the whole project.

    • Hexorg@beehaw.org
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 year ago

      Let’s not hate on tools. Php has its uses and has been proven to be useful in commercial applications. So has Rust. They are different but the choice of programming language means nothing for the core project.

    • Gecko@feddit.de
      link
      fedilink
      English
      arrow-up
      0
      ·
      1 year ago

      Yeah, I generally prefer kbin’s UI over lemmy’s but given the backend is in PHP I have concerns that it might not be able to scale effectively with its growth.

      Not saying that PHP is a complete showstopper but there are valid concerns in terms of maintainability…

      • reric88🧩@beehaw.org
        link
        fedilink
        English
        arrow-up
        0
        ·
        1 year ago

        Can you explain this in simple terms for simple minds like mine? And I only ask for other people like me who may wonder but not ask

        • derived_allegory@beehaw.org
          link
          fedilink
          English
          arrow-up
          0
          ·
          edit-2
          1 year ago

          There is a “rumor”/“running joke” in the programming community that PHP application is hard to maintain.

          Primarily, because it is originally designed to whip up a website in a quick and dirty way, hence the original name “personal homepage”.

          Where as rust (which is what Lemmy is built upon) is a much more modern language with more safe guard in place to help scaling the application.

          Obviously, like many people pointed out there are many larger project is built by PHP. However, many larger companies have the resources build significant extension to PHP to make it more usable, like Facebook’s hhvm and hack language are both tools that revolve around PHP. This is a luxury not enjoyed by smaller projects like kbin, Lemmy, even mastodon.

          My personal opinion is that PHP is not a great language, but language is just a tool; programmers are also a huge contributing factor in creating maintainable program. For example, python is probably one of the less principled language out there (for example, it’s variable scoping is very confusing); yet if the programmer programs in a manner to avoid these disadvantages, they can still build fast and maintainable project with it.

          • reric88🧩@beehaw.org
            link
            fedilink
            English
            arrow-up
            0
            ·
            1 year ago

            Cool, thanks! I only have experience with JavaScript and Python, and I personally prefer JS because Python has been confusing to me. But, I have heard Python is more efficient and easier in the long-term.

            After ‘mastering’ JS to a sufficient ability I will put my efforts towards Python. I am stumped as to why I feel JS is easier than Python when I have also heard the opposite; that python is easier than JS

            • Square Singer@feddit.de
              link
              fedilink
              English
              arrow-up
              0
              ·
              1 year ago

              Ahm, no ;)

              Both JS and Python are neither efficient nor easier in the long-term. They are both languages that were primarily built to make quick-and-dirty small and simple programs/scripts.

              Both are really slow and inefficient (though Python is much slower than JS nowadays). Both are dynamic languages which opens then up for all sorts of dirty hacks and are pretty negative for maintainability.

              Because of that, both languages have unofficial typing support (Typescript and Mypy) to make programs in these languages somewhat maintainable.

              If you are looking for performance, the first tier is natively compiling languages like C/C++/Rust/Go. The second tier are languages that compile to bytecode and run on heavily optimized runtime environments like anything running on the JVM or C# or therelike. And the worst tier are super dynamic languages like JS or Python.

              • reric88🧩@beehaw.org
                link
                fedilink
                English
                arrow-up
                1
                ·
                1 year ago

                Oh, I didn’t know this, I appreciate the insight. I have been working with typescript a bit, but sidestepped back to JS for a small project because of familiarity. My next project may be typescript just to get a feel for it.

                I have heard a lot of buzz about rust, but I haven’t looked it up because I don’t want to overwhelm myself with new things. But it does seem very popular. And I doubt there’s anyone, even people unfamiliar with code, who hasn’t heard of the C family!

                I’m not giving up JS, since it is so popular for web development, but it does make me sad that it’s so inefficient for other tasks in comparison to the other languages. Butz it also makes me kind of excited to get into some of the meatier stuff

  • unix_joe@lemmy.sdf.org
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    I don’t really care. I’m on Lemmy but fuck it, as long as it gets people off Reddit, competition can be a good thing in this space.

    Metallica and Megadeth are historically successful bands, but Metallica would have never made it if Mustaine stayed.

  • wit@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    That mstdn.social and the whole “lemmy = tankie” (whatever the fuck that means) is doing a disservice to the whole unreddit movement. I have seen plenty of discussion on reddit now of people not leaving because of these posts…

    • rysiek@szmer.infoOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      1 year ago

      I did not say “lemmy = tankie”, I said Lemmy has certain tankie baggage, and that is in fact true. The developers are pretty clearly tankies, they also run a strictly tankie instance (Lemmygrad; many Lemmy instances do not federate with it).

      Pretending this is not the case is not going to help in the long run. It might slow down the “unreddit” movement now, but I’d wager a bet it will make it more long-term viable and resilient, if people understand that choice of instance is important (there are quite a few great Lemmy instances that I would recommend wholeheartidly, like BeeHaw), and that there are alternative, independent implementations on Threadiverse (like Kbin).

  • Defaced@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 year ago

    Can someone explain the “tankie” baggage? I’ve seen it thrown around quite a bit but no one seems to explain it in detail.

    • Brunacho@feddit.cl
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      1 year ago

      (Some) Lemmy devs seem to have political ideologies that are within the “tankie” settings. That’s mostly it. Some people express they feel uncomfortable about it. Such devs hold an instance separate from the flagship instance (lemmygrad.ml), which in my opinion is not bad at all, I think it’s better they keep them to themselves giving an option to other instances to block it. They’re not trying to shove tankies ideas down anyones throats through the softwate or anything. Though this has leaked to the flagship instance sometimes as shown by this post

  • lixus98@beehaw.org
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    1 year ago

    kbin.social currently has 20k + users. However it currently has federation disabled due to the traffic is receiving. Edit: It isn’t 100k

    • AfroThundr@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      1 year ago

      Federation isn’t disabled directly. The admin put the instance behind a cloudflare proxy, which breaks the ActivityPub federation without further tweaking to open up the relevant ports. He’s working on loosening up that restriction to get federation working properly again.

      Edit: Also kbin.social currently sits at ~126k users.

  • Zoidsberg@lemmy.ca
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 year ago

    What are the pros and cons of one platform over the other? Is KBin just Lemmy+Mastodon? Can Lemmy see KBin magazines?

    • TheOneCurly@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      1 year ago

      Yep, thread based communities are shared perfectly between Lemmy and kbin. Other than currently the largest kbin community is having federation issues due to the influx of users

      • Anonymous0573@lemmy.world
        link
        fedilink
        English
        arrow-up
        0
        ·
        1 year ago

        So does that mean that any thread in the fediverse can be shared together? Or is kbin another Lemmy instance? I thought we could only look at other Lemmy instances.