• 0 Posts
  • 19 Comments
Joined 2 years ago
cake
Cake day: June 12th, 2023

help-circle
  • That’s a thin ice you’re walking here… Some people appreciate the support, some people don’t like when work contacts get into their personal feelings territory.

    It’s highly dependent on how close your interpersonal relationship is with co-worker, what I’d avoid for sure is suddenly closing the distance just because you know he is trans and you can tell recent events are affecting him.




  • Opinionated piece with no substance or analysis, author already has some answer in mind and is trying to spin everything around to support it.

    Just to illustrate:

    That’s why Zuckerberg bought Instagram: he had been turning the screws on Facebook users, and when Instagram came along, millions of those users decided that they hated Zuck more than they loved their friends and so they swallowed the switching costs and defected to Instagram. In an ill-advised middle-of-the-night memo to his CFO, Zuck defended spending $1b on Instagram on the grounds that it would recapture those Facebook escapees:

    https://www.theverge.com/2020/7/29/21345723/facebook-instagram-documents-emails-mark-zuckerberg-kevin-systrom-hearing

    In this very link, in court-released emails Zuck states they’re buying Instagram because they have good growth and Facebook mobile usability is shit. It’s just 2 different types of social networks, back in 2012 you couldn’t even DM on Instagram, it wasn’t a replacement for Facebook by any means and vice versa. Zuck was just not happy that people spend their phone screen time outside of his reach.



  • Programming knowledge is largely irrelevant, as in to gain sensible benefits from it you have to be generalist software engineer with decade+ of experience of seeing it all. Then yeah, you can read any code, any stack traces and figure out the intent of developers of the system and what is undocumented/incorrectly documented.

    Focusing on one particular language is the right and wrong answer at the same time. Wrong in a sense that you’ll have to pick up other languages along your journey anyway and right because you need to achieve mastery in one of them to get to more advanced programming topics. Pick a language that you have fun using and don’t care about anything else.

    As for what to learn for self-hosting… Linux (pick a distro, let’s say ubuntu LTS w/o gui, ssh there and get comfortable with it. It includes installation, filesystems, RAID setups), networking, HTTP/S (that’s the main thing you’ll be interacting with as self-hoster and knowing various nuances of reverse proxying is a must), firewalling, basics of security and hardening, docker, monitoring, backups.














  • Are all these thousands of lemmy servers useless?

    almost. It’s actually worse than that - when you subscribe to a community from your server it will fetch like 20 posts and that’s it, you’ll get only new stuff after that, so there’s no possibility to do a full mirror of selfhosted, for example, if you started your instance today and didn’t fetch posts and comments manually.

    ActivityPub per se is just a spec on s2s/s2c communication, which is not a great thing since in many cases it assumes single source of truth, which potentially puts huge load on more popular instances.

    I think a quick and dirty hack to this could be the following - each linked instance may maintain cache of announces (so there would be benefit of just forwarding original http signed requests w/o being afraid of malicious actor), which your instance could pull, this way you could populate your mirror without overloading the original source.
    Distributed activities propagation though… Let’s say there are some design steps involved to make this truly distributed, however I feel like it’s possible.