123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?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' => 'An adult coloring club',
- 'body' => <<<END
- <p>
- I started out my day helping my mother in her classroom again.
- We did not stay long this time though.
- After that, we went to an adult coloring club meet-up at the local library.
- It appears that while today, the first meet-up, was scheduled on the second Saturday of the month, subsequent meet-ups will occur on the third Saturday of each month.
- Even if she does not go, I think that I will attempt to attend these, both to get out of the house and to work on my coordination in my left hand.
- While I am mostly-ambidextrous, I still have issues with more intricate tasks with my left hand and I want to fix that.
- If I had time, I would probably take up cross-stitching again just to practice using my left hand.
- </p>
- <p>
- I had a passing thought today.
- As I now control the household $a[DNS], I could block websites and services that are not privacy-friendly by simply making their $a[DNS] records return <code>NXDOMAIN</code> results.
- I decided that this would be censorship though, and would therefor be an evil thing for me to do.
- Taking control of the <code>//test.</code> $a[TLD], which $a[IANA] allocated for such use, is one thing.
- I should not abuse my newfound power though, even if it is only power over the machines in this one house.
- </p>
- <p>
- I want to set up some sort of registry here within the house where any of us can register domains.
- I tried to find some software that takes care of that, but my search came up empty.
- I think that I will try building my own solution for this.
- I will likely use the local $a[IP] addresses of the machines on the network to determine the owner of the machines, and cause any domain registered to be bound to that person.
- Domains registered would then only be manageable on machines owned by that person, no password or user name required.
- The question is, do I want these domains to be hierarchal or not? If I choose a hierarchal modal, I will probably need to have the script set up a separate file for each second-level domain, then have it concatenate the files to rebuild the main zone file each time someone updates any of the records.
- If I choose a non-hierarchal model, I will probably instead have edits to the main zone file directly, and comments in the file will keep track of who owns each domain.
- </p>
- <p>
- On second thought, maybe I will just make edits to the zone file by hand for now.
- I am the only person in the house that cares enough about $a[DNS] to want any domain names anyway.
- </p>
- <p>
- I wrote in to the person in charge of scheduling appointments at the local community collage, though I do not axpect to hear back until Monday.
- </p>
- <p>
- Speaking of email, I do not recall what my beef with Evolution is.
- I have not been having any trouble with Evolution this time, and it seems to be a lot better email client than Sylpheed.
- For one thing, I do not need to bother with Sylpheed's silly search directories; I can perform actual searches directly in my inbox.
- Sylpheed's in-inbox searching was highly limited.
- I could not even perform a basic search for emails sent to a specific one of my addresses! In Evolution, I can just enter my email address in the search bar, and the emails that I am looking for pop right up.
- The number of emails (read or unread) is also visible without me performing a search in Evolution.
- In Sylpheed, the number of emails in my inbox is only visible when I perform a search that matches at least one email, in which case I am told that X out of Y emails match, so I know that I have Y emails in my inbox.
- </p>
- <p>
- My <a href="/a/canary.txt">canary</a> still sings the tune of freedom and transparency.
- </p>
- END
- );
|