2015-02-01から1ヶ月間の記事一覧

Fusion Tables importRows を使用するサンプル

GAS

GASから、Fusion Tables を使用してると、すぐに何かの上限にひっかかるようでろくにinsertできない。 そこで、https://developers.google.com/fusiontables/docs/v1/reference/table/importRows を使用することにする。 前提条件 Fusion Tables API を使用…

今日の日付

GAS

var d = new Date(); d.setHours(0); d.setMinutes(0); d.setSeconds(0); d.setMilliseconds(0); てことを1行でやりたい衝動に駆られたので var TODAY = new Date( Math.floor( (new Date().getTime() - new Date().getTimezoneOffset() * 60 * 1000)/(24 * …

カレンダーの検索 Calendar.getEvents

GAS

次は Calendar.getEvents の結果がどのようになるかメモしておく。 事前に登録しておくイベント 2015/2/3 11:00 〜 13:00 実際に検索すると・・ getEvents(10:00, 11:00) => 0 getEvents(10:00, 12:00) => 1 getEvents(10:00, 13:00) => 1 getEvents(10.00, …

カレンダーの検索 Calendar.getEventsForDay

GAS

仕様はこちらを参照してもらうとして、実際の結果がどのようになるかメモしておく。 事前に登録しておくイベント 2015/2/2 18:00 〜 19:00:1時間のイベント 2015/2/3:終日のイベント 2015/2/3 15:00 〜 2015/2/4 10:00:日をまたぐイベント の3つ 実際に検…