Skip to content

Instantly share code, notes, and snippets.

@roflsunriz
roflsunriz / user-script-notify.md
Created October 5, 2025 10:08
ユーザースクリプトについてお知らせ
  • web-page-enhancement-scriptsリポジトリに移行しました。
  • distフォルダから各ユーザースクリプトを選び、右上のRawボタンから購読してください。
@roflsunriz
roflsunriz / player_jiggle.pyw
Created May 10, 2025 12:04
player_jiggle : Jiggle software for player
import tkinter as tk
from tkinter import ttk
import threading
import time
import importlib
import subprocess
import sys
# 必要なパッケージの自動インストール
def install_package(package):
@roflsunriz
roflsunriz / VOICEVOX_SETUP.md
Last active May 8, 2025 13:26
training_app : 自分専用筋トレアプリ

ずんだもん音声でのトレーニングアプリのセットアップ

VoiceVoxのセットアップ

筋トレアプリで「ずんだもん」の声を使用するには、VoiceVoxという音声合成ソフトウェアを別途インストールして実行する必要があります。

1. VoiceVoxのダウンロードとインストール

  1. VoiceVoxの公式サイトからソフトウェアをダウンロードします:
@roflsunriz
roflsunriz / comment_sender.pyw
Last active May 10, 2025 12:43
comment_sender : ゲーム用コメント送信プログラム(Enter,Ctrl+Vをシミュレートして送信)
import sys
import subprocess
import json
import tkinter as tk
from tkinter import simpledialog
import time
import pkg_resources
import threading
import pyperclip
import os
@roflsunriz
roflsunriz / NexusLauncher_PyQt.pyw
Last active March 31, 2025 11:28
NexusLauncher_PyQt : Start, Forceibly Close, Restart, Auto Close for Winstep Nexus
import subprocess
import sys
import ctypes
# 必要なライブラリのリスト
REQUIRED_LIBRARIES = [
'PyQt5',
'ctypes',
'pywinstyles'
]
@roflsunriz
roflsunriz / speechRecognition_plan.md
Last active May 8, 2025 13:15
speech_recognition_app : 日本語と英語対応の音声認識アプリ,Cursorのプロンプト入力用

音声認識プログラム 実装仕様書

概要

本プログラムは、Pythonを用いてマイクからの音声をリアルタイムで認識し、テキストに変換するGUIアプリケーションです。英語と日本語の音声認識に対応し、認識結果をテキストフィールドに表示、クリップボードへのコピー、プレーンテキストファイルへの保存が可能です。ユーザビリティを向上させるため、直感的なアイコンボタンや動作ログ表示を備えます。

開発環境

  • 言語: Python 3.x
  • ライブラリ:
    • speech_recognition: 音声認識
  • pyperclip: クリップボード操作
@roflsunriz
roflsunriz / WSAInstallAPK.pyw
Last active August 14, 2025 02:23
WSAInstallAPK.py : GUI Program that performs installing APK for WSA (Windows Android Subsystem)
import tkinter as tk
from tkinter import scrolledtext, filedialog
import subprocess
import threading
import os
import json
# 言語用の辞書の定義
LANGUAGES = {
"ja": {
@roflsunriz
roflsunriz / taskkill_wizard_gui.pyw
Last active March 22, 2025 14:16
taskkill_wizard_gui : タスクキルをGUIで出来るウィザード
import tkinter as tk
from tkinter import ttk, scrolledtext, messagebox
import psutil
import os
import win32gui
import win32process
import win32con
import win32api
from PIL import Image, ImageTk
import io