- Use
curl.exeinstead ofcurlon Windows - Issuing an (Access Token): Settings - API
- (Post Mode):、
public,home,followersorspecified - (Instance Domain): example
misskey.io
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
| [!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プログラマー |
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
| @echo off | |
| copy ichigojam-ntsc-uskbd.bin ichigojam-temp.bin | |
| copy /b ichigojam-temp.bin + files\0.bin + files\1.bin + files\2.bin + files\3.bin ichigojam-pack.bin | |
| del ichigojam-temp.bin |
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
| 'IchigoJam |
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
| 10 FOR I=1 TO 5 | |
| 20 PRINT"IchigoJam" | |
| 30 BEXT |
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
| POKE #D00,#80,#80,#80,#80,#80,#80,#80,#80 | |
| POKE #D08,#80,#80,#80,#80,#80,#80,#80,#80 | |
| POKE #D10,#80,#80,#80,#80,#80,#80,#80,#80 | |
| POKE #D18,#80,#80,#80,#80,#80,#80,#80,#80 | |
| POKE #D20,#80,#80,#80,#80,#8C,#80,#80,#80 | |
| POKE #D28,#80,#80,#80,#80,#80,#80,#80,#80 | |
| POKE #D30,#80,#80,#80,#8C,#80,#80,#80,#80 | |
| POKE #D38,#80,#80,#80,#88,#80,#80,#80,#80 | |
| POKE #D40,#80,#80,#88,#8F,#8F,#8F,#8D,#80 | |
| POKE #D48,#80,#80,#80,#80,#80,#80,#80,#80 |
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
| 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 |
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 | |
| # 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 |
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 | |
| # 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 |
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
| // 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" |