## READ WRITE GARDEN ##

Creative Work
Contributor: 
Year: 
2013
Publisher: 
Language: 
Publication Type: 
Record Status: 
Tags: 
Description (in English): 

## READ WRITE GARDEN ## is an erasure poem by J. R. Carpenter carved out of Ruby code and code comments by Caden Lovelace. This text was created for The Ill-Tempered Rubyist, an international anthology of poems involving computer languages, especially the RUBY language, hand-made and edited by Karen Randall in honor of the Millay Colony‘s ruby anniversary.

Pull Quotes: 

#### we want to split
#### our text into units
####
#### punctuation marks allow us
#### to treat them as words
####
#### consider the ellipsis
#### for example
####
#### spaces
#### on either side of certain

def tokenize_texts(texts)
return texts.map do |text|
text.gsub!(/(\w)([,.:;\/?!]|\.\.\.+)(\W)/i, ‘\1 \2 \3′)
text.split(‘ ‘)
end
end

#### words often come
#### after other words
####
#### we walk through our garden
#### counting pairs

def generate_frequency_table(tokenized_texts, n)
frequency_table = {}
tokenized_texts.each do |text|
text.each_with_index do |word, i|
if i+2 < text.length
# is there a word after this one?

end
end

Research Collection that references this work:

Screen shots: 
## READ WRITE GARDEN ### || J. R. Carpenter
## READ WRITE GARDEN ### || J. R. Carpenter
The permanent URL of this page: 
Record posted by: 
J. R. Carpenter