You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

education.01.why.html 5.3KB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <!DOCTYPE html>
  2. <html>
  3. <meta charset="utf-8">
  4. <head>
  5. <style>
  6. #header
  7. {
  8. background: #856d51;
  9. padding: 0.7em;
  10. text-align: left;
  11. }
  12. #header a
  13. {
  14. color: white;
  15. text-decoration: none;
  16. padding: 0.5em 1em 0.5em 1em;
  17. }
  18. #title
  19. {
  20. color: #433729;
  21. }
  22. html
  23. {
  24. font-family: sans-serif;
  25. }
  26. body
  27. {
  28. line-height: 1.5em;
  29. }
  30. body
  31. {
  32. background: #FAFAFA;
  33. }
  34. table
  35. {
  36. border-collapse: collapse;
  37. width: 100%;
  38. }
  39. table, th, td
  40. {
  41. border: 1px solid #aaa;
  42. padding: 0.5em;
  43. margin-top: 0.5em;
  44. margin-bottom: 0.5em;
  45. }
  46. code, pre
  47. {
  48. font-family: monospace, serif;
  49. font-size: 1em;
  50. color: #7f0a0c;
  51. background: #f5f5f5;
  52. white-space: pre-wrap;
  53. }
  54. .contents
  55. {
  56. background: #FFFFFF;
  57. width: 720px;
  58. padding: 1em;
  59. margin-top: 2em;
  60. margin-bottom: 2em;
  61. border: 1px solid #E0E0E0;
  62. text-align: left;
  63. color: #444;
  64. }
  65. </style>
  66. <title>
  67. pskov_1.0.0
  68. </title>
  69. </head>
  70. <body>
  71. <div id="header">
  72. <strong id="title">PSKOV</strong>
  73. <a href="pskov_1.0.0.html">Tool</a>
  74. <a href="education.html">Education</a>
  75. </div>
  76. <center><h1>
  77. Education: 01. Why
  78. </h1></center>
  79. <center><div class="contents">
  80. <table>
  81. <thead>
  82. <tr>
  83. <th>&lt; Back</th>
  84. <th>Index</th>
  85. <th>Next &gt;</th>
  86. </tr>
  87. </thead>
  88. <tbody>
  89. <tr>
  90. <td>Not available</td>
  91. <td><a href="education.html">Education</a></td>
  92. <td><a href="education.02.deps.html">02. Dependencies</a></td>
  93. </tr>
  94. </tbody>
  95. </table>
  96. <p></div><div class="contents"></p>
  97. <p>In this document we briefly explain why <strong>PSKOV</strong> was created.</p>
  98. <p>Estimated completion time: 5 minutes.</p>
  99. <p><strong>Table of contents</strong></p>
  100. <ul>
  101. <li><a href="#why">01. Why</a></li>
  102. <li><a href="#features">02. Features</a></li>
  103. </ul>
  104. <p><a name="why"/></p>
  105. <h2 id="01why">01. Why</h2>
  106. <p>You might know there already exist quite a lot of <a href="https://medium.com/codingthesmartway-com-blog/top-static-site-generators-for-2019-26a4c8afcc05">static site generators</a>, why create another one? Because <strong>they are not good enough</strong> for <a href="http://opengamestudio.org">Opensource Game Studio</a> needs.</p>
  107. <p>Here's a list of <strong>features we don't need</strong>:</p>
  108. <table>
  109. <thead>
  110. <tr>
  111. <th>№</th>
  112. <th>Unwelcome feature</th>
  113. <th>Note</th>
  114. </tr>
  115. </thead>
  116. <tbody>
  117. <tr>
  118. <td>1</td>
  119. <td>Learning anything beyond HTML, CSS, JavaScript, and Markdown</td>
  120. <td>These technologies are enough to deliver information to users</td>
  121. </tr>
  122. <tr>
  123. <td>2</td>
  124. <td>Server side</td>
  125. <td>Nobody should be able to pull the plug on you except yourself</td>
  126. </tr>
  127. <tr>
  128. <td>3</td>
  129. <td>Installation</td>
  130. <td>We had enough updates that were never requested</td>
  131. </tr>
  132. <tr>
  133. <td>4</td>
  134. <td>Comprehensible source code</td>
  135. <td>Single file with just enough number of lines</td>
  136. </tr>
  137. </tbody>
  138. </table>
  139. <p><a name="features"/></p>
  140. <h2 id="02features">02. Features</h2>
  141. <p>Consequently, here is a list of <strong>PSKOV features</strong>:</p>
  142. <table>
  143. <thead>
  144. <tr>
  145. <th>№</th>
  146. <th>PSKOV feature</th>
  147. <th>Note</th>
  148. </tr>
  149. </thead>
  150. <tbody>
  151. <tr>
  152. <td>1</td>
  153. <td>Bare HTML, CSS, JavaScript, and Markdown</td>
  154. <td>No need for template language, web framework or anything else</td>
  155. </tr>
  156. <tr>
  157. <td>2</td>
  158. <td>Client side</td>
  159. <td><strong>PSKOV</strong> is a client side JavaScript application, it runs solely on your device</td>
  160. </tr>
  161. <tr>
  162. <td>3</td>
  163. <td>Optional installation</td>
  164. <td><strong>PSKOV</strong> is available at <a href="http://opengamestudio.org/pskov">http://opengamestudio.org/pskov</a>. However, if you want to keep <strong>PSKOV</strong> locally, you can get <strong>PSKOV</strong> single HTML file <a href="http://opengamestudio.org/pskov-201905.html">here</a> and open it locally</td>
  165. </tr>
  166. <tr>
  167. <td>4</td>
  168. <td>Comprehensible source code</td>
  169. <td><strong>PSKOV</strong> is a <a href="http://opengamestudio.org/pskov-201905.html">single HTML file</a> with less than 10000 lines of code</td>
  170. </tr>
  171. <tr>
  172. <td>5</td>
  173. <td>Decades long support (DLS)</td>
  174. <td>You can use <strong>PSKOV</strong> on both Windows 2000 and Windows 2030*</td>
  175. </tr>
  176. </tbody>
  177. </table>
  178. <p>* Windows 2030 does not (yet) exist, we simply refer to the fact that <strong>PSKOV</strong> is designed to work for operating systems released in the range of years 2000-2030</p>
  179. <p></div><div class="contents"></p>
  180. <table>
  181. <thead>
  182. <tr>
  183. <th>&lt; Back</th>
  184. <th>Index</th>
  185. <th>Next &gt;</th>
  186. </tr>
  187. </thead>
  188. <tbody>
  189. <tr>
  190. <td>Not available</td>
  191. <td><a href="education.html">Education</a></td>
  192. <td><a href="education.02.deps.html">02. Dependencies</a></td>
  193. </tr>
  194. </tbody>
  195. </table>
  196. </div></center>
  197. <script type="text/javascript">
  198. </script>
  199. </body>
  200. </html>