-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rasp #NNNGM #18
Comments
I can't recall anyone generating random chars and putting them through autocorrect before.
That's a question for the Chairperson of the Nano-NaNoGenMo Subcommittee @nickmontfort |
I like how my abbreviated name is quickly going to exceed 256 characters itself! Since we’re taking a very classic perspective here and working with the idea of the “novel,” as opposed to say an artist book or something like that, the writing/generation process is in the editorial department. After editorial the text goes to design where what is officially called the “layout stuff” happens. Then, there is some sort of a production process which can range from just uploading a PDF to printing a book block and binding it in a cover. With that in mind, the 256-character Nano-NaNoGenMo generator just has to do the editorial work. It doesn’t have to lay the text out (design), nor does it have to send it to the printer or anything like that (production). In fact the design/layout stage doesn’t have to be automated at all, although even in books that are written by humans, it almost always is. I’d say it’s a bonus, though, if you end up with a generated novel that has already been through design. You could possibly cheat on this by starting with something in HTML format and processing that instead of a text file. |
Definitely agree, even without the nanonano limit, people have often applied manual formatting and layout afterwards. (I'd also welcome works partially written by computer, partially written or edited by human.) |
Finished! With 50.612 words.
Result (HTML page): Rasp. A novel – Code/Documentation Excerpt
And I made a poem in German language, Haspeln, with this technique. |
Excellent! I particularly like this paragraph:
|
This is an entry for Nano-NaNoGenMo. I started to write something in Bash/Shell that uses /dev/urandom (method normally used for password generation) and a really crude auto-correction with Hunspell. So far 117 characters, which means there is some more space left for tinkering.
cat /dev/urandom | tr -dc " thingy" | fold -w 6 | head -c 270 | tr '\n' ' ' | tr -s " " | hunspell -U -d en_USO
A first sample:
I modified the dictionary, took out everything starting with or only consisting of capital letters.
Also, I think that someone must have done something similar before. Please let me know.
Does code used for layout stuff also count in the limit of 256 characters?
The text was updated successfully, but these errors were encountered: