this post was submitted on 11 Jun 2025
516 points (98.1% liked)

Fediverse memes

1486 readers
235 users here now

Memes about the Fediverse.

Rules

General
Specific

Elsewhere in the Fediverse

Other relevant communities:

founded 8 months ago
MODERATORS
516
They're back! (i.imgflip.com)
submitted 2 days ago* (last edited 2 days ago) by Blaze@lemmy.dbzer0.com to c/fedimemes@feddit.uk
top 50 comments
sorted by: hot top controversial new old
[–] samus12345@sh.itjust.works 33 points 2 days ago (1 children)
[–] FrostBlazer@lemm.ee 6 points 1 day ago

Feelsbadman, I feel like we were just starting to grow too :/

[–] ayyy@sh.itjust.works 15 points 2 days ago

But I was assured by entitled assholes that going down for a few days would be the absolute end of the community and it would never bounce back… I was assured it was extremely irresponsible bordering on criminal negligence for a hobby forum to not have at least three global points of presence each staffed with 24/7 on-call engineers.

[–] mo_lave@reddthat.com 7 points 1 day ago
[–] poVoq@slrpnk.net 74 points 2 days ago (1 children)

Thanks for the warm welcome 🥳

[–] Blaze@lemmy.dbzer0.com 27 points 2 days ago

Cool to see you back!

[–] match@pawb.social 48 points 2 days ago (1 children)

yay!

(lemm.ee lying dead slightly offscreen)

[–] boonhet@lemm.ee 9 points 2 days ago
[–] Robert7301201@slrpnk.net 24 points 2 days ago

You guys are the best. Thanks for the warm welcome back.

This post was actually how I learned slrpnk.net was back online.

[–] Track_Shovel@slrpnk.net 48 points 2 days ago (2 children)

We're elated to be back in business. Brace yourself, my shitposting itch has gone unabated for a while now.

[–] ProdigalFrog@slrpnk.net 28 points 2 days ago* (last edited 2 days ago) (1 children)
[–] peoplebeproblems@midwest.social 23 points 2 days ago (1 children)

But my sandworms will die!

[–] ProdigalFrog@slrpnk.net 9 points 2 days ago

The spicy memes must flow!

[–] noodlejetski@piefed.social 8 points 2 days ago* (last edited 2 days ago)

back to the meme mines with you

[–] MelodiousFunk@startrek.website 31 points 2 days ago (1 children)

Wait, what? For real?

fiddles with some buttons

[–] MelodiousFunk@slrpnk.net 40 points 2 days ago (3 children)

WHEW!

Man it sucked being stuck in that transporter buffer.

[–] grrgyle@slrpnk.net 8 points 2 days ago (1 children)

Hahaha I think our alts all got some attention last week. I switched to a more local one rather than interest based, so it was actually cool seeing more geographically relevant posts.

It's given me more appreciation for the other instances of lemmy overall.

Still, so great to be back on my main!!!!

[–] stabby_cicada@slrpnk.net 6 points 2 days ago (1 children)

It's like the Hobbit taught us: traveling is good, but coming home is better.

[–] samus12345@sh.itjust.works 3 points 2 days ago (1 children)

There and Back Again: A Lemming's Tale

[–] MelodiousFunk@slrpnk.net 3 points 1 day ago

old man yells at cloudsFOR FUCKS SAKE I SEARCHED LEMMINGS GAME GIF NOT LEMMINGS MOVIE GIF GOTDANG ENSHITTIFIED EVERYTHING ANYMORE I SWEAR TO FUCKING INVISIBLE SKY WIZARD, COLLECTOR OF STARSHIPS

[–] MelodiousFunk@lemmy.zip 17 points 2 days ago (1 children)
[–] MelodiousFunk@slrpnk.net 16 points 2 days ago (1 children)

Shhhhhh. You wouldn't import my settings and I was too lazy to re-create. But I have made a fresh backup and I'm going to try again. Right after I get off of the toilet.

[–] grue@lemmy.world 18 points 2 days ago (1 children)
[–] MelodiousFunk@slrpnk.net 11 points 2 days ago

That looks suspiciously like the phaser that killed @MelodiousFunk@kbin.social 🤔

[–] AccountMaker@slrpnk.net 5 points 2 days ago

We're back!!!!

I also learned that from this post

[–] epicstove@lemmy.ca 6 points 2 days ago

.ca mentioned les goooooooo!

[–] db0@lemmy.dbzer0.com 9 points 2 days ago

Great news!

[–] compostgoblin@slrpnk.net 2 points 1 day ago

Wooooo! We are so back!

[–] onlinepersona@programming.dev 7 points 2 days ago (2 children)

And they want to migrate to piefed? Does it have better performance than Lemmy? That would be hilarious if python were faster than rust.

Anti Commercial-AI license

[–] squaresinger@lemmy.world 19 points 2 days ago (2 children)

Tbh, the vast majority of performance issues don't come from the language but from the application itself.

While python is clearly slower than rust when it comes to pure native performance when doing exactly the same things exactly the same way and only within the language itself, the same isn't necessarily true in the bigger picture.

  • Python uses C modules under the hood. A lot of the functions you call actually utilize C with C performance.
  • Lower level languages allow the programmer to fail harder. While perfect low-level language code usually runs faster than perfect high-level language, the same cannot be necessarily said for bad or average code. For example, it's really hard to make an actual memory leak in Python. It's super easy to do so in languages without built-in memory management. The same applies in many other cases too. Python just gives you a lot of already-done tools that you only have to use, while other languages allow you to build the tools from scratch, which is easy to mess up.
  • Most performance is lost due to using wrong algorithms or data structures. It's quite common when optimizing that you e.g. manage to eliminate a nested loop or something like that (e.g. loops hidden inside functions you call), and suddenly you improve performance by a factor of 1000. The same can't be done by switching languages, where even the most inefficient languages are only maybe 10x slower than the fastest languages.

So independent of the programming language, investing time in optimizing can improve the performance much more than using a faster language, and it's much easier to make perfectly optimized high-level language code than perfectly optimized low-level language code.

[–] boonhet@lemm.ee 12 points 2 days ago

Facts right here. I love Rust and my day job is Python. Neither is too slow for most of my use cases. Though one cool thing about Rust is the super low overhead. So well-written Rust, much like well-written C, is great for low-power devices. Still, the database is going to be memory, IOPS and maybe CPU hungry as it grows. You can optimize data structures, but you still need to read said data.

load more comments (1 replies)
[–] poVoq@slrpnk.net 6 points 2 days ago* (last edited 2 days ago)

It is the medium term plan, yes (if feasible).

The user facing side of Piefed is more optimized for speed and low resource use, which fits well with our Solarpunk ethos, and on the backend side I expect it to be easier to maintain and the performance impact should be neglible as most of it is the Postgres database with Lemmy and likely Piefed as well.

[–] ProdigalFrog@slrpnk.net 15 points 2 days ago (1 children)

So happy to be home again ^^

[–] grrgyle@slrpnk.net 4 points 2 days ago

Welcome back, and I agree!

[–] fxomt@lemmy.dbzer0.com 16 points 2 days ago

Glad they're back

[–] quid_pro_joe@infosec.pub 11 points 2 days ago

Slrpnk.net was my first Lemmy server! I had absolutely NO IDEA how it worked, but I was motivated by my recent departure from Facebook and Twitter.

When they went down, it kinda felt like when you go to a party with someone and it's all their friends, and then your date vanishes into thin air, and your choices are leaving the party or making awkward convo with a rodent of unusually large size by the punchbowl...

[–] mesamunefire@piefed.social 11 points 2 days ago
[–] Cris_Color@lemmy.world 8 points 2 days ago

Yaaaaay, welcome back y'all!

[–] infinitesunrise@slrpnk.net 8 points 2 days ago* (last edited 2 days ago) (3 children)

Not being able to participate anywhere on Lemmy merely because my home instance was down didn't feed very federated :(

Is there anything I can do to guard against that issue in the future? Is there a way to mirror an account between two instances or something?

Anyway, big props to the slrpnk admins for getting the instance back online quicker than expected. Your hard work is definitely not unappreciated or unnoticed.

[–] Blaze@lemmy.dbzer0.com 13 points 2 days ago

there anything I can do to guard against that issue in the future? Is there a way to mirror an account between two instances or something?

Open an alt, export/import your settings

load more comments (2 replies)
[–] DmMacniel@feddit.org 10 points 2 days ago (2 children)

huh? Even with the context I don't get it.

[–] End0fLine@midwest.social 52 points 2 days ago (2 children)

The slrpnk.net server went down and the admin wasn’t able to physically get to the server to fix the issue. It appears it came back up quicker than anticipated.

[–] DmMacniel@feddit.org 25 points 2 days ago

thats pretty cool, slrpnk really has some good content and good beans.

[–] cm0002@lemmy.world 14 points 2 days ago

Much quicker, I think they were talking like July lol

[–] Blaze@lemmy.dbzer0.com 14 points 2 days ago (1 children)
[–] DmMacniel@feddit.org 11 points 2 days ago (2 children)

Aaah, now that's good context. Thanks Blaze.

load more comments (2 replies)
[–] Sunshine@lemmy.ca 9 points 2 days ago

Woool our friends are back!

load more comments
view more: next ›