The question burning in my mind, though, is why isn’t it being released open-source?
John writes on Pressgram’s blog that, stated simply, it will not be released open-source because he said so. He, rightly, says that’s all the justification he needs to provide. I agree with that; it’s his effort so, assuming he’s not reusing any code that requires a certain licensing requirement, like WordPress with the GPL license, he gets to do with the code as he pleases. He does expand the answer to say that he wants to ship the code, so closed source it’ll be.
I don’t understand his expanded answer to the point of needing to write a post about it. I’d usually just leave a comment on his blog, but that isn’t an option in this case.
The explanation, as I read it, is that it takes longer to develop something and release it as open source than it does to develop the same thing and release it as proprietary. John mentions refactoring a fork versus starting from scratch, but you don’t have to fork anything to release a product as open source code.
I can only assume that he’s using code under some type of license that prohibits him from releasing it as open-source? If that’s the case, this makes more sense to me; although, that wasn’t mentioned at all under the rationale. He mentions in an afterthought that there may be issue with the iOS App Store and the GPL, which is a stronger explanation to me than the original, but there are other, more permissive, open-source licenses that perhaps could be a compromise pending the GPL/App Store issues.
Stated in another way, given the explanation, I don’t understand where he is coming from to the point of losing a $10k high-profile backer, except on the philosophical “I don’t want to release it open source”.
Can anyone shine light on this for me?
All of that said, I have nothing but respect for John. I’ve been a passive follower of his for some time now. My first WordPress purchase of any type (plugin, theme) was his company’s (8bit) Standard Theme. I’m just damn confused!
ADDED: To explain my point a little better, in light of John’s comment below, here’s what I’m thinking. I write some code.
php echo "I love my mom!"; ?>
I didn’t refactor anything. I wrote something from scratch. Now, I want to release the program. I can, among other options, release it:
- Open Source
- Closed Source
For open source, the code would look like this
php /* ©2013 Brandon Kraft This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. */ echo "I love my mom!"; ?>
For closed source, it could look like this:
php /* ©2013 Brandon Kraft You are allowed to use this program for personal use only. No modification, duplication, transmission, distribution, something-else-tion are allowed without the express written consent of Really Short Code Works */ echo "I love my mom!"; ?>.
My question is why some variant on the latter and not the former.
Leave a Reply