GitHub Projectsを利用して日々のタスクを管理する。
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
; Ctrl + FでONとOFFをトグル | |
^f:: | |
Toggle := !Toggle | |
if (Toggle) { | |
SetTimer, PressKeys, 1000 ; 0.7秒ごとにPressKeysサブルーチンを呼ぶ | |
} else { | |
SetTimer, PressKeys, Off ; タイマーをオフにする | |
} | |
return |
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
# download.py | |
認証が必要なリポジトリを取得する場合は環境変数$HUGGING_FACE_ACCESS_TOKENにAccess Tokenの値を設定してください。 | |
# 初期セットアップ | |
pip install huggingface-hub | |
# 実行方法 | |
python download.py ${repo_id} ${revision_id} | |
例. |