本プログラムは、「フィルタまとめ」パッケージの更新作業を効率化するためのPythonベースのGUIツールです。
NicoCache_nlディレクトリから選択したファイル・フォルダをNicoCache_nl other内のtest_nlFiltersフォルダにコピーし、その後test_nlFiltersフォルダを7z形式でアーカイブ化します。
This file contains 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
import subprocess | |
import sys | |
import ctypes | |
# 必要なライブラリのリスト | |
REQUIRED_LIBRARIES = [ | |
'PyQt5', | |
'ctypes' | |
] |
This file contains 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
import sys | |
import os | |
import json | |
import shutil | |
import py7zr | |
import subprocess | |
import pkg_resources | |
from datetime import datetime | |
from typing import Dict, List | |
from PyQt5.QtWidgets import (QApplication, QMainWindow, QWidget, QVBoxLayout, |
This file contains 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
import os | |
import sys | |
import subprocess | |
import datetime | |
from PyQt5.QtWidgets import * | |
from PyQt5.QtCore import * | |
from PyQt5.QtGui import * | |
import speech_recognition as sr | |
import pyperclip |
This file contains 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
// ==UserScript== | |
// @name JumpToPCnico | |
// @namespace http://github.com/roflsunriz | |
// @version 1.0 | |
// @description ニコニコ動画のモバイルページからPCページへ簡単に移動できるユーザースクリプト | |
// @author roflsunriz | |
// @match *://sp.nicovideo.jp/* | |
// @match *://sp.seiga.nicovideo.jp/* | |
// @match *://sp.*.nicovideo.jp/* | |
// @match *://sp.nicovideo.jp/ |
ImageCollector2は、Webページ上の画像を効率的に収集し、ユーザーに視覚的に表示し、ダウンロードリンクを提供するUserscriptです。TampermonkeyやFirefoxの右クリックメニューから起動し、収集した画像をモーダルウィンドウ内でグリッドレイアウトで表示します。
- 使用技術: Userscript (JavaScript), HTML, CSS
- リクエスト: CORS制限を回避するため、全て
GM_xmlhttpRequest
を使用。fetch
は使用しない。 - 構造: クラスベースで構造化された実装を採用。
- デバッグ: クラスは
unsafeWindow
に露出され、コンソールから操作可能。
NewerOlder