Rezultati pretraživanja
  1. prije 8 sati

    I started a code critique of works from and around a concept I’m calling distant writing, a détournement of Franco Moretti‘s distant reading.

  2. 28. sij

    Stumbled on nano-NaNoGenMo, , the constrained-to-256-bytes-of-code variant of National Novel Generation Month. Tried a few ideas. Stumbled on this mention of a writeup of some of the entries. Delighted to see I also got a mention.

  3. 17. pro 2019.

    Attention ELO and neighboring community: the Call for Submissions for the Electronic Literature Collection, Volume 4 () is open now until March 15.

  4. 13. pro 2019.

    The follow-up post for my entry this year (123 bytes Perl Markov Chain Text generator): a cleaner code, a detailed notes on the optimization process:

    Prikaži ovu nit
  5. (2) a (Nano-NaNoGenMo) project: a <256B python program that replaces words randomly with others occurring in the same 1-word context

    python -c "from collections import defaultdict as d;import sys,random;w=sys.stdin.read().split(' ');x=list(zip(w[:-2],w[1:-1],w[2:]));y=d(list);[y[j,l].append(k) for j,k,l in x];print(' '.join(w[:2]+[random.choice(y[a,c])for a,b,c in x[1:]]))" <pg2489.txt
    Folding back the bar--wait, I was over the bed.
Though none of the most massive, it yet stood the scrutiny
tolerably well. What then glanced round the bench, and besides
the bedstead and centre table, could discover no other furniture
belonging to the head; but a rude shelf, the four walls,
and a papered fireboard representing a man maintained a god.
Such things not properly belonging to the counterpane, there...
    Prikaži ovu nit
  6. 30. stu 2019.

    It learns chains from given file then generates some more text. I used a text from my submission from NaNoGenMo Paranoid Transformer as a seed, but any other text can be used. Thanks for a great idea of ! [2/2]

    Prikaži ovu nit
  7. 30. stu 2019.

    My Paranoid NanoMarkov generator for , 120 bytes of Perl, 168 bytes full. perl -0pe's/(\r*\n)+/ /g;' nano.txt|perl -040e'=<>;=[0..2];push@{$s{"[$_..$_+2]"}},$w[$_+3]for(0..-3);for(){push@r,$s{""}[rand@{$s{""}}];print shift@r}' [1/2]

    Prikaži ovu nit
  8. 29. stu 2019.

    c=%w(p b t d k g x j f v l r m y s z) v=%w(a e i o u an en in un on a ei oi ui aw ow) t="" u=[?\s]*9+[". ",".\n\n"] q=->x{x[-2]=~/[.\n]/} 50000.times{rand(1..6).times{|i|t<<(i<1&&q[t]?c.sample.upcase: c.sample)+v.sample};t<<u.sample} q[t]||t[-1]=?. puts t

    Prikaži ovu nit
  9. 29. stu 2019.

    On almost the last day of the month I got out a (micro)nanogenmo, which at 324 bytes is not /quite/ a but is pretty close. Ladder is a little encoding poem that attempts to visualize the buffer/encoding of an image file as words! Code/writeup->

    Prikaži ovu nit
  10. 28. stu 2019.
  11. 27. stu 2019.
  12. 24. stu 2019.

    Intrigued by the idea of (writing code that generates a novel of 50k+ words) but then loving the additional challenge and extreme simplicity of (your code is <=256 chars, but can use additional text files). << !

    Prikaži ovu nit
  13. N.B. I also wrote this one on a plane, this time over the Atlantic & without wifi :) To run the code, you'll simply need any text file (ideally a Project Gutenberg novel or book of poetry) named "b" (no extension) in your working directory. Python 3 also required. [3/3]

    Prikaži ovu nit
  14. _______ python3 -c "import re;k=re.findall(r'\w+|\W+',open('b').read());n=set(k);r=lambda o,l:any(m==b and m in set('aeiou') for m,b in zip(o[::-1],l[::-1]));g={t:[j for j in n if r(t,j)]for t in n};print(''.join(w+' '+g[w].pop()if g[w]else w for w in k))" _______ [2/3]

    Prikaži ovu nit
  15. I am deeply honored that my perceived -related climate crimes ("Ghost Flights") partially inspired to create NanoNaNoGenMo, I figured it would only be fair to submit an entry for as well... [1/3]

    Prikaži ovu nit
  16. 22. stu 2019.

    That is my novel *facetious* consisting of the vocabulary of Shakespeare's complete works and Joyce's Ulysses, sorted into sentences/paragraphs according to vowel pattern. For instance 'facetious' itself is placed in a sentence with all the other aeiou words.

    Prikaži ovu nit
  17. 22. stu 2019.

    cat 100-0.txt 4300-0.txt| python -c"import collections,sys,re;d=collections.defaultdict(list);[1 for w in set(re.split('\W',())) if d[re.sub('[^aeiou]','',w.lower())].append(w)];print('.\n '.join([' '.join(d[p]) for p in sorted(d.keys())]))"

    Prikaži ovu nit
  18. 21. stu 2019.

    My 2019 entry #1 is a Nano-NaNoGenMo (an idea proposed by to generate a book with < 255 chars. It's based on this old meme.

    Prikaži ovu nit
  19. 21. stu 2019.

    That one is clearly nonsense, as there's no punctuation. This one makes much more sense. p -c 'import random as r;print(" meow".join([r.choice(",:;.?!") for _ in range(9**5)])[2:])' Much better!

    Prikaži ovu nit
  20. 20. stu 2019.
    Odgovor korisnicima

    It may veer into AI, and is in any event related: (Nano-National Novel Generation Month).

Čini se da učitavanje traje već neko vrijeme.

Twitter je možda preopterećen ili ima kratkotrajnih poteškoća u radu. Pokušajte ponovno ili potražite dodatne informacije u odjeljku Status Twittera.