New Propagandhi record "Supporting Caste" is out. Available at the usual spots. http://propagandhi.com/discography/ <3
-
"I do this too, only I use chairs and my own body and frequently tip over and hurt myself. Anything for my art" http://bit.ly/h3nYf @jkottke
Interesting that Twitter strips line breaks from the site, but not thru the api. So Twitter clients display line broke tweets properly.
def put(things=[])
things.each do |i|
puts i
end
endput("abc")
put(["abc", "def"])both work! Yaaaay, Ruby!
Surprised that my method Just Works when I pass a string OR array as an arg, then .each on that arg. I love you, Ruby.