TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What kind of license is good for a rendering engine?

3 点作者 bdahz11 个月前
Hi, I&#x27;m making a rendering engine for design files &amp; vector graphics, and it is open sourced.<p>I&#x27;ve no idea what kind of license should I choose because I have both the following concerns:<p>1) What if someone steels it and claims it is theirs. Because software licenses are seldom respected in my country. Or they are just using my source code without paying me, meaning that I&#x27;m working for them for free forever.<p>2) If I choose a more strict license, e.g. including a royalty restriction, this will irritate the open source community, because everyone will think it a scam project.<p>So I have done my best to update the original license from 1.0 to 2.0, like this https:&#x2F;&#x2F;github.com&#x2F;verygoodgraphics&#x2F;vgg_runtime&#x2F;blob&#x2F;main&#x2F;LICENSE-2.0<p>But I still have no idea if it is good enough to achieve the best balance between open source and commercialization. Could you guys give me any suggestions? Thanks!

4 条评论

anbardoi11 个月前
Based on my knowledge (which I&#x27;m still a novice, so take that for what it&#x27;s worth), GPL v3.0 is fairly protective license. Although it has limits when it comes to liability, it has clauses that protect you from misappropriation and anyone who uses your rendering engine must include the very same license, and also acknowledge you as the author as per its Copyright Notice requirement. This license also has a Source Code Availability requirement, which requires that the source code for your engine be made available openly.
评论 #40633062 未加载
tonyabracadabra11 个月前
The VGG License 2.0 is pretty confusing. It offers two licenses: VGG License 1.0 for commercial use (with royalties) and Apache License 2.0 for personal use only. But if personal use doesn’t involve making money, why add the Apache License? The original VGG License 1.0 could cover both personal and non-commercial use without royalties. Disregarding whether the royalty fee makes sense, the dual licensing setup just seems unnecessary and complicates things.
评论 #40633090 未加载
gus_massa11 个月前
I don&#x27;t think it&#x27;s a scam, but it&#x27;s just not open source, that is perfectly fine.<p>It&#x27;s very hard to make money with open source projects. Why do you want to make it open source? Why not just source available?<p>Ask a lawyer, but I think you should remove the Apache for non comertial option. The Apache licence has no such option. Also someone can copy your project with the plain Apache licence for free, and then someone else can use the Apache licence and make a proffit.
评论 #40648215 未加载
brudgers11 个月前
1. This is a question for your lawyer. If you don&#x27;t have a lawyer, then it doesn&#x27;t matter what license you pick because you don&#x27;t have a lawyer to enforce it.<p>2. Any license you pick will irritate some people.<p>My advice, picking a license is pretend work. Something to do instead of building. YAGNI. Good luck.
评论 #40633539 未加载