123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- /**
- * <https://y.st./>
- * Copyright © 2015 Alex Yst <mailto:copyright@y.st>
- *
- * 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 <https://www.gnu.org./licenses/>.
- **/
- $xhtml = array(
- 'title' => 'The site is beginning to show some organization',
- 'body' => <<<END
- <p>
- I finally got the links to the signature files set up on each $a[XHTML] page.
- The "Signature" link in the upper navigation isn't the most obvious place for it, as it looks like it's a link to the same file on every page, but it was the best I could come up with for now.
- The alternative was to put it down near the bottom with the copyright statement with a description of what the signature was for, but I thought that might make it sound like I am trying to discourage modification of my pages, which very much is not the case.
- The signature allows you to know it came unmodified from me, but if someone wants to modify and redistribute my work, they by all means should.
- They simply shouldn't pretend that their version came unmodified from me.
- </p>
- <p>
- With the signature links out of the way, I was able to clean up the weblog index a bit.There's more to come, but for now, the month view pages now look like little $a[ASCII] calendars and you can click on the days to go to the pages they represent.
- The calendars are built using a custom function and a pair of nested $a[PHP] <code>foreach</code> statements, so they mostly update themselves.
- The custom function is similar to a class I once built, but that class was lost when the hard died on me.
- The new function is more flexible anyway, as instead of spiting out three dimensional array-objects where the third dimension holds random pieces of information about the calendar days that I thought was useful at the time, it instead spits out two dimensional arrays populated by raw timestamps.
- This means that the function does no extra processing to obtain data that may not be needed in a given context.
- It also means that the raw time stamp is available to process in any way that is needed at the time.
- </p>
- <p>
- The plan with the $a[ASCII] calendars is to first move their source into a single file, then extend the calendar-index pages to include pages for the years.
- The single source file for the calendar pages will basically just look for which directories need to be populated by an index, then glean information from the file names to figure out which month/year the index should represent.
- The year indexes will pretty much be the same as the month indexes, except that they will have up to twelve calendar pages on them.
- To aid in placement of these pages to best utilize the space, I'll make them float around a bit with $a[CSS], shifting as needed based on the width of the page.It will be a simple touch that will leave the page still looking mostly unstyled, but it will look better for anyone with $a[CSS] enabled in their Web browser.
- As usual, nothing here will depend on $a[CSS] to function, and it will degrade gracefully.
- If $a[CSS] is disabled, calendar pages will not be displayed beside each other, instead being displayed above and below one another.
- </p>
- <p>
- It's worth noting that the calendars require a fixed-width font to display nicely.
- Most Web browsers that do not use $a[CSS] are text-based browsers, which tend to use a fixed-width font, so I don't anticipate any issues.
- Graphical Web browser tend to not use fixed-width fonts by default, but the $a[CSS] on this site fixes that.
- </p>
- <p>
- <a href="http://www.joshwoodward.com/">Josh Woodward</a> released another demo today, but I was much too busy to look into it.
- I haven't had time to check out his other new songs yet either, but if he keeps up these regular updates, I'm sure to not forget about his music that is sitting in my backlog waiting for me to get to it.
- </p>
- <p>
- GitHub finally got back to me.
- They confirmed that my other three cries for help did not make it into their system, as I feared.
- My guess is that their Web form attempts to send the support request via email to some other system with the return address pointing back to the user's in box.
- Because I had accidentally entered an address in an invalid format, the letter was probably being rejected.
- </p>
- <p>
- I can't get into <a href="ircs://irc.volatile.club:6697/">Volatile</a> any more.
- As soon as I join, I am booted from the network for excess flood before I can even say a thing.
- I think the network has been misconfigured and has started treating my channel joins as messages.
- I autojoin eighteen channels, so that many "messages" all at once may be considered flooding.
- </p>
- <p>
- I tried AndStatus one last time, but as before, it crashed my mobile, so I removed it and installed Tinfoil For Twitter.
- Tinfoil For Twitter's interface seems a bit buggy, though the application just acts as a wrapper for Twitter's mobile site, so it may be Twitter's mobile site that's actually buggy.
- In any case, Tinfoil For Twitter doesn't seem like a viable option unless I was planning to read only (not retweet).
- I don't think I saw any other Twitter applications available besides those three.
- I might try Twitter's mobile site in the stock browser, but if that doesn't work, Twitter on mobile might not work out for me.
- </p>
- <p>
- Speaking of mobiles, Cricket told me via $a[SMS] two nights ago that if I didn't pay them by midnight, they would cut off my service.
- That was a day ahead of when they were supposed to cut it off, but I wasn't going to fight them over one day.
- However, the service didn't get cut off anyway.
- I took this to mean that in the timezone the $a[SMS] message was sent from, it was sent after midnight so it really meant that my service was good until the end of tomorrow as it should have been.
- Now, it has been over 48 hours since I received that message, and I still have service.
- I'm not complaining, but it's very odd.
- </p>
- <p>
- I've decided to put my Minetyst project on hold.
- The truth is, I've been very busy with other things.
- Even if I did find the time to work on Minetyst though, I wouldn't benefit from it.
- My current computer overheats way too quickly and shuts off if put under any sort of strain.
- And Minetest puts that strain on it.
- I could build minetyst_game and set up a server, but I would be unable to play on it.
- What would even be the point?
- </p>
- <p>
- <a href="/a/canary.txt">The government has not stolen my right to free speech today.</a>
- </p>
- END
- );
|