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
const spreadsheet = SpreadsheetApp.getActiveSpreadsheet(); | |
const GEMINI_API = PropertiesService.getScriptProperties().getProperty("GEMINI_API_KEY"); | |
const ERROR_COMMENT = "コメントが取得できませんでした。"; | |
function main() { | |
const now = new Date(); | |
const targetDate = new Date(now.getFullYear(), now.getMonth(), now.getDate() - 1); | |
Logger.log(`対象: ${targetDate}`); | |
// 今月のシートを取得 |
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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>WorkTube</title> | |
<!-- Read API script twice to void origin error --> | |
<script src="https://www.youtube.com/iframe_api"></script> | |
<script src="https://www.youtube.com/iframe_api"></script> |
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
/* | |
【 マウス+WASDキーによるカメラ操作 】 | |
作成者:watano | |
必ずカメラにアタッチしてください。 | |
Space : 上移動(+y) | |
Shift : 下移動(-y) | |
W : 前移動(+z) | |
S : 後移動(-z) | |
A : 左移動(-x) |