OBSでブラウザを挿入し、次のように設定します。
- URL: 'https://live.misskey.io/live_chat/${username}'
- 幅: 620 (お好きにどうぞ)
- 高さ: 1080
- カスタム CSS: 次のファイルをコピーしてください
フォントはGenEi Univer Sans
とNasu
が指定されていますので、お好みで変えてください。
import json | |
import mimetypes | |
import os | |
import shutil | |
# apng知らんらしいので教えてあげる | |
mimetypes.add_type('file/apng', 'apng') | |
mimetypes.add_type('file/apng', 'png') |
OBSでブラウザを挿入し、次のように設定します。
フォントはGenEi Univer Sans
とNasu
が指定されていますので、お好みで変えてください。
// !!事前にフォローリストのエクスポートをすることを強く推奨します(備考.md参照)!! | |
// 1. 実行(▶) | |
// 2. 出力された最終ユーザーIDとIDリストをメモ帳とかにコピペ | |
// 3. 「1.」と「2.」を「完了したっぽい」が出るまで繰り返す | |
// 4. script2へ移る | |
#API_LIMIT = 30 | |
#inputStrings = readline( |
### { | |
name: "猫去勢" | |
version: "2" | |
author: "ThinaticSystem" | |
description: "nyaizeを強制解除します" | |
permissions: [] | |
config: {} | |
} | |
@deNyaize(text) { |
The package that linked you here is now pure ESM. It cannot be require()
'd from CommonJS.
This means you have the following choices:
import foo from 'foo'
instead of const foo = require('foo')
to import the package. You also need to put "type": "module"
in your package.json and more. Follow the below guide.await import(…)
from CommonJS instead of require(…)
.'use strict'; | |
/** | |
* @callback BeforeShutdownListener | |
* @param {string} [signalOrEvent] The exit signal or event name received on the process. | |
*/ | |
/** | |
* System signals the app will listen to initiate shutdown. | |
* @const {string[]} |
### { | |
name: "API test" | |
version: "0.0.0" | |
author: "syuilo" | |
description: "Plugin description here" | |
permissions: ["write:notes"] | |
} | |
Mk:api("notes/create" { | |
text: "test" |
interface INode { | |
type: string; | |
children?: INode[]; | |
[x: string]: any; | |
} | |
interface BooleanLiteral extends INode { | |
type: 'bool'; | |
value: boolean; | |
} |