They're back! (i.imgflip.com)
submitted 1 year ago* (last edited 1 year ago) by to c/fedimemes@feddit.uk

top 50 comments

sorted by: hot top controversial new old
[–] 74 points 1 year ago (1 child)

Thanks for the warm welcome 🥳

  • source
  • hideshow 2 child comments
  • [–] 48 points 1 year ago (1 child)

    yay!

    (lemm.ee lying dead slightly offscreen)

  • source
  • hideshow 2 child comments
  • [–] 48 points 1 year ago (2 children)

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

  • source
  • hideshow 4 child comments
  • [–] 33 points 1 year ago (1 child)
  • [–] 31 points 1 year ago (1 child)

    Wait, what? For real?

    fiddles with some buttons

  • source
  • hideshow 2 child comments
  • [–] 40 points 1 year ago (3 children)

    WHEW!

    Man it sucked being stuck in that transporter buffer.

  • source
  • parent
  • hideshow 6 child comments
  • [–] 17 points 1 year ago (1 child)
  • [–] 16 points 1 year ago (1 child)

    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.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 9 points 1 year ago (1 child)

    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!!!!

  • source
  • parent
  • hideshow 2 child comments
  • [–] 24 points 1 year ago

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

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

  • source
  • [–] 17 points 1 year 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.

  • source
  • [+] 16 points 1 year ago* (last edited 11 months ago)
    [removed by mod]
  • source
  • [–] 15 points 1 year ago (1 child)

    So happy to be home again ^^

  • source
  • hideshow 1 child comment
  • load more comments (1 reply)
    [–] 11 points 1 year ago
    [–] 11 points 1 year 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...

  • source
  • [–] 10 points 1 year ago (2 children)

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

  • source
  • hideshow 4 child comments
  • [–] 53 points 1 year 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.

  • source
  • parent
  • hideshow 4 child comments
  • [–] [S] 15 points 1 year ago (1 child)
  • [–] 11 points 1 year ago (1 child)

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

  • source
  • parent
  • hideshow 2 child comments
  • [–] 6 points 1 year ago* (1 child)

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

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

    It's literally the same context that was linked to in the post?

    ...unless the post was edited to contain the dbzero link after your post. If that is the case, my bad.

    edit: yes, that's it. Mb, ignore this.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 9 points 1 year ago

    Woool our friends are back!

  • source
  • [–] 9 points 1 year ago

    Great news!

  • source
  • [–] 8 points 1 year ago* (last edited 1 year 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.

  • source
  • hideshow 6 child comments
  • [–] 6 points 1 year ago

    I have alts. No automatic sync, but you can list your alts in your profile like I do.

    On mobile make sure to use a client which makes it easy to switch between accounts (I use Thunder, which additionally shows server status in the account switcher!)

  • source
  • parent
  • [–] 6 points 1 year ago*

    It's possible to export your Subscriptions, Community/instance blocks, and saved posts/comments to an account on a different instance by exporting your account's JSON file, which you can do in your Account Settings page.

    You can then import the JSON file in that same area on your alternative backup account, so that your experience is uninterrupted. Personally I would recommend making a backup account on Sopuli.xyz or Lemmy.cafe, they'll give you the most similar vibe due to how their instances are set up.

  • source
  • parent
  • [–] 8 points 1 year ago

    Yaaaaay, welcome back y'all!

  • source
  • [–] 7 points 1 year ago
    [–] 6 points 1 year 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

  • source
  • hideshow 4 child comments
  • [–] 19 points 1 year 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.

  • source
  • parent
  • hideshow 3 child comments
  • [–] 12 points 1 year 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.

  • source
  • parent
  • load more comments (1 reply)
  • [–] 6 points 1 year 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.

  • source
  • parent
  • [–] 6 points 1 year ago

    .ca mentioned les goooooooo!

  • source
  • Hell yeah, welcome back!

  • source
  • [–] 5 points 1 year ago
    load more comments
    view more: next ›