02.xhtml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * <https://y.st./>
  4. * Copyright © 2015 Alex Yst <mailto:copyright@y.st>
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <https://www.gnu.org./licenses/>.
  18. **/
  19. $xhtml = array(
  20. 'title' => 'Detangled default',
  21. 'body' => <<<END
  22. <p>
  23. Minetest_game&apos;s <code>default</code> module is monolithic.
  24. Almost every other module for Minetest has to depend on it for one thing or another, so if you want to remove something from it, you don&apos;t know what else you&apos;re going to break.
  25. This is one of the problems I intend not to have in my subgame.
  26. I spent a few hours working on Minetyst, and I finally have default detangled, broken into several smaller pieces.
  27. Most of these pieces still have frayed edges and are not yet ready for use, but the hardest part of the work is complete.
  28. </p>
  29. <p>
  30. My <a href="/a/canary.txt">canary</a> still sings the tune of freedom and transparency.
  31. </p>
  32. END
  33. );