1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?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' => 'It is possible to become free of your Social Security number',
- 'body' => <<<END
- <p>
- My project from yesterday creates pronounceable onion addresses, but the onion addresses it produces are not easily <strong>*readable*</strong>.
- It is hard to see where one word ends and another starts.
- I am not sure if this is because the words are so short or because there are so many words present without any spaces between them.
- Today, I put together a new project that tackles the problem in a different way.
- The first version of it uses eschalot to search for onions beginning with eight-letter words and saves them to disk.
- A second script is then used to check the second half of the onion address to see if it is also an eight-letter word.
- I quickly decided to rework the code and and complicate it a bit.
- The new version uses eschalot to search for onion addresses starting with words eight to sixteen characters long, once again saving them to disk.
- The second script can then be used to compare the onion address against a series of word lists to determine the length of the initial word.
- The remaining part of the onion address is then compared against the word lists to see if it makes up a single word, and throws out any addresses that does not make the cut.
- It no doubt still trows out many pronounceable onion addresses, but at least this system does not require hand-sorting thousands of onion addresses spit out by eschalot.
- So far, the scripts have not judged any onion addresses to be usable, so perhaps they are too strict.
- </p>
- <p>
- I stumbled upon information today that said that <a href="https://www.answers.com/Q/Can_you_get_a_credit_card_without_a_Social_Security_number">one can have their Social Security number revoked</a>.
- When I think about the fact that I even have a Social Security number, it makes me a bit angry.
- The Enumeration at Birth Program was used to trick my parents into thinking that they had to get a Social Security number assigned to my siblings an I, as it has been used to trick many parents and as it was set up to do.
- I do not want a Social Security number though, and view the thing as a curse, not a boon.
- I thought that the assignment was irreversible; that I was stuck with this number forever.
- However, it seems that by sending a letter to the right place, I can fix this stupid mess.
- I will not act just yet, my mother would probably be pissed off if she ended up thinking that she needed my Social Security number for something later.
- I will get this fixed in due time though.
- </p>
- <p>
- From the sound of it, I may be headed back to Springfield again with my mother tomorrow, depending on her energy level.
- The primary goal this time will not be hauling stuff home, though we will no doubt do that too, but to get the house cleaned up enough for a real estate broker to come in.
- </p>
- <p>
- My <a href="/a/canary.txt">canary</a> still sings the tune of freedom and transparency.
- </p>
- END
- );
|