This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Detected memory leaks! | |
| Dumping objects -> | |
| {20101} normal block at 0x0975DDF8, 32 bytes long. | |
| Data: < ? > 00 00 00 00 00 00 F0 3F 00 00 00 00 00 00 00 00 | |
| {20100} normal block at 0x0975A698, 24 bytes long. | |
| Data: < X @ $ > 00 00 00 00 00 58 83 40 00 00 00 00 00 00 24 C0 | |
| {19936} normal block at 0x0975D808, 32 bytes long. | |
| Data: < ? > 00 00 00 00 00 00 F0 3F 00 00 00 00 00 00 00 00 | |
| {19935} normal block at 0x0975A608, 24 bytes long. | |
| Data: < X @ $ > 00 00 00 00 00 58 83 40 00 00 00 00 00 00 24 C0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding: utf-8 | |
| module Radiko | |
| class Radiko | |
| # channel | |
| # TBS .. TBSラジオ | |
| # RN1 .. ラジオNIKKEI第1 | |
| # RN2 .. ラジオNIKKEI第2 | |
| # RBC .. RBCiラジオ | |
| # CRK .. ラジオ関西 | |
| # RKB .. RKBラジオ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding: utf-8 | |
| module Radiko | |
| class Radiko | |
| # channel | |
| # TBS .. TBSラジオ | |
| # RN1 .. ラジオNIKKEI第1 | |
| # RN2 .. ラジオNIKKEI第2 | |
| # RBC .. RBCiラジオ | |
| # CRK .. ラジオ関西 | |
| # RKB .. RKBラジオ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding: utf-8 | |
| require "radiko/radiko" | |
| include Radiko | |
| c "山下達郎のサンデー・ソングブック", "Sun 14:00", %w(FMT RADIONERRY FMO E-RADIO FMAICHI FMGIFU) | |
| c "Z-POP COUNTDOWN 30", "Sat 13:00", %w(ZIP-FM) | |
| c "ライムスター宇多丸のウィークエンドシャッフル", "Sat 22:00", %w(TBS RAB YBC RBC) | |
| c "菊地成孔の粋な夜電波", "Sun 20:00", %w(TBS IBC YBC RFC BSN) | |
| c "オレたちゴチャ・まぜ", "Sun 1:50", %w(MBS) | |
| c "ライムスター宇多丸とマイゲーム・マイライフ", "Sun 0:0", %w(TBS) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding: utf-8 | |
| require "radiko/radiko" | |
| include Radiko | |
| def c(channel, wday) | |
| Radiko::Radiko.new(channel, last_wday(wday + 1, 1, 0)).astr(channel) | |
| end | |
| def junk(title, wday) | |
| print title, "\n", | |
| c("TBS", wday), " ", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding: utf-8 | |
| require "radiko/radiko" | |
| include Radiko | |
| def c(channel, wday) | |
| Radiko::Radiko.new(channel, last_wday(wday + 1, 1, 0)).astr(channel) | |
| end | |
| def ann(title, wday) | |
| print title, "\n", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding: utf-8 | |
| module Radiko | |
| class Radiko | |
| # channel | |
| # TBS .. TBSラジオ | |
| # RN1 .. ラジオNIKKEI第1 | |
| # RN2 .. ラジオNIKKEI第2 | |
| # RBC .. RBCiラジオ | |
| # CRK .. ラジオ関西 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| i = Image.pick_from_library | |
| puts i.square.gray |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "radiko/radiko" | |
| def c(channel, wday) | |
| Radiko.new(channel, last_wday(wday + 1, 1, 0)).astr(channel) | |
| end | |
| def ann(title, wday) | |
| print title, "\n", | |
| c("LFR", wday), " ", | |
| c("CBC", wday), " ", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "radiko/radiko" | |
| def c(channel, wday) | |
| Radiko.new(channel, last_wday(wday + 1, 1, 0)).astr(channel) | |
| end | |
| def junk(title, wday) | |
| print title, "\n", | |
| c("TBS", wday), " ", | |
| c("RBC", wday), " ", |