Skip to content

Instantly share code, notes, and snippets.

View YamimakiReru's full-sized avatar

YAMIMAKI, Reru YamimakiReru

View GitHub Profile
@YamimakiReru
YamimakiReru / circle-of-5ths.svg
Last active December 14, 2023 04:30
SVG五度圏表
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@YamimakiReru
YamimakiReru / do-rclone.exsample.yml
Last active December 14, 2023 15:50
夜御牧さん用 rclone 同期バッチ
# do-rclone.ymlにリネームして使う
targets:
- src: foo
dest: bar
- src: baz
dest: qux
exclude: .tmp/**
# Eメール転送用スクリプト
@YamimakiReru
YamimakiReru / gas-webapp-email-forwarder.gs
Last active December 13, 2023 13:43
GAS Webアプリ: POSTリクエストで受け取ったEメールデータをGmailで送り付けるスクリプト
/**
* GAS Webアプリ
* POSTリクエストで受け取ったEメールデータをGmailで送り付けるスクリプト
*
* 使用例:
* curl -L https://script.google.com/macros/s/[デプロイID]/exec -F "to=foo@example.com" -F "subject=はろー" -F "body=はろー"
*
* レスポンス例:
* {"status":"success","body":"正常にメールを送信しました"}
*