- Windows
- Git
- SoX(Sound eXchange)
- VOICEVOX
- 任意の再生デバイス
- Windows 10 Home
- git version 2.37.1.windows.1
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>VOICEVOX TALK</title> | |
| </head> | |
| <script> | |
| class Queue { | |
| constructor() { | |
| this.array = new Array(); |
| const fs = require("fs"); | |
| /** | |
| * webpack用claspプラグイン | |
| * @class {ClaspPlugin} | |
| */ | |
| class ClaspPlugin { | |
| /** | |
| * @constructor | |
| * @param {object} config |
| # Twitter認証のコンシューマキー | |
| CONSUMER_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxx" | |
| CONSUMER_SECRET = "xxxxxxxxxxxxxxxxxxxxxxxxx" | |
| # Twitter認証のアクセストークン | |
| ACCESS_TOKEN = "xxxxxxxxxxxxxxxxxxxxxxxxx" | |
| ACCESS_TOKEN_SECRET = "xxxxxxxxxxxxxxxxxxxxxxxxx" | |
| # Spotify認証のクライアントID | |
| SPOTIPY_CLIENT_ID = "xxxxxxxxxxxxxxxxxxxxxxxxx" | |
| SPOTIPY_CLIENT_SECRET = "xxxxxxxxxxxxxxxxxxxxxxxxx" |
| "--------------------------------------------------------------------------- | |
| " 検索の挙動に関する設定: | |
| " | |
| " 検索時に大文字小文字を無視 | |
| set ignorecase | |
| " 大文字小文字の両方が含まれている場合は大文字小文字を区別 | |
| set smartcase | |
| " 検索時にファイルの最後まで行ったら最初に戻らない | |
| set nowrapscan |
| const readline =require("readline"); | |
| const Mastodon = require("mastodon-api"); | |
| const rl = readline.createInterface({ | |
| input: process.stdin, | |
| output: process.stdout | |
| }) | |
| let clientId | |
| let clientSecret |
| # -*- coding: utf-8 -*- | |
| """ | |
| ツイートのjsonデータを保存する | |
| """ | |
| import os | |
| from sys import argv | |
| import codecs | |
| import json | |
| import tweepy | |
| from dotenv import load_dotenv |
| # -*- coding: utf-8 -*- | |
| """ | |
| 特定ユーザのTwitterの画像・動画を全取得する | |
| """ | |
| import os | |
| import re | |
| from sys import argv | |
| from urllib.request import urlopen | |
| from urllib.parse import urlparse | |
| from json import loads |
| # -*- coding: utf-8 -*- | |
| """ | |
| うらら迷路帖の公式HPにあるアイコンを一括DLする | |
| """ | |
| import os | |
| from urllib.request import urlopen | |
| from bs4 import BeautifulSoup | |
| def save(url, link): |
| [ | |
| { "key": "ctrl+`", "command": "workbench.action.toggleSidebarVisibility" }, | |
| { "key": "ctrl+\\", "command": "workbench.action.terminal.toggleTerminal" }, | |
| { "key": "ctrl+b", "command": "workbench.action.debug.continue", "when": "inDebugMode" }, | |
| { "key": "ctrl+b", "command": "workbench.action.debug.start", "when": "!inDebugMode" }, | |
| { "key": "shift+b", "command": "workbench.action.debug.stop", "when": "inDebugMode" }, | |
| { "key": "ctrl+l", "command": "editor.action.selectHighlights", "when": "editorFocus" }, | |
| { "key": "ctrl+shift+l", "command": "extension.shunt_left", "when": "editorHasSelection && editorTextFocus" } | |
| ] |