Skip to content

Instantly share code, notes, and snippets.

View fukuiretu's full-sized avatar
:octocat:
Working from home

Retu Fukui fukuiretu

:octocat:
Working from home
View GitHub Profile
@fukuiretu
fukuiretu / ChatGPT.js
Created March 4, 2023 04:56 — forked from kmizu/ChatGPT.js
Google Apps Script to use ChatGPT API
function doPost(e) {
// slack appsのEvent Subscriptionsのchallenge。同期する時に利用。
var params = JSON.parse(e.postData.getDataAsString());
if('challenge' in params)
{
return ContentService.createTextOutput(params.challenge);
}
// ユーザ名とtextを取得
var userName = params.event.user;
@fukuiretu
fukuiretu / gist:581d28024e57645efab542d67311cf29
Created June 13, 2016 12:25 — forked from yomotsu/gist:00d7475651a5ed556c3f
monokai のコードハイライトで keynote にペーストしたい

python のパッケージ Pygments をインストール。

$ sudo easy_install Pygments
pygmentize -f rtf -O 'fontface=Monaco,style=monokai' path/to/file.html | pbcopy