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 ComicEater Komga | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match http://localhost:3030/* | |
// @icon https://www.google.com/s2/favicons?domain=google.com | |
// @grant GM_addStyle | |
// ==/UserScript== |
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
input-gamepad=yes | |
# GAMEPAD_ACTION_DOWN | |
# GAMEPAD_ACTION_RIGHT | |
# GAMEPAD_ACTION_LEFT | |
# GAMEPAD_ACTION_UP | |
# GAMEPAD_BACK | |
# GAMEPAD_MENU | |
# GAMEPAD_START | |
# GAMEPAD_LEFT_SHOULDER |
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
--- | |
seriesFolders: | |
- seriesRoot: W:\Collection\シリーズ\ | |
queueFolders: | |
- W:\Collection\シリーズキュー\ | |
maintenanceFolder: | |
# W:\Collection\シリーズキューの準備中\ | |
G:\シリーズキューの準備中\ | |
# /tmp/シリーズキューの準備中/ | |
folderPatterns: |
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
FROM python:3.7.0 | |
RUN set -x \ | |
&& apt-get update \ | |
&& apt-get install -y espeak espeak-ng ffmpeg libsndfile1 libsndfile1-dev python python-dev python-pip python-numpy python-lxml python-beautifulsoup \ | |
&& rm -rf /var/lib/apt/lists/* | |
RUN mkdir -p /usr/src/app | |
WORKDIR /usr/src/app |
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 sys | |
import io | |
import os | |
from aqt import mw | |
from aqt.utils import getFile, tooltip | |
from aqt.qt import * | |
sys.path.append(os.path.join(os.path.dirname(__file__), "vendor")) |
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
from datetime import datetime | |
import re | |
from collections import namedtuple | |
from bs4 import BeautifulSoup | |
from anki.notes import Note | |
from aqt import mw | |
from aqt.utils import getFile, showInfo, showText | |
from aqt.qt import QAction |
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
# Copyright 2016-2020 Alex Yatskov | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
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
# -*- coding: utf-8 -*- | |
""" | |
Anki Add-on: Hint Hotkeys | |
Adds two hotkeys to the reviewer: 'H' to reveal hints one by one, | |
'G' to reveal all hints at once. | |
Based on "Hint-peeking Keyboard Bindings" by Ben Lickly | |
Copyright: (c) Ben Lickly 2012 <blickly at berkeley dot edu> |
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
from aqt import mw | |
from aqt.qt import QAction, QKeySequence | |
from anki.hooks import addHook | |
buttonText = "-------------Bulk-add Routine------------" | |
ROUTE_1_KEY = 'Ctrl+9' | |
def setupMenu(browser): | |
from importlib import reload |
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
/* KanjiVocab*/ | |
.kv_kanji_known, .kv_kana_known { | |
border: 3px solid #b6d7a2 ; | |
border-radius: 3px; | |
} | |
.kv_kanji_mature, .kv_kana_mature { | |
border: 3px solid #569056; | |
border-radius: 3px; |