今じゃほとんどTumblrは使ってないんだけど、なんとなく画像を取得するスクリプトを書いてみた。iPod touchに放り込んでみようかなとか思ったのよ。 とりあえずコード。 require 'open-uri' require 'rexml/document' require 'FileUtils' url = "http://ukstudio.tumblr.com/api/read?type=photo&num=50" res = open(url) doc = REXML::Document.new(res.read) total = REXML::XPath.first(doc, "/tumblr/posts").attributes['total'].to_i 0.step(total, 50){|n| image_list = [] res = open(url + "&sta