this post was submitted on 16 Feb 2025
33 points (100.0% liked)

No Stupid Questions

37462 readers
1213 users here now

No such thing. Ask away!

!nostupidquestions is a community dedicated to being helpful and answering each others' questions on various topics.

The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:

Rules (interactive)


Rule 1- All posts must be legitimate questions. All post titles must include a question.

All posts must be legitimate questions, and all post titles must include a question. Questions that are joke or trolling questions, memes, song lyrics as title, etc. are not allowed here. See Rule 6 for all exceptions.



Rule 2- Your question subject cannot be illegal or NSFW material.

Your question subject cannot be illegal or NSFW material. You will be warned first, banned second.



Rule 3- Do not seek mental, medical and professional help here.

Do not seek mental, medical and professional help here. Breaking this rule will not get you or your post removed, but it will put you at risk, and possibly in danger.



Rule 4- No self promotion or upvote-farming of any kind.

That's it.



Rule 5- No baiting or sealioning or promoting an agenda.

Questions which, instead of being of an innocuous nature, are specifically intended (based on reports and in the opinion of our crack moderation team) to bait users into ideological wars on charged political topics will be removed and the authors warned - or banned - depending on severity.



Rule 6- Regarding META posts and joke questions.

Provided it is about the community itself, you may post non-question posts using the [META] tag on your post title.

On fridays, you are allowed to post meme and troll questions, on the condition that it's in text format only, and conforms with our other rules. These posts MUST include the [NSQ Friday] tag in their title.

If you post a serious question on friday and are looking only for legitimate answers, then please include the [Serious] tag on your post. Irrelevant replies will then be removed by moderators.



Rule 7- You can't intentionally annoy, mock, or harass other members.

If you intentionally annoy, mock, harass, or discriminate against any individual member, you will be removed.

Likewise, if you are a member, sympathiser or a resemblant of a movement that is known to largely hate, mock, discriminate against, and/or want to take lives of a group of people, and you were provably vocal about your hate, then you will be banned on sight.



Rule 8- All comments should try to stay relevant to their parent content.



Rule 9- Reposts from other platforms are not allowed.

Let everyone have their own content.



Rule 10- Majority of bots aren't allowed to participate here.



Credits

Our breathtaking icon was bestowed upon us by @Cevilia!

The greatest banner of all time: by @TheOneWithTheHair!

founded 2 years ago
MODERATORS
 

Someone found this buried in the terms and conditions of tiktok and is saying that it somehow means Facebook owns it.

What is this actually supposed to be telling me?

BSD 3-clause "New" or "Revised" License (facebook/network-connection-class)

Copyright (c) 2015, Facebook, Inc. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  1. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  1. Neither the name Facebook nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
top 5 comments
sorted by: hot top controversial new old
[–] [email protected] 40 points 5 days ago

It just means tiktok is using some open source library that facebook developed. In this case it's this: https://github.com/facebookarchive/network-connection-class

[–] [email protected] 13 points 5 days ago

what was it attached to specifically? software will use libraries from other companies. this is basically - facebook developed some library. you can use it as long as you include this notice, and dont say facebook endorses it

[–] [email protected] 7 points 5 days ago

and is saying that it somehow means Facebook owns it

owns what?

It does mean that Facebook owns the copyright to a software component that TikTok (apparently) also uses. They licensed it under a free and open source software license, so anybody (including TikTok, including you, including me) can download it and use it as part of their own software. It does not mean Facebook owns TikTok, nor that Facebook owns any other piece of software this is used in.

If you want to see more examples of similar notices: if you are using Firefox, enter about:license into your URL bar. If you are using Chrome, enter chrome://credits/ there. You'll find that these browsers, like many pieces of software nowadays, rely heavily on open source components developed by third parties.

[–] litchralee 4 points 5 days ago

This is essentially a quick rundown of open-source software licensing. The notice is saying that the TikTok app uses some software that is owned by Facebook, but that Facebook has irrevocably licensed the software such that anyone (including you or TikTok) can use and distribute that software for free, provided they follow the few rules in the BSD 3-clause license, which has three clauses: 1) include these three clauses with any source code copy of Facebook's software, 2) include these three clauses in the docs bundled with any compiled app that uses Facebook's software, and 3) do not use Facebook's name in a way that implies an endorsement or affiliation with Facebook.

TikTok can continue using that particular version of Facebook's software until the heat death of the universe, and Facebook can never come back later and demand payment from TikTok or you or anyone for that software. But Facebook is still considered the owner, because they retain the right to relicense the software under different terms, perhaps with a license that doesn't require including the copyright notice, for example. Likewise, Facebook has the right to sue to enforce the BSD 3-clause terms against anyone who isn't abiding by those terms. But it looks like TikTok is abiding, since they posted the full BSD 3-clause terms, so Facebook can't complain.

Note: Facebook could change the license for later versions of the software, but any versions prior would be unaffected. Integrating any software commercially always requires checking the license terms, and while open-source software has fairly standardized terms, diligence is still important and licenses do occasionally change.

[–] [email protected] 2 points 5 days ago* (last edited 5 days ago)

Related

Also related

It just means that tiktok is using a software component that was developed by facebook and that is publicly available for everyone to use.

You want to use it too in a project of yours? You can, but you have to add that license text somewhere!

This doesn't mean that anyone owns anything, open source software is full of these so-called "libraries" that people reuse in order to not reinvent the wheel constantly.