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
#!/bin/sh | |
# PulsoidのAPIトークンは環境変数から取得 | |
PULSOID_TOKEN="${PULSOID_TOKEN:-}" | |
if [ -z "$PULSOID_TOKEN" ]; then | |
echo "⚠️ PULSOID_TOKENが設定されていません。" | |
exit 1 | |
fi |
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
# 🎉 最初のコミット | |
# 🎨 コードのスタイル | |
# ⚡️ パフォーマンス改善 | |
# 👍 機能改善 | |
# 🔥 コード・ファイルの削除 | |
# 🚑 致命的なバグ修正 | |
# ✨ 新機能の追加 | |
# 📝 ドキュメント | |
# 🚀 デプロイ | |
# 💄 デザイン |
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
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"image" | |
"image/jpeg" | |
"log" | |
"math/rand" | |
"net/http" |
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
[app] | |
background_color = "#f9f9f9" | |
border_color = "#1c1c1c" | |
text_color = "#1c1c1c" | |
sub_text_color = "#979797" | |
emphasis_text = "maroon:-:bi" | |
[tab] | |
text = "black:-:-" | |
background_color = "#f9f9f9" |
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
[app] | |
background_color = "#161821" | |
border_color = "#c6c8d1" | |
text_color = "#c6c8d1" | |
sub_text_color = "#979797" | |
emphasis_text = "#84a0c6:-:bi" | |
[tab] | |
text = "#c6c8d1:-:-" | |
background_color = "#0f1117" |
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
#!/bin/sh | |
# ツイート反映に1秒かかるので21秒に実行 | |
while [ `date +"%Y%m%d%H%M%S"` -lt `date +"%Y%m%d"`222221 ] | |
do | |
echo `date +"%Y%m%d%H%M%S"` | |
sleep 1 | |
done | |
twnyan tw |