Tragic,

It's just like 14 people not understanding the software and creating accounts on every instance

Fulthi,

That's fucking funny lmao

freebrick,
freebrick avatar

loool... but yeah

LordR,

That's me at the beginning. I was confused and it seemed to not work. But now I got it :D

scifu,

Not really multiple accounts on lemmy but one one lemmy.world and another on kbin. Then came across lemm.ee which had some sorting bug fixed and liked the name so… yeah 2 lemmy accounts and one kbin.

wilberfan,
@wilberfan@lemmy.world avatar

Exactly what I've done as well. Probably not necessary, but a part of my learning curve.

ChanchoManco,

I feel personally attacked.

anakaine,

Me too....

Varyk,

Raising my hand.

xc2215x,

Good to see for Lemmy. Let's keep it up.

Alpagu,
@Alpagu@lemmy.world avatar

The total number of active users in the last month would be a much more accurate statistic. The number of users does not give the correct result due to bot accounts.

Untitled9999,
Untitled9999 avatar

The chart here shows 37,000 active users for Lemmy, and this chart here shows 45,000 active users for Kbin.

And if the recent trend continues then those numbers should grow.

danc4498,

What actually is kbin? Is it just Lemmy with a different user interface? Does it have multiple instances like Lemmy?

CynAq,
CynAq avatar

Hello from kbin!

danc4498,

IT'S A SPY! GET EM!!!!

Starbuck,

Think of it like email, where you can use GMail and I can use Hotmail, but we can talk to each other. I can see your post and respond from my kbin account (like this).

potato_pizzareca,
@potato_pizzareca@lemmy.world avatar

How can I see posts from Kbin?

certain_people,

Just look at all posts, some will pop up

Tarte, (edited )
Tarte avatar

The goal of Kbin is to communicate with many other ActivityPup services.

Lemmy: Link aggregator, social network, forum
Kbin: Link aggregator, social network, forum, microblogging
Mastodon: Microblogging

You can use Kbin to interact with Lemmy, Mastodon, Pleroma, Peertube, and others. That's why I switched today (and loving it, exploring everything right now).

I don't believe that there are multiple instances of Kbin right now. I only know of kbin.social (it is free and open source, though, so anyone can open another instance, I think). Edit: This was wrong. There are many instances. See the answer below.

Untitled9999,
Untitled9999 avatar

There are multiple instances of Kbin, you can see them at the bottom of this page.

The second most popular one at the moment seems to be https://fedia.io/, but yes https://kbin.social/ seems to be the most popular.

Tarte,
Tarte avatar

Thanks!

danc4498,

Switched to kbin? How is it's front page aggregation? Is it closer to reddit than Lemmy?

ulu_mulu,
@ulu_mulu@lemmy.world avatar

Have a look, you don't need to register just to see how it is: https://kbin.social/

scifu,

Yes it’s much better and sorting seems stable.

danc4498,

I just checked it out. It certainly feels now polished. Do you know what the dev community is like? Do they update and add features frequently?

CynAq,
CynAq avatar

The site is very new and is in active development. For now, it's mostly under the hood stuff but the stability of the experience increased quite a bit since I first started a week so they must be doing it right.

I believe the owner @ernest is doing the heavy lifting by himself.

Noumena,

It is a tight small shop from what I understand. Their github: https://github.com/ernestwisniewski/kbin

Ernest, from what I've seen, has been very receptive and passionate about all the incoming users. They scaled their infrastructure quickly to meet demand and were interacting with users on kbin regarding features they would like to see. I have high hopes.

danc4498,

I'll check that out too... I like the comment UI better in Lemmy, but everything else seems better in Kbin.

b_crussin,

AFAIK kbin is way early in development and got slammed by a wave of new users after Rexxit happened.

So the dev’s priority right now is server and platform stability, and it’s already way smoother than it was a couple weeks ago. That being said, there are a ton of features planned and development seems to be going pretty quickly at the moment

LollerCorleone,
LollerCorleone avatar

Its a completely different link agreggator software. But since both Lemmy and kbin are based on the ActivityPub protocol, instances of both can federate with each other. Hence, lemmy users can see content posted on kbin instances and vice versa.

phil299,

Here is the active users last month curve

https://lemmy.world/pictrs/image/44650b47-2244-4e3f-8533-19ff92a326fd.png

It is not just active users , we have gone from under 100 nodes (instances) to over 300 in June alone , I really love the distributed network idea, I could see large sub from reddit running there own instance where they really have control of the destiny of there community.

synapse1278,
@synapse1278@lemmy.world avatar
phil299,

exactly :-)

guyman,

Lemmy is where it's at. I'm noticing an insane jump in quality. It feels like everyone on reddit wants to be a comedian or repeat the same thing 1000 times just to show they fit in.

ptah,

I've checked Reddit a few times the past few days and I've started to notice how many comments are the same inside jokes over and over again. The hive mind really looks different when you're on the outside.

ulu_mulu,
@ulu_mulu@lemmy.world avatar

I bet many of those are just reposting bots.

pleasemakesense,
@pleasemakesense@lemmy.world avatar

Unfortunately these are most bots, which you can see from the active user ratio

https://lemmy.world/pictrs/image/432b5d80-d421-495e-9762-993826e0386e.jpeg

danc4498,

What does "active" mean? Are lurkers considered active? Or do you have to vote/comment/post to be considered active?

ptah,

Looking through the code on GitHub it looks like active is the number of new posts plus the number of new comments in a certain time period (in this case 6 months).

Caveat: I'm just a hobbyist so my reading of the code may not be exactly correct.

create or replace function site_aggregates_activity(i text)
returns int
language plpgsql
as
$$
declare
   count_ integer;
begin
  select count(*) 
  into count_
  from (
    select c.creator_id from comment c
    inner join user_ u on c.creator_id = u.id
    where c.published > ('now'::timestamp - i::interval) 
    and u.local = true
    union
    select p.creator_id from post p
    inner join user_ u on p.creator_id = u.id
    where p.published > ('now'::timestamp - i::interval)
    and u.local = true
  ) a;
  return count_;
end;
$$;

update site_aggregates 
set users_active_day = (select * from site_aggregates_activity('1 day'));

update site_aggregates 
set users_active_week = (select * from site_aggregates_activity('1 week'));

update site_aggregates 
set users_active_month = (select * from site_aggregates_activity('1 month'));

update site_aggregates 
set users_active_half_year = (select * from site_aggregates_activity('6 months'));


TeaHands,
@TeaHands@lemmy.world avatar

I understand a large part of it is an influx of spam bots on unsecured instances so don't get too excited quite yet.

phil299,

I have not seen a great deal of evidence of spam bots yet myself

TeaHands,
@TeaHands@lemmy.world avatar

Me neither, very glad our various admins are on top of it all. There's an interesting update on the situation from the admin of lemm.ee here https://lemmy.world/post/378640

phil299,

good catch

MicroWave,
@MicroWave@lemmy.world avatar

But we can get excited that lemmy.world is the largest non-bot instance with 37k users.

stux,

That's uh.... spam! :D

Joecool2087,

I love spam! Spam and eggs, spam sushi, spam and Reese's....

GoodKingElliot,
GoodKingElliot avatar

😩

phil299,

Spam spam spam spam spam spam spam spam ....spaaaammm glorious spam

Glunkbor,

Very good news for us! And by the way Reddit keeps fucking up over and over again the growth won't slow anytime soon.

ulu_mulu,
@ulu_mulu@lemmy.world avatar

Expect a crazy peak around July 1st, that's when reddit apps will shutdown, after that things should settle I think.

Tsunami45chan,
@Tsunami45chan@lemmy.world avatar

Yeah and it's only nine (ten) days left.

danc4498,

I hope the new version of Lemmy is released before then so the home page gets fixed.

wheresyourshoe,

I imagine there will still be a higher than normal amount of growth, but not as steep, through the rest of the summer as other people give up on Reddit after the changes. Some casual users may not understand what's going on, but they'll notice the changes through July and August without all the 3rd party people and the mods who leave/have left/got removed, which may drive them to alternatives.

JackOfAllTraits,

I am very suprised by the curve! I tought it was gonna be a short spike

  • All
  • Subscribed
  • Moderated
  • Favorites
  • general@lemmy.world
  • slotface
  • kavyap
  • thenastyranch
  • everett
  • tacticalgear
  • rosin
  • Durango
  • DreamBathrooms
  • mdbf
  • magazineikmin
  • InstantRegret
  • Youngstown
  • khanakhh
  • ethstaker
  • JUstTest
  • ngwrru68w68
  • cisconetworking
  • modclub
  • tester
  • osvaldo12
  • cubers
  • GTA5RPClips
  • normalnudes
  • Leos
  • provamag3
  • anitta
  • megavids
  • lostlight
  • All magazines