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
// ==UserScript== | |
// @name Imgur Image Link Copier | |
// @namespace imgurImageLinkCopier | |
// @version 2.0 | |
// @description Copy image link from Imgur | |
// @author roflsunriz | |
// @match https://imgur.com/* | |
// @match https://imgur.com/a/* | |
// @grant none | |
// @updateURL https://gist.githubusercontent.com/roflsunriz/1fa7e451c8d505b68454f8e0fa52520a/raw/imgur_direct_link_copier.user.js |
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
class HeatingCostCalculator: | |
def __init__(self): | |
# 電力会社ごとの料金データを更新 | |
self.electricity_companies = { | |
'東京電力': { | |
'base_fee': 935.25, | |
'rates': [ | |
{'limit': 120, 'rate': 29.80}, | |
{'limit': 300, 'rate': 36.40}, | |
{'limit': float('inf'), 'rate': 40.49} |
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
class DaikinACCostCalculator: | |
def __init__(self): | |
# 既存の電力会社データを継承 | |
self.electricity_companies = { | |
'東京電力': { | |
'base_fee': 935.25, | |
'rates': [ | |
{'limit': 120, 'rate': 29.80}, | |
{'limit': 300, 'rate': 36.40}, | |
{'limit': float('inf'), 'rate': 40.49} |
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
class JapaneseEra: | |
ERA_STARTS = { | |
"飛鳥": 592, | |
"白雉": 650, | |
"天武": 672, | |
"朱鳥": 686, | |
"大宝": 701, | |
"慶雲": 704, | |
"和銅": 708, | |
"霊亀": 715, |
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
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 |
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
import subprocess | |
import time | |
import psutil | |
import threading | |
import os | |
import socket | |
import random | |
try: | |
import tkinter as tk | |
from tkinter import ttk |
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
import tkinter as tk | |
from tkinter import scrolledtext, filedialog | |
import subprocess | |
import threading | |
import os | |
import json | |
# 言語用の辞書の定義 | |
LANGUAGES = { | |
"ja": { |
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
import os | |
import time | |
import psutil | |
import win32gui | |
import win32con | |
from subprocess import Popen | |
import tkinter as tk | |
from tkinter import ttk, messagebox | |
import winreg | |
import sys |
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
// ==UserScript== | |
// @name dAnimeNicoCommentRenderer2 | |
// @namespace dAnimeNicoCommentRenderer2 | |
// @version 4.3 | |
// @description dアニメストアの動画にニコニコ動画のコメントを流すUserscript | |
// @author roflsunriz | |
// @match https://animestore.docomo.ne.jp/animestore/sc_d_pc* | |
// @match https://animestore.docomo.ne.jp/animestore/mp_viw_pc* | |
// @grant GM_xmlhttpRequest | |
// @grant GM_setValue |
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
// ==UserScript== | |
// @name ImageCollector2 | |
// @namespace imageCollector2 | |
// @version 4.2 | |
// @description 画像を収集して表示するユーザースクリプト | |
// @author roflsunriz | |
// @match *://* | |
// @match *://*/* | |
// @connect * | |
// @connect */* |
OlderNewer