タイッツーユーザー→タイッツァーorタイツァーorタイッツラーor着用者
フォロー数→デニール数
フォロワー数→デニーラー数
FF→デニデニ
片思いF→未開封
ブロ解→デンセン
タイツ廃人→タイ廃orイツ廃
パクリタイツ→タイツ泥棒
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use feature 'say'; | |
use utf8; | |
binmode(STDIN, ":utf8"); | |
binmode(STDOUT,":utf8"); | |
binmode(STDERR,":utf8"); | |
my $uranai_data; |
ポスト詳細のへのリンクをタイツアイコンに移動し、ポスト内容のコピペをやりやすくします。
こちらと同じ です。
タイッツーのリタイーツボタンをとりあえず使えるようにするユーザスクリプトです。 この機能は内部が変わると動作しなくなる場合があります。タイッツーは現在鋭意開発中なため、すぐに使えなくなる可能性があります。ご了承ください。 7月2日 0:00 現在は利用可能です。
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/bash | |
set -eu | |
# リタイーツ ツール(macOS専用) | |
# [使い方] | |
# 1.リタイーツしたいメッセージをコピーする | |
# 2.retaittsuu.shを実行する | |
# 3.ペーストして投稿する | |
BUFFER=$(pbpaste) |
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/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 [email protected]:mattn/bsky.git
$ cd bsky
$ go build
$ ./bsky login mamemomonga.bsky.social パスワード
$ ./bsky timeline
$ ./bsky post 'そろそろ眠くなってきたお'
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/bash | |
set -eu | |
# BlueSkyにシェルスクリプトで投稿する | |
# 必要なもの bash, curl, jq | |
# カレントディレクトリに session.json, message.json が生成されます。 | |
# これらは秘匿情報が含まれている場合があります。ご注意ください。 | |
# しのさんさん(@shino3.bsky.social), syuiさん(@syui.ai) ありがとう! | |
BKY_ID="ユーザ名.bsky.social" |