2011-01-23から1日間の記事一覧

メモ

TOEIC http://d.hatena.ne.jp/LM-7/20070205/1170679278

Radiko関係

Radiko API関係 番組表API http://radiko.jp/epg/newepg/epgapi.php?area_id=JP27&mode=today 1:引数部分area_idは 国名:JP 都道府県コード(JIS):JP13(Tokyo) or JP27(Osaka)*1 2:引数部分mode now = 現在の放送番組 today = 今日の番組表 tomorrow …

Ruby REXML

require "rexml/document" include REXML doc = Document.new File.new("guitars.xml") doc.elements.each("guitars/make/model/color") do |element| puts element.text end