Github became the web's largest font piracy site (2017)
31–40 of 145 posts
Re: Github became the web's largest font piracy site (2017)
#32Earlier quoted context omitted.
IANAL but I believe you may have a license (paid money) to use the font on your site but you may not have a licence redistribute the font. You paid for the right to air the latest UFC fight at your bar but that doesn't grant you the ability to sale DVDs of it. However a user of yours could just download the font from your web server or record the fight on their phone.
The analogy you are looking for is: You can give away DVD's of the fight inside your bar, but not outside.
Re: Github became the web's largest font piracy site (2017)
#33Wait until they find out that when people visit the finished website in their browser, it will download the font! Oh the piracy! Just like in the real world, someone handing you the keys to their car doesn't mean you own it.
The legal issue is with the repo owner putting it in the repo. The problem is that it's a violation of the copyright license , that's the only reason it's an issue. Downloading the font file from the website is included in the license, so it's fine.
Re: Github became the web's largest font piracy site (2017)
#34What's the difference between putting webfonts on your public website vs putting them on your public github? This seems like a distinction that only lawyers would care about, but I'm not a web developer (and I don't know much about webfonts) so maybe there's something I'm missing.
Re: Github became the web's largest font piracy site (2017)
#35Been doing searches for "site:github.com .ttf" for years. This is a feature not a bug.
Re: Github became the web's largest font piracy site (2017)
#36Earlier quoted context omitted.
Great article arguing why many large companies do this - https://www.arun.is/blog/custom-typefaces/
Edit- Also a fun old quiz that helps beg the question, do you really need to add a fancy font over a system font? - http://www.ironicsans.com/helvarialquiz/
That said I only missed MATTEL on that one. Helv has a few giveaways and refinements but most people don't care—though the differences Arial and other modified Helveticas do have arguably render the type less neutral.
Re: Github became the web's largest font piracy site (2017)
#37Earlier quoted context omitted.
IANAL but I believe you may have a license (paid money) to use the font on your site but you may not have a licence redistribute the font. You paid for the right to air the latest UFC fight at your bar but that doesn't grant you the ability to sale DVDs of it. However a user of yours could just download the font from your web server or record the fight on their phone.
But it's not like a webpage renders an image for you and then you rend an image: you send the user a font so that they can render the page themselves with that font. It's being distributed either way.
This is just bit coloring again: https://ansuz.sooke.bc.ca/entry/23
Re: Github became the web's largest font piracy site (2017)
#38I'm guilty of having searched GitHub's repositories for fonts I like. Using them for personal projects and wouldn't mind paying for a license if I end up loving it. Though, it begs the question: who and how will find out that you simply borrowed the font?
Re: Github became the web's largest font piracy site (2017)
#39Re: Github became the web's largest font piracy site (2017)
#40Me publishing something on Github does not grant everyone free rights to it -- in fact, copyright law says no one has rights to it unless I specifically grant those rights. This is most commonly done with a LICENSE file. The copyright rules apply to everything in the repository, including my code, and any fonts, icons or stock images. The fact something is on Github (or the internet, in general) doesn't make it public domain, you still have to abide by the license terms.
While I think the suggestion that "on github" = "piracy" is stupid, I could see a couple things that could apply:
(1) If the license for the font explicitly states it's for "use" or "distribution" on a single domain. Unless the license is clear about it, it'd really be up to lawyers to argue over whether hosting the code in a public repository on Github can be considered "use" or "distribution" -- and ultimately that argument is about one non-authenticating public URL being okay while another non-authenticating public URL is not.
(2) If I've put a commercial font in my repository along with a typical LICENSE file containing MIT/GPL/BSD/whatever without explicitly stating the fonts are not under that license, then I'm basically mis-representing the license for that font (which I should not be allowed to do).
Given that putting a font on Github is technically no different from publishing on my site in terms of someone being able to 'pirate' it, personally I think a Github repository with a proper license (not doing (2)) is fine, because the LICENSE file effectively says it's not okay to just copy that font.