this post was submitted on 13 Jan 2025
15 points (94.1% liked)

Asklemmy

44337 readers
853 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_[email protected]~

founded 5 years ago
MODERATORS
 

I mean can't someone steal code from the devices file manager? or create his own fork?(Sorry for bad English)

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 6 points 2 days ago (3 children)

Idk why but this close source stuff feels shady thanks for answering my question

[โ€“] [email protected] 7 points 2 days ago

That's how most companies operate.

[โ€“] [email protected] 5 points 2 days ago

In addition to the other listed reasons, going open source is an extra step.

The code has to be compiled to run on your system (if it's written in a non-interpreted language, which a huge portion of software is).

You can't just run the source code on your computer. And getting your customer's computer to compile the source code itself would require a massive amount of overhead.

So, to distribute your software, you're always almost always going to distribute an already compiled version, and you'd have to choose to give the customer the uncompiled version as just a separate thing on the side. And there's no real reason to do that for most companies.

[โ€“] [email protected] 3 points 2 days ago

It's interesting to have closed source for some use cases, (sensitive or top secrets programs for instance) but open source should definitely be the default rather than the exception in my opinion.