05.xhtml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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' => 'I give up',
  21. 'body' => <<<END
  22. <p>
  23. I&apos;ve decided to quit writing about all the petitions and campaigns in my inbox.
  24. It potentially brings some light to them, but I can&apos;t keep up.
  25. Writing about things from my inbox is the sole reason I can&apos;t keep up with my inbox and is often the reason I don&apos;t keep up on my weblog and is a contributing factor in the slow growth of this site&apos;s non-weblog sections.
  26. I should probably put up a page with a list of important mailing lists at some point, but for now, if you want to hear about activist campaigns, sign up for a few mailing lists such as the $a[EFF], Daily Kos, and CREDO Action lists.
  27. I may still write about some campaigns haphazardly, or if they are particularly important or personal to me, regularly.
  28. However, I renounce all responsibility for acting as a source of political information.
  29. </p>
  30. <p>
  31. I put quite a bit of time today into fixing up Minetyst.
  32. The subgame now has four main biomes, though only one of them has its vegetation fully programmed.
  33. I had been trying to avoid splitting the sound effects off into their own module, but in the end, I had to do it to keep things even remotely sane without making a monolithic module that deals with most of the game.
  34. Everything is incredibly interconnected, and I&apos;m starting to see why minetest_game is still set up the way it is.
  35. I think keeping everything separate will be fairly easy after the initial cleanup, but it takes effort to pull everything apart.
  36. Minetest originally was not customizable.
  37. Default inherited all the nodes from before modules were introduced, and from there, it absorbed any new code that made sense to include with any of its existing code.
  38. Default began life as the complete game and it has never really recovered from that.
  39. </p>
  40. <p>
  41. My <a href="/a/canary.txt">canary</a> still sings the tune of freedom and transparency.
  42. </p>
  43. END
  44. );