• 1 Post
  • 35 Comments
Joined 2 years ago
cake
Cake day: July 10th, 2023

help-circle







  • The fediverse is less like Twitter and more like email. You sign up for email through a provider, like Gmail or Outlook, and they have control over your access to the other users and pay the costs of running your hardware, the same way you sign up with a particular domain on Lemmy or Mastodon. Like email, you have an inbox that receives messages, and communities are like email groups you join and send messages to. And, like email, it’s based on standards that everyone has agreed on through a group called the w3 consortium.













  • Kinda. What you’re referring to is “decompilation”, which is the process of taking the output of a compiler and trying to reverse-engineer the code that produced it. But decompiled code is really hard to read and modify, because it isn’t what humans wrote, it’s what the compiler translated it into, and that can have some unexpected changes than are mostly irreversible. And, since it’s closed source, if you somehow manage to make a change, you can’t re-release it – you don’t have the license to do so.

    With open source, you see the same code as the maintainers, so it has the high-level programming concepts and good variable names, and you have permissions to fork and release your own version.