index.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?php
  2. /*
  3. Frequently asked questions
  4. Copyright (C) 2015 Leah Rowe <info@minifree.org>
  5. This document is released under Creative Commons Attribution-ShareAlike
  6. 4.0 International license.
  7. See <https://creativecommons.org/licenses/by-sa/4.0/legalcode>
  8. */
  9. header('Content-type: text/html; charset=utf-8');
  10. ob_start();
  11. include_once "../common/variables.php";
  12. include_once "../common/functions.php";
  13. ?>
  14. <!DOCTYPE html>
  15. <html>
  16. <head>
  17. <link rel="stylesheet" type="text/css" href="../common/css/main.css" />
  18. <title>Please do not use GitHub!</title>
  19. </head>
  20. <body>
  21. <div id="pagetop">
  22. <h1>Please do not use GitHub!</h1>
  23. <p>
  24. Please do not use GitHub to host libreboot.
  25. Libreboot is a free software project, so this is only a request, and not a restriction on the software.
  26. </p>
  27. <p>
  28. <a href="../git/">Back to the Git page</a>
  29. </p>
  30. </div>
  31. <div>
  32. <h2>What's wrong with GitHub?</h2>
  33. <ul class="c">
  34. <li>
  35. GitHub itself is proprietary software (<a href="http://tom.preston-werner.com/2011/11/22/open-source-everything.html">Tim reasons it's for business</a>)
  36. </li>
  37. <li><a href="https://www.gnu.org/philosophy/javascript-trap.html">GitHub serves non-free JavaScript code</a></li>
  38. <li>
  39. <a href="https://github.com/github/choosealicense.com/pull/177">A patch</a> to <a href="http://choosealicense.com/">choose a license</a> was received with some hostility.
  40. </li>
  41. <li>Tim (GitHub CEO) really likes to talk about freedom, but makes the following claims about the GPLv2/3:</li>
  42. </ul>
  43. <blockquote>
  44. <p>
  45. ...The GPL is not focused on freedom. It's too long.
  46. Too many restrictions. -- Tom Preston-Werner OSCON2013
  47. </p>
  48. </blockquote>
  49. <p>or how about:</p>
  50. <blockquote>
  51. <p>
  52. Notice that everything we keep closed has specific business value
  53. that could be compromised by giving it away to our competitors.
  54. -- source: Tom Preston-Werner's <a href="http://tom.preston-werner.com/2011/11/22/open-source-everything.html">blog</a>
  55. </p>
  56. </blockquote>
  57. <p>
  58. GitHub simply uses Free Software for its own benefit, releasing source code under a free license
  59. only when suited to it's business goals; they are quite happy to violate the rights of their users, for profit.
  60. </p>
  61. <p>
  62. By contrast, the libreboot project adheres strictly to the goals of the Free Software movement, which
  63. seeks to eliminate proprietary software to the point where all software is free.
  64. </p>
  65. <p>
  66. The opinions expressed by Tom Preston-Werner of GitHub are incompatible with those of
  67. the libreboot project. Users and developers of <em><a href="http://www.gnu.org/philosophy/free-sw.html">free software</a></em> are strongly advised not to use GitHub, for any of their projects.
  68. </p>
  69. </div>
  70. <div>
  71. <h2>Where should I host and share my code?</h2>
  72. <p>
  73. <a href="../git/#githosting">Read this section on the libreboot website</a> for a list of recommended Git hosting providers.
  74. </p>
  75. <h3>References:</h3>
  76. <p>
  77. [<a href="http://tom.preston-werner.com/2011/11/22/open-source-everything.html">1</a>] <em>Open Source (Almost)</em> - http://tom.preston-werner.com/2011/11/22/open-source-everything.html
  78. </p>
  79. <p>
  80. [<a href="https://github.com/github/choosealicense.com/pull/177">2</a>] <em>Choose A License GPL patch</em> - https://github.com/github/choosealicense.com/pull/177
  81. </p>
  82. <p>
  83. [<a href="http://lists.nongnu.org/archive/html/gnu-linux-libre/2014-08/msg00013.html">3</a>] <em>linux-libre choosealicense issue</em> - http://lists.nongnu.org/archive/html/gnu-linux-libre/2014-08/msg00013.html
  84. </p>
  85. </div>
  86. <?php
  87. include "../common/footer.php";
  88. ?>
  89. </body>
  90. </html>
  91. <?php
  92. $strHtml = ob_get_clean();
  93. echo miniHtml($strHtml);
  94. ?>