This file contains 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
#!/bin/bash | |
LANG=ja_JP.utf8 | |
pid=$$ | |
date=`date '+%Y-%m-%d-%H_%M'` | |
#playerurl=http://radiko.jp/player/swf/player_4.1.0.00.swf | |
playerurl=http://radiko.jp/apps/js/flash/myplayer-release.swf | |
playerfile="/tmp/player.swf" | |
keyfile="/tmp/authkey.png" |
This file contains 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
#!/usr/bin/env ruby | |
def mail(to_addr, subject, body) | |
open("|mail -s '#{subject}' #{to_addr}", "w") {|io| io.puts body} | |
end | |
file_name = ARGV[0] | |
mail '[email protected]', "Radiko 録音完了 #{file_name}" , | |
"Download http://ey-office.net/radiko/#{file_name}.mp3\r\n" + | |
"Download http://ey-office.net/radiko/#{file_name}.flv" |
This file contains 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
const apn = require('apn') | |
const OPTIONS = { | |
cert: "./PushNotificationAlert-cert.pem", | |
key: "./PushNotificationAlert-key.pem", | |
production: false | |
} | |
const MESSAGES = {"DOUBLE": "お腹がすいた!", "LONG": "たすけてぇ〜"} | |
exports.handler = (event, context, callback) => { | |
let message = "" |
This file contains 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
const TODO_PATH = '/Notes/TODO.md' | |
const fetch = require('isomorphic-fetch') | |
const Dropbox = require('dropbox').Dropbox | |
const dbx = new Dropbox({ accessToken: process.env["TOKEN"], fetch: fetch }) | |
const mmdd = (d) => `${d.getMonth() + 1}/${d.getDate()}` | |
exports.handler = async (event, context, callback) => { | |
try { | |
const task = event.task ? event.task : "TEST" |
This file contains 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
#!/bin/bash | |
LANG=ja_JP.utf8 | |
pid=$$ | |
date=`date '+%Y-%m-%d-%H_%M'` | |
outdir="/var/www/html/radiko" | |
rsspath="/var/www/html/radiko.rss" |
OlderNewer