ポスト詳細のへのリンクをタイツアイコンに移動し、ポスト内容のコピペをやりやすくします。
こちらと同じ です。
ポスト詳細のへのリンクをタイツアイコンに移動し、ポスト内容のコピペをやりやすくします。
こちらと同じ です。
タイッツーのリタイーツボタンをとりあえず使えるようにするユーザスクリプトです。 この機能は内部が変わると動作しなくなる場合があります。タイッツーは現在鋭意開発中なため、すぐに使えなくなる可能性があります。ご了承ください。 7月2日 0:00 現在は利用可能です。
| #!/bin/bash | |
| set -eu | |
| # リタイーツ ツール(macOS専用) | |
| # [使い方] | |
| # 1.リタイーツしたいメッセージをコピーする | |
| # 2.retaittsuu.shを実行する | |
| # 3.ペーストして投稿する | |
| BUFFER=$(pbpaste) |
| #!/bin/bash | |
| set -eux | |
| # GitHubのOpenID Connect ID プロバイダーのサムプリントの取得 | |
| # 参考URL | |
| # https://docs.aws.amazon.com/ja_jp/IAM/latest/UserGuide/id_roles_providers_create_oidc_verify-thumbprint.html | |
| # https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services | |
| # https://qiita.com/minamijoyo/items/eac99e4b1ca0926c4310 | |
| PROVIDER_URL="https://token.actions.githubusercontent.com" | |
| JWKS_URL=$(curl -s "$PROVIDER_URL/.well-known/openid-configuration" | jq -r .jwks_uri) |
以下をコピペする
curl -L https://gist.githubusercontent.com/mamemomonga/4663dde65896402ca99a13d63afbeb64/raw/9045827bae598b3658f21204027ef0831d39358e/setup.sh | sudo bash
https://github.com/mattn/bsky
$ git clone git@github.com:mattn/bsky.git
$ cd bsky
$ go build
$ ./bsky login mamemomonga.bsky.social パスワード
$ ./bsky timeline
$ ./bsky post 'そろそろ眠くなってきたお'
| #!/bin/bash | |
| set -eu | |
| # BlueSkyにシェルスクリプトで投稿する | |
| # 必要なもの bash, curl, jq | |
| # カレントディレクトリに session.json, message.json が生成されます。 | |
| # これらは秘匿情報が含まれている場合があります。ご注意ください。 | |
| # しのさんさん(@shino3.bsky.social), syuiさん(@syui.ai) ありがとう! | |
| BKY_ID="ユーザ名.bsky.social" |
| #include <SPI.h> | |
| // DIPスイッチとボタンの状態をUSBシリアル出力で表示する。ボーレートは115200 | |
| // DIPスイッチがONになっている数を7セグで表示する。またいずれかのボタンが押されたら小数点を表示する | |
| // ビルトインLEDは LED_BUILTIN で定義されているが | |
| // SCKと同じなので使わないこと | |
| // 秋月電子のサンプルとはバイトオーダが逆なので注意 | |
| // これ: MSBFIRST / 秋月: LSBFIRST |
| #define SRR_LD 21 | |
| #include <SPI.h> | |
| // ビルトインLEDは LED_BUILTIN で定義されているが | |
| // SCKと同じD13なので使わないこと | |
| uint8_t pv; | |
| void srrStart() { | |
| SPI.begin(); |