I had to do a double take when I saw Lemmy.ca spiked to 9.1k registered users

They must be those cool folks from r/onguardforthee and r/fredericton! Lets get off those american Reddit servers eh!

Update: there’s a thread on r/buycanadian with 93 upvotes, promoting the platform! Open the floodgates baby!

870 points · 156 comments · view on lemmy.world

156 Comments

g3ek@lemmy.ca · 153 pts · 1y (11 replies)

Hi! If you need reliable canadian hosting for lemmy.ca let me know. I am a co-founder of a Canadian Cloud and I will be happy to provide the infra for free. We are happy to help canada going out of American Corporation. If you are interested, let me know!

Shadow@lemmy.ca · 70 pts · 1y (2 replies)

Let's talk =)

Sunshine@lemmy.ca · 42 pts · 1y (1 reply)

Let the collaborations begin ;)

hazardous_area@lemmy.world · 10 pts · 1y

Let us know if you get this setup!

snausagesinablanket@lemmy.world · 30 pts · 1y (6 replies)

Can I pay you in maple syrup?

g3ek@lemmy.ca · 35 pts · 1y

That's almost more stable than the canadian dollars these days, I might consider ;)

Sunshine@lemmy.ca · 12 pts · 1y (3 replies)

Supplied from beautiful Quebec!

UndulyUnruly@lemmy.world · 3 pts · 1y (1 reply)

There’s great fishing in Quebec.

ehpolitical@lemmy.ca · 2 pts · 1y

And cheese!

ehpolitical@lemmy.ca · 3 pts · 1y

Quebec really is beautiful. Haven't been in ages, would love to go back one day.

mPony@lemmy.world · 5 pts · 1y

rare hockey cards only, chum

brbposting@sh.itjust.works · 3 pts · 1y

That’s so great yo, thank you from all fediversians

Also sorry from all USAians with brains 😭 srsly

atomicpoet@kbin.earth · 71 pts · 1y (3 replies)

Congrats. Canada needs to build its own social media infrastructure.

infinitevalence@discuss.online · 15 pts · 1y (2 replies)

They should also build a wall so our stupid stays south of their sovereign border.

harrys_balzac@lemmy.dbzer0.com · 11 pts · 1y (1 reply)

Not all of us are stupid. Just a majority. No more than 3/4. Maybe. On a really good day.

tamal3@lemmy.world · 5 pts · 1y

Let's just put the argument to rest by becoming Canadian. Please?

Spruce_Gum@lemmy.ca · 62 pts · 1y (10 replies)

Just joined to get away from Reddit - I’m pleasantly surprised with how active it seems here despite the much smaller community! This is exciting!

Sunshine@lemmy.ca · 15 pts · 1y (8 replies)

We like to party too!

Werewolf_Cop@lemmy.ca · 15 pts · 1y (7 replies)

Question for you: are pretty much all of the users Canadian or in Canada? Is it possible to tell?

StillPaisleyCat@startrek.website · 13 pts · 1y

You can join communities on other instances too if you have specific interests.

Kichae@lemmy.ca · 10 pts · 1y (3 replies)

Users that you see with an email-like suffix to their name are using different websites and are less likely to be Camadian (though, as you know/ we are everywhere). Users without the suffix (if your client omits local addressing) are on lemmy.ca and are much more likely to be Canadian.

nyan@lemmy.cafe · 5 pts · 1y (1 reply)

though, as you know/ we are everywhere

True enough. I joined a British instance for reasons that seemed good enough to me at the time I signed up. I kind of pity any Canadian who decided to sign up with an American instance somewhere back in the depths of time, though—I don't think Trump will manage to put a tariff on electrons, but I wouldn't put it past him to try, and the last I checked, migration of accounts between servers in the Fediverse was still kind of half-baked.

psud@aussie.zone · 1 pts · 1y

I like being in a regional instance, it means I can view local and see Australian news etc, it also means I don't need to tell people where I'm from as often

turtle@lemm.ee · 3 pts · 1y

Users without the suffix (if your client omits local addressing) are on lemmy.ca

Just FYI, I don't believe that this is strictly true. In most cases it is, but I've seen many users outside my instance without the suffix. I believe that if someone edits their display name it drops the suffix, or at least it used to. Maybe that's been corrected?

Sunshine@lemmy.ca · 9 pts · 1y (1 reply)

I would assume most users are Canadian as they would have more related interests here.

tigolbitties@sh.itjust.works · 13 pts · 1y

Hi, I use sh.itjust.works, another fantastic Canadian instance, and I'm British! Big love!

pseudo@jlai.lu · 6 pts · 1y

Welcome!

Shadow@lemmy.ca · 58 pts · 1y (6 replies)

I did some playing around with grafana. This data is all just number of signups per day, grouped by instance.

Here you can see our recent spike in users compared to normal:

Adding in some other large instances we all got an increase in traffic, but ours seems to be more sustained:

And for completeness, compared to all of lemmy (as visible by lemmy.ca, so only things we federate with):

Reddit's announced some more changes but I suspect the whole tariff situation is pushing Canadians extra hard.

oce@jlai.lu · 11 pts · 1y (5 replies)

Is this grafana public? I'd like to check for jlai.lu, we also had a recent influx of users.

Shadow@lemmy.ca · 24 pts · 1y (4 replies)

No, I want to start exposing a grafana instance but for now I'm keeping this internal since it hits our live postgres.

The query if you want it is:

SELECT
  DATE(published AT TIME ZONE 'UTC') AS date,
  COUNT(*) FILTER (WHERE instance_id IN (SELECT id FROM instance WHERE domain = 'lemmy.ca')) AS lemmy_ca,
  COUNT(*) FILTER (WHERE instance_id IN (SELECT id FROM instance WHERE domain = 'sh.itjust.works')) AS sh_itjust_works,
  COUNT(*) FILTER (WHERE instance_id IN (SELECT id FROM instance WHERE domain = 'lemmy.world')) AS lemmy_world,
  COUNT(*) FILTER (WHERE instance_id IN (SELECT id FROM instance WHERE domain = 'lemmy.dbzer0.com')) AS dbzer0,
  COUNT(*) FILTER (WHERE instance_id IN (SELECT id FROM instance WHERE domain = 'jlai.lu')) AS jlai_lu,
  count(*) as all_lemmy
FROM person
GROUP BY 1
ORDER BY 1;

Or here's your instance overlayed with us to provide a comparison:

lemmyng@lemmy.ca · 7 pts · 1y (2 replies)

A suggestion from someone who frequently deals with observability infrastructure: it's a good idea to set up a postgres exporter and record your data as Prometheus metrics, that way querying the metrics does not hit any of the production stack.

tetris11@lemmy.ml · 6 pts · 1y (1 reply)

Prometheus is the goat, and is built into a surprisingly large amount of FOSS service tools. JupyterHub for example includes Prometheus metrics out of the box

Shadow@lemmy.ca · 5 pts · 1y

Eh. Calling it the goat is excessive. I'm planning to go victoriametrics instead.

Yes the exporter format is common and widely supported though, which is nice.

oce@jlai.lu · 7 pts · 1y

Nice, thank you!

Moose@moose.best · 44 pts · 1y (3 replies)

I'm not on lemmy.ca but as a moose I appreciate this post and my fellow Canadians 🇨🇦🫎

mPony@lemmy.world · 12 pts · 1y (2 replies)

hey guys check out this moose over here.

WorldsDumbestMan@lemmy.today · 5 pts · 1y (1 reply)

Are you a tiny moose?

mPony@lemmy.world · 3 pts · 1y

(cough) no, but my voice is a little hoarse

troyunrau@lemmy.ca · 41 pts · 1y (1 reply)

Seize the memes of production!

sbv@sh.itjust.works · 11 pts · 1y

that's good

ThePrivacyPolicy@lemmy.ca · 40 pts · 1y (5 replies)

There's some Facebook 'buy Canadian' groups with over half a million people in - this server occasionally comes up there too when people are looking for Canadian hosted discussion sites to ditch big American tech like reddit or Facebook groups.

pseudo@jlai.lu · 17 pts · 1y (2 replies)

A Facebook exodus! meow bounce

Sunshine@lemmy.ca · 7 pts · 1y (1 reply)

Canadian Friendica will be here soon!

Emperor@feddit.uk · 4 pts · 1y

It's URL is friendi.ca!

Sunshine@lemmy.ca · 17 pts · 1y

Thank you for informing me as that brings a smile to my face.

Sunshine@lemmy.ca · 1 pts · 1y

Also there's a Quebec friendica instance called https://onjase.quebec/

They have 29 users and an uptime of 95%

ininewcrow@lemmy.ca · 37 pts · 1y

former r/onguardforthee fan here ... I've been on Lemmy.ca now for over a year ... happy to see others are hopping on board and jumping off the burning train wreck

ADDITION TO MY ORIGINAL .... one thing we current users of Lemmy should point out to any new users that are joining Lemmy either here at Lemmy.ca or any other fediverse instance is to REMIND EVERYONE TO DONATE TO AND SUPPORT THE INSTANCE THEY ARE ON. It's great that all this stuff is free for us to use but there are people here who work to develop, maintain and upgrade the source software and there are groups of people who maintain and manage the instances that we all use. We can't expect all these people to work for free. Many of them may not mind working for free and they might even enjoy it but there will come times when they either can't do it any more or they just run out of money, resources and time and energy to manage things as they grow more and more popular. No one complains when things are working but everyone will scream and shout as soon as their instance fails for one reason or another. Everyone or as many people as possible should find a bit of money to support their instance or the developers. Even if everyone gave a dollar, that would add up to thousands. If we keep these instances and the people that work and maintain all this well funded then we can all be safe and secure from any corporate rot that might creep into our communities.

Sunshine@lemmy.ca · 36 pts · 1y (3 replies)

Update: we just hit 9.2k! Keep up the surge folks! Keep Shadow busy tonight!

avidamoeba@lemmy.ca · 14 pts · 1y (2 replies)

Doesn't the new server support at least 10x-100x the current capacity? I think it was a huge machine compared to the old one. I guess storage is separate.

Sunshine@lemmy.ca · 15 pts · 1y (1 reply)

That’s a lot of potential wiggle room. 92k to 920k potential registered users while currently LW has 174k, that’s one crazy hardware upgrade. The servers will become cheaper to run in the future as we put to use our economies of scale.

avidamoeba@lemmy.ca · 4 pts · 1y

Now that you spell out these numbers, probably not 100x. 😂

Snowstorm@lemmy.ca · 34 pts · 1y (5 replies)
[ removed ]
adespoton@lemmy.ca · 18 pts · 1y (1 reply)

I switched to Lemmy.ca with the first wave and have found zero reasons to go back to Reddit since.

There are nifty migration tools that help you find Lemmy equivalent communities for the subreddits you were subscribed to.

GreyEyedGhost@lemmy.ca · 4 pts · 1y

Likewise, but I still go to reddit via searches if the other results aren't helping me out. At this point it's more an act of desperation than desire, though.

Sunshine@lemmy.ca · 10 pts · 1y

Nice so they were talking about us there!

SpaceCowboy@lemmy.ca · 9 pts · 1y

No need to feel guilty about doing the right thing.

And there's not an endless stream of content on lemmy, so it doesn't eat up too much time.

pseudo@jlai.lu · 2 pts · 1y

Welcome! Have fun!

Slax@sh.itjust.works · 30 pts · 1y

Its a great time to join. I think many of us have been lurkers in reddit and now with the tides of change we need to also make Lemmy active, especially the Canadian sites

AFC1886VCC@reddthat.com · 23 pts · 1y (7 replies)
[ removed ]
Mongostein@lemmy.ca · 11 pts · 1y (2 replies)

It could be both if you joined us

BedSharkPal@lemmy.ca · 2 pts · 1y

Would they join Canada, or we we join them? Does it even matter?!

fartknocker@lemm.ee · 1 pts · 1y
[ removed ]
moseschrute@lemmy.world · 10 pts · 1y (1 reply)

r/sellcalifornia

pseudo@jlai.lu · 10 pts · 1y

!sellcalifornia

0ops@lemm.ee · 4 pts · 1y

I've known this for almost as long as I've been on lemmy... but I still read it as lemmy California at first.

psud@aussie.zone · 1 pts · 1y

California would be .ca.us but nearly no one uses .us addresses, a few states point their .us domain at their .com domain

Kichae@lemmy.ca · 22 pts · 1y

Ooo, there's a Canadian Rexit happening? Cool! I keep my Reddit usage much more focused on niche hobby communities now, and there's zero talk of Reddit politics on those yet, sadly.

whoisearth@lemmy.ca · 19 pts · 1y (1 reply)

Lemmy is love. Welcome everyone :)

Sunshine@lemmy.ca · 3 pts · 1y

We’re bunch of fluffy taneggs!

CastorSulMush@lemmy.world · 19 pts · 1y (8 replies)

Oh Canada, we must come together to protect our country from the insane monsters south of our border.

Devanismyname@lemmy.ca · 12 pts · 1y (1 reply)

The insane monsters in canada too. Cough pp Cough danielle Smith Cough cough

CanadaPlus@lemmy.sdf.org · 2 pts · 1y

Unfortunately, she has a couple years of term left. Then Nenshi can eat her lunch.

jerkface@lemmy.ca · 3 pts · 1y (4 replies)

It's, "O Canada," which means something very different than, "Oh, Canada."

Anysia@lemmy.ca · 2 pts · 1y

And a new AO3 tag is born...

ehpolitical@lemmy.ca · 1 pts · 1y (2 replies)

Why did I never notice that before?

jerkface@lemmy.ca · 2 pts · 1y (1 reply)

You're probably just accustomed to the French, "Ô Canada!"

ehpolitical@lemmy.ca · 1 pts · 1y

What? But O and Oh sound the same either way. Hmm.

jerkface@lemmy.ca · 1 pts · 1y

Do we? Because this feels to me like a ruling class problem. Labour class is a lot less affected, and our efforts are mostly helping the exact same set of oligarchs who are working both sides of the border.

dylanjustice@lemmy.ca · 18 pts · 1y (8 replies)

Nope, here for a break from the drama on r/ehbuddyhoser.

Should probably find a place to cross post some of their memes here now that I think of it. The Bay of Nova Scotia was gold.

Revan343@lemmy.ca · 14 pts · 1y (5 replies)

Making c/ehbuddyhoser is an option

Emperor@feddit.uk · 8 pts · 1y (4 replies)

Do it. !okmatewanker@feddit.uk needs friends.

Sunshine@lemmy.ca · 5 pts · 1y (1 reply)

Hosers and Wankers need to do speed dating.

Emperor@feddit.uk · 2 pts · 1y

Sounds unwise.

CowsLookLikeMaps@sh.itjust.works · 1 pts · 1y (1 reply)

Done !ehbuddyhoser@sh.itjust.works

Emperor@feddit.uk · 1 pts · 1y

Well done

avidamoeba@lemmy.ca · 8 pts · 1y

Please. That's one of the few reasons I go to Reddit, getting some of that maple memes.

CowsLookLikeMaps@sh.itjust.works · 1 pts · 1y

Done !ehbuddyhoser@sh.itjust.works

cm0002@lemmy.world · 15 pts · 1y (3 replies)

I was going to post my standard Tankie Triad warning for new users, but looks like lemmy.ca defed's from the entire Triad already LMAO

...I need to move to Canada....

Sunshine@lemmy.ca · 4 pts · 1y (2 replies)

Well except for Lemmy.ml. You must be thinking about Lemmy.cafe.

cm0002@lemmy.world · 5 pts · 1y (1 reply)

Oh I double checked and you don't, but I saw enterprise.lemmy.ml and voyager.lemmy.ml sub domains and assumed the main lemmy.ml was as well lol

Sunshine@lemmy.ca · 4 pts · 1y

Heck yeah! Let’s make this ship rad!

Fern@lemmy.world · 15 pts · 1y (8 replies)

What caused it?

Marsupial@quokk.au · 23 pts · 1y (7 replies)

I heard Reddit was going to charge subscriptions for subreddits.

Also they banned a bunch of porn and lgbt subs.

Makeshift@sh.itjust.works · 7 pts · 1y (5 replies)

Wait is there any validity to that first one?

I know the second one happened for like a day and they tried to say ‘Just a bug!’ thinking no one would see past their totally brilliant cover-up.

That first one would be huge. Maybe a hammer for all the nails they been gathering to their coffin!

Marsupial@quokk.au · 12 pts · 1y (4 replies)

In a video Ask Me Anything (AMA) session hosted by CEO Steve Huffman following the company’s quarterly earnings report (which went poorly), the founder and exec said Reddit is actively testing ways to make some content require payment to access and plans to roll out a “paid subreddit” feature later this year.

https://gizmodo.com/reddit-ceo-says-paywalls-are-coming-soon-2000564245

Spacehooks@reddthat.com · 7 pts · 1y (2 replies)

What tha hell? I thought he misspelled change with charge. But no.

adespoton@lemmy.ca · 6 pts · 1y (1 reply)

Supposedly it will just be new subreddits, at least to start.

Spacehooks@reddthat.com · 4 pts · 1y

Way to stifle growth.

Makeshift@sh.itjust.works · 3 pts · 1y

Woowww.

I hope it finally kills them. With the economy going to shit and everyone becoming poorer and LESS able to afford subscriptions, what a perfect time to paywall it!

Makeshift@sh.itjust.works · 2 pts · 1y
[ removed ]
tazzy@lemm.ee · 15 pts · 1y (1 reply)

I’ll still learning how to use it and I don’t know what the lemmys are or how the communities work but I’m happy I’m not supporting Reddit eh

Retrograde@lemmy.world · 6 pts · 1y

Fuckin' a. Welcome

Hobbes_Dent@lemmy.world · 13 pts · 1y (1 reply)

Welcome everyone.

Sunshine@lemmy.ca · 3 pts · 1y

It’s getting crowded in here! There are so many moose now!

MehBlah@lemmy.world · 11 pts · 1y (2 replies)

I pictured something more like this.

MehBlah@lemmy.world · 2 pts · 1y

I'm not Canadian but I have watched letterkenny at a Holiday Inn Express.

Sunshine@lemmy.ca · 1 pts · 1y

Be nice to Canadians especially those ones.

Sunshine@lemmy.ca · 11 pts · 1y

Update 2: 9.3k users has been hit! It keeps going!

wirebeads@lemmy.ca · 10 pts · 1y (2 replies)

Just joined today. Happy to be here and away from reddit!!

Retrograde@lemmy.world · 3 pts · 1y

Good on you mate. Welcome

Sunshine@lemmy.ca · 2 pts · 1y

You made it to safety! Welcome!

ehpolitical@lemmy.ca · 10 pts · 1y (4 replies)

Yesssss! So cool!

Sunshine@lemmy.ca · 5 pts · 1y (3 replies)

Your account is as fresh as bread!

ehpolitical@lemmy.ca · 4 pts · 1y (2 replies)

Lol, I hope that's a good thing.

Sunshine@lemmy.ca · 3 pts · 1y (1 reply)

I still hear the crunch. You’re good bread!

ehpolitical@lemmy.ca · 3 pts · 1y

Lol, phew, good!

alpacacino@lemmy.world · 10 pts · 1y (1 reply)

Doing my part and reporting in! 🫡

Sunshine@lemmy.ca · 3 pts · 1y

A fresh cadet!

Prince_SKyle@lemm.ee · 10 pts · 1y (2 replies)

after seeing a thread on r/buycanadian saying “petition to rename the Americano, a Canadiano” I knew the next step was to head over here & make an account lol

Sunshine@lemmy.ca · 3 pts · 1y

That’s enough reddit for one day!

psud@aussie.zone · 1 pts · 1y

If you're talking coffee, Australia calls that a long black, though some are trying to import "americano" to mean "like a long black, but add the coffee before the water"

wise_pancake@lemmy.ca · 10 pts · 1y

Welcome fellow canucks!

I look forward to the communities you create and contribute to!

vastard@lemmynsfw.com · 9 pts · 1y (3 replies)

Is there a problem using an email alias to sign up? I applied more than a week ago. I recognize it’s a lot of work but I was wondering if I had been accidentally been binned as a bot.

Shadow@lemmy.ca · 9 pts · 1y (1 reply)

Not usually. Can you dm me the account name or email and I'll look later tonight?

MeThisGuy@feddit.nl · 0 pts · 1y

canadAsucks@hocky@lemmy.ca

Sunshine@lemmy.ca · 3 pts · 1y

@shadow@lemmy.ca

Coolbeanschilly@lemmy.ca · 8 pts · 1y (1 reply)
[ removed ]
TheFeatureCreature@lemmy.ca · 5 pts · 1y

Struth, mate!

...wait

Imgonnatrythis@sh.itjust.works · 8 pts · 1y (19 replies)

Why not sh.itjust.works?

Sunshine@lemmy.ca · 14 pts · 1y

We can promote both! I just know Lemmy.ca more.

Mongostein@lemmy.ca · 11 pts · 1y (6 replies)

Your instance doesn’t really matter that much but personally, I feel like the bigger instances will be the ones more prone to enshitification.

The admins over here are Canadian and have set up a non-profit to keep everything they’re doing above board, so I like them. :)

Check out https://fedecan.ca/en/

tetris11@lemmy.ml · 2 pts · 1y (5 replies)

Feddit.uk are also using a nice opencollective funding model, so it seems like these projects are nicely decentivised against a rogue admin selling the domain or selling the actual server

Emperor@feddit.uk · 3 pts · 1y (4 replies)

We also have one Admin in charge of the domains (me) and one in charge of the domains (GA), so we'd have to team up to go rogue. We also have processes to handover control if we get hit be a bus.

MeThisGuy@feddit.nl · 3 pts · 1y (1 reply)

until you get hexbeared

Emperor@feddit.uk · 2 pts · 1y

Now you've jinxed it!

tetris11@lemmy.ml · 2 pts · 1y

I do like the bus protocol, everyone should have one

Sunshine@lemmy.ca · 1 pts · 1y

We must protect the precious Feddit domains!

Luffy879@lemmy.ml · -18 pts · 1y (10 replies)

Why not lemmygrad, hexbear, or .ml?

thedirtyknapkin@lemmy.world · 19 pts · 1y (4 replies)

because of the tankies lol. don't pretend you don't know about the reputation those instances have.

tigolbitties@sh.itjust.works · 4 pts · 1y (2 replies)

Tanky?

thedirtyknapkin@lemmy.world · 18 pts · 1y (1 reply)

"communists" that are mainly concerned with defending everything that the modern Russian and Chinese governments do and shitting on everything America does. i can vibe with the America bashing, especially right now, but China and Russia also generally suck in many of the ways that America is currently getting worse in.

tetris11@lemmy.ml · 2 pts · 1y

Nothing to add other than "yup", though with the caveat that if you block some users and their pro-Russia/China posts, its quite a peaceful place

hydration9806@lemmy.ml · 4 pts · 1y

Yeaaa, I made my account on .ml a while ago. Looking forward to when migrating accounts is supported to move home to .ca

Imgonnatrythis@sh.itjust.works · 15 pts · 1y (4 replies)

Those aren't Canadian to start....

mPony@lemmy.world · 2 pts · 1y (3 replies)

it's hard to tell a Canadian from a non-Canadian on the internet. It's not like there's a Captcha test for it. Can you imagine

Routhinator@startrek.website · 3 pts · 1y (2 replies)

Captcha: What is Madame Soleil's first name?

pseudo@jlai.lu · 3 pts · 1y

Idk. So I guess it is working properly.

MeThisGuy@feddit.nl · 2 pts · 1y

Cirque?

slym@lemmy.ca · 7 pts · 1y

Welcome all , lets keep it going . Also thanks for the super admin we got here .

LMurch@thelemmy.club · 7 pts · 1y (2 replies)

And us Americans from reddit and month old Rednote accounts.

Sunshine@lemmy.ca · 6 pts · 1y

Welcome!

Please check out the open-source !loops@midwest.social

pseudo@jlai.lu · 1 pts · 1y

Welcome!

ehpolitical@lemmy.ca · 6 pts · 1y

It's is a bit embarrassing to admit, but this is the first time I've cried during our national anthem.

God keep our land glorious and free!
O Canada, we stand on guard for thee!

O Canada

me_on_lemmy@lemmy.ca · 5 pts · 1y

It’s a new world for me too. Thanks for having me.

Sicsurfer@lemmy.ca · 4 pts · 1y (2 replies)

I think I found Lemmy from r/EhBuddyHoser, sweet find!

Sunshine@lemmy.ca · 1 pts · 1y (1 reply)

May I ask which post has lead you here?

Sicsurfer@lemmy.ca · 2 pts · 1y

I think I saw a link in ehbuddyhoser. Still haven’t completely figured out Lemmy but Reddit is full of bots

secret300@lemmy.sdf.org · 3 pts · 1y (1 reply)

That's awesome

Sunshine@lemmy.ca · 3 pts · 1y

All the new people are pretty cute!

Lemmyoutofhere@lemmy.ca · 3 pts · 1y

Doing my part!

Snowstorm@lemmy.ca · 2 pts · 1y
[ removed ]
LovableSidekick@lemmy.world · 1 pts · 1y

I do a double-take when I see somebody noticing social media stats.