teaching creative writing with python
play

TEACHING CREATIVE WRITING WITH PYTHON Adam Parrish Chief Software - PowerPoint PPT Presentation

TEACHING CREATIVE WRITING WITH PYTHON Adam Parrish Chief Software Architect, Socialbomb Adjunct, NYU/ITP http://www.decontextualize.com/ Presentation given at OSCON 2011 Thursday, July 28, 2011 THIS PRESENTATION IS ABOUT Reading and


  1. TEACHING CREATIVE WRITING WITH PYTHON Adam Parrish Chief Software Architect, Socialbomb Adjunct, NYU/ITP http://www.decontextualize.com/ Presentation given at OSCON 2011 Thursday, July 28, 2011

  2. THIS PRESENTATION IS ABOUT Reading and Writing Electronic Text, http://rwet.decontextualize.com/ which is a course offered at NYU’s ITP . http://itp.nyu.edu/ “This course introduces the Python programming language as a tool for reading and writing digital text.” Thursday, July 28, 2011

  3. COMPUTER PROGRAMS POETRY Thursday, July 28, 2011

  4. Photo credits: Aaron Uhrmacher, Rob Dubbin Thursday, July 28, 2011

  5. BY THE END OF THIS PRESENTATION your opinion that Python is an excellent language for text processing will be reinforced; you will have some new ideas about how to incorporate programming in the classroom; and you will be convinced that creative writing and programming are in love. Thursday, July 28, 2011

  6. WHAT THE COURSE COVERS ‣ Using UNIX command-line tools (redirection, pipes) ‣ Python: Filtering lines of text ‣ Python: Building data structures from text ‣ Regular expressions ‣ Object-oriented programming ‣ Getting text from the web ‣ N-gram analysis; Markov chains; context- free grammars Thursday, July 28, 2011

  7. WHAT THE COURSE DOES NOT COVER typography and layout narrative “interactive” text natural language processing Thursday, July 28, 2011

  8. RELEVANT WORK Thursday, July 28, 2011

  9. QUENEAU photo: http://thestrangestbooksicanfind.wordpress.com/2011/04/10/cent-mille-milliards-de-poemes/ Thursday, July 28, 2011

  10. BERRIGAN, SONNETS LXV XVI Dreams, aspirations of presence! Innocence gleaned, Into the closed air of the slow annealed! The world in its mysteries are explained, Warmth comes, a slow going down of the Morning Land and the struggles of babies congeal. A hard core is formed. She is warm. Into the vast closed air of the slow Today I thought about all those radio waves Going down of the Morning Land He eats of the fruits of the great Speckle bird, One vast under pinning trembles doom ice Pissing on the grass! Spreads beneath the mud troubled ice I too am reading the technical journals, Smother of a sword Rivers of annoyance undermine the arrangements Into her quick weak heat. She Someone said "Blake-blues" and someone else "pill-head" Is introspection. One vast ice laden Meaning bloodhounds. Vast seas of doom and mud spread across the lake. Quick Washed by Joe's throbbing hands heat, She is introspection. Of her vast ice laden self under introspective heat. It is a Chinese signal. White lake trembles down to green goings There is no such thing as a breakdown. On, shades of a Chinese wall, itself "a signal." It is a Chinese signal. Thursday, July 28, 2011

  11. MELNICK, PCOET Thursday, July 28, 2011

  12. Thursday, July 28, 2011

  13. BERNSTEIN, 1–100 for i in range(1,101): print i Thursday, July 28, 2011

  14. THEORY Thursday, July 28, 2011

  15. PADGETT , CREATIVE READING Thursday, July 28, 2011

  16. CREATIVE READING CREATIVE WRITING Thursday, July 28, 2011

  17. DECONTEXTUALIZATION JUXTAPOSITION Thursday, July 28, 2011

  18. THE AFFORDANCES OF DIGITAL TEXT Computers give us tools for processing text that we haven’t had before. Can a computer program “read” a text? Can it “write” one? What are the qualities of procedurally generated text? How does it differ from “intention-typical” writing? Thursday, July 28, 2011

  19. POETS PROGRAMMERS Thursday, July 28, 2011

  20. UNITS OF TEXT CHARACTER LINE FILE Thursday, July 28, 2011

  21. CODE Thursday, July 28, 2011

  22. INPUT STREAM PROGRAM OUTPUT STREAM Thursday, July 28, 2011

  23. Rose, harsh rose, marred and with stint of petals, meagre flower, thin, spare of leaf, more precious than a wet rose single on a stem -- you are caught in the drift. Stunted, with small leaf, you are flung on the sand, you are lifted in the crisp sand that drives in the wind. Can the spice-rose drip such acrid fragrance hardened in a leaf? Thursday, July 28, 2011

  24. STDIN, STDOUT , PIPES, REDIRECTION $ sort <sea_rose.txt | tail -6 | tr aeiou e spere ef leef, then e wet rese thet dreves en the wend. yee ere ceeght en the dreft. yee ere fleng en the send, yee ere lefted Thursday, July 28, 2011

  25. SIMPLEST POSSIBLE PYTHON TEXT FIL TER import sys import java.io.*; class TextTest { for line in sys.stdin: public static void main(String args[]) { String line; line = line.strip() try { BufferedReader stdin = print line new BufferedReader(new InputStreamReader(System.in)); while ((line = stdin.readLine()) != null) { System.out.println(line); } } catch (IOException e) { System.err.println("Error: " + e); } } } Thursday, July 28, 2011

  26. Rose, harsh rose, Rose, harsh rose, marred and with stint of petals, marred and with stint of petals, meagre flower, thin, meagre flower, thin, spare of leaf, spare of leaf, more precious more precious than a wet rose than a wet rose single on a stem -- single on a stem -- you are caught in the drift. you are caught in the drift. Stunted, with small leaf, Stunted, with small leaf, you are flung on the sand, you are flung on the sand, you are lifted you are lifted in the crisp sand in the crisp sand that drives in the wind. that drives in the wind. Can the spice-rose Can the spice-rose drip such acrid fragrance drip such acrid fragrance hardened in a leaf? hardened in a leaf? Thursday, July 28, 2011

  27. SIMPLEST POSSIBLE PROCEDURAL POEM import sys import random all_lines = list() for line in sys.stdin: line = line.strip() all_lines.append(line) random.shuffle(all_lines) for line in all_lines: print line Thursday, July 28, 2011

  28. Rose, harsh rose, more precious marred and with stint of petals, meagre flower, thin, meagre flower, thin, spare of leaf, you are flung on the sand, spare of leaf, more precious you are lifted than a wet rose drip such acrid fragrance single on a stem -- you are caught in the drift. that drives in the wind. you are caught in the drift. Stunted, with small leaf, you are flung on the sand, marred and with stint of petals, you are lifted in the crisp sand in the crisp sand single on a stem -- that drives in the wind. Stunted, with small leaf, Can the spice-rose Can the spice-rose hardened in a leaf? drip such acrid fragrance than a wet rose hardened in a leaf? Rose, harsh rose, Thursday, July 28, 2011

  29. BUILDING THE CONCORDANCE import sys words = dict() for line in sys.stdin: line = line.strip() line_words = line.split(" ") for word in line_words: if word in words: words[word] += 1 else: words[word] = 1 for word in words.keys(): print word + ": " + str(words[word]) Thursday, July 28, 2011

  30. and: 1 drives: 1 : 3 Rose,: 1 Rose, harsh rose, lifted: 1 stem: 1 flower,: 1 spare: 1 marred and with stint of petals, flung: 1 Can: 1 meagre flower, thin, meagre: 1 such: 1 spare of leaf, single: 1 precious: 1 rose,: 1 with: 2 more precious in: 4 than: 1 acrid: 1 a: 3 than a wet rose stint: 1 on: 2 single on a stem -- harsh: 1 crisp: 1 you are caught in the drift. rose: 1 --: 1 caught: 1 of: 2 Stunted, with small leaf, that: 1 drip: 1 you are flung on the sand, leaf?: 1 petals,: 1 drift.: 1 sand: 1 you are lifted fragrance: 1 spice-rose: 1 in the crisp sand wet: 1 you: 3 that drives in the wind. hardened: 1 small: 1 thin,: 1 the: 5 Can the spice-rose more: 1 marred: 1 wind.: 1 are: 3 drip such acrid fragrance Stunted,: 1 hardened in a leaf? leaf,: 2 sand,: 1 Thursday, July 28, 2011

  31. N-GRAM ANALYSIS AND MARKOV CHAINS import ngram_count import sys ngram_counter = ngram_count.CharacterNGramCounter(3) for line in sys.stdin: line = line.strip() ngram_counter.feed(line) ngrams = ngram_counter.get_ngrams() for ngram in ngrams.keys(): count = ngrams[ngram] if count > 1: print ' '.join(ngram) + ": " + str(count) Thursday, July 28, 2011

  32. a r: 3 e s: 2 o f: 2 s e ,: 2 Rose, harsh rose, o n : 2 o s e: 4 s a n: 2 w i: 3 marred and with stint of petals, h a r: 2 l e: 3 meagre flower, thin, r e : 6 h s: 2 spare of leaf, a : 3 e d : 2 t e d: 2 f l: 2 l e a: 3 y o u: 3 more precious i f t: 2 e c: 2 than a wet rose t h: 6 r o s: 3 single on a stem -- p s: 2 e o: 2 you are caught in the drift. o n: 2 i n : 4 u a: 3 i t h: 2 h e : 5 w i t: 2 Stunted, with small leaf, c r i: 2 a f ,: 2 you are flung on the sand, a r e: 4 s a: 2 you are lifted t h a: 2 e a f: 3 in the crisp sand t h e: 5 d r i: 3 a n : 2 d r: 2 that drives in the wind. a g r: 2 n a: 3 o u : 3 n t: 5 Can the spice-rose i n: 3 r o: 2 drip such acrid fragrance e f: 2 s t: 2 t h : 2 hardened in a leaf? a n d: 3 o f : 2 Thursday, July 28, 2011

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend