- Use
curl.exe
instead ofcurl
on Windows - Issuing an (Access Token): Settings - API
- (Post Mode):、
public
,home
,followers
orspecified
- (Instance Domain): example
misskey.io
View Japanese.ini
This file contains 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
[!Global] | |
!LanguageID=1041 | |
!LanguageName=Japanese | |
!TranslationAuthor= | |
!TranslationAuthorEmail= | |
!TranslationDefaultFont=MS UI Gothic,8,,0,clWindowText,DEFAULT_CHARSET | |
[TFrmMain] | |
!Font=MS UI Gothic,8,,0,clWindowText,DEFAULT_CHARSET | |
Caption=P1119 CH341Aプログラマー |
View Caddy shortcut (startup)
This file contains 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
C:\carry\caddy.exe run |
View misskey.src
This file contains 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
10 LD HL,GB0 | |
20 LD DE,0FF00H | |
30 LD C,6 | |
40_PSLP: | |
50 PUSH BC | |
60 LD A,D | |
70 ADD A,1 | |
80 LD D,A | |
90 LD E,0 | |
100 LD B,144 |
View misskeyrelease.sh
This file contains 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 | |
# crontab -e | |
# */5 * * * * ~~~/misskeyrelease.sh (5 分おき) | |
FEED_URL="https://github.com/misskey-dev/misskey/releases.atom" # 参照する Feed(ATOM) | |
TEMP_FILE="/home/ユーザー/~/misskeyrelease.txt" # 最新リンクを保存するファイル | |
MISSKEY_TOKEN="01234567890123456789012345678901" # アクセストークン (設定 - API から。「ノートを作成・削除する」を有効にする) | |
MISSKEY_INSTANCE="misskey.example.com" # インスタンス名 misskey.io など | |
MISSKEY_NOTEMODE="public" # 公開モード public local followers specified |
View note-on-misskey-widget-aiscript-app.aiscript
This file contains 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
// CC0 1.0 https://creativecommons.org/publicdomain/zero/1.0/deed | |
let button = `button name` | |
let result = `test` | |
Ui:render([ | |
Ui:C:container({ | |
children: [ | |
Ui:C:postFormButton({ | |
text: button |
View note-on-misskey-play.aiscript
This file contains 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
// CC0 1.0 https://creativecommons.org/publicdomain/zero/1.0/deed | |
let result = `test` | |
Ui:render([ | |
Ui:C:container({ | |
children: [ | |
Ui:C:mfm({ text: result }) | |
Ui:C:postFormButton({ | |
text: "Note" |
View misskey-times-bot.sh
This file contains 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 | |
# crontab -e | |
# 0 * * * * ~~~/misskey-times-bot.sh (毎時 0 分) | |
# 0,30 * * * * ~~~/misskey-times-bot.sh (毎時 0 分・30 分) | |
MISSKEY_TOKEN="01234567890123456789012345678901" # アクセストークン (設定 - API から。「ノートを作成・削除する」を有効にする) | |
MISSKEY_INSTANCE="misskey.example.com" # インスタンス名 misskey.io など | |
MISSKEY_NOTEMODE="public" # 公開モード public local followers specified |
View README.md
View Caddyfile
This file contains 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
example.com | |
respond "410 Gone" 410 |
NewerOlder