We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 3.
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
Title,Total Book Count,Status,URL,Summary,ImageData | |
#DRCL midnight children,3,ENDED,https://anilist.co/manga/127157,"The one-shot manga preceding Sakamoto Shinichi's huge new series. Based on Bram Stoker's ""Dracula"", a gothic horror story at the end of the 19th century. | |
(Source: AnimeNewsNetwork)",https://s4.anilist.co/file/anilistcdn/media/manga/cover/large/bx127157-uMsiMKefIj4o.png | |
DOGA,,ONGOING,https://anilist.co/manga/162351,"Yote, an member of the aristocracy, is as educated as he is ignorant of the realities of the world. His first trip outside his domain was cut short when he was robbed and stabbed in the slums of Leoure, the city of the desert. Saved by a genius inventor, he finds himself implanted in a cyborg body allowing him to survive... for a year or two. The equipment is so primitive that Yote needs assistance with everything from maintenance to travel! | |
But for Yote, it’s a chance to start over, away from his castle and his narrow-minded existence. But he must first rediscover his humanity |
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
Title | Total Book Count | Status | URL | Summary | ImageData | |
---|---|---|---|---|---|---|
LILI-MEN | ONGOING | https://anilist.co/manga/154350 | A race of "succubus" that breeds human beings in the nursery, and human beings trying to eradicate them. After an eternity of time has passed since the two incompatible races began to fight, a "king" will be born who will end the battle. | https://s4.anilist.co/file/anilistcdn/media/manga/cover/large/bx154350-2gdRBDHiop1D.jpg | ||
MUJINA INTO THE DEEP | ONGOING | https://anilist.co/manga/151444 | A young assassin girl armed with a katana is hunting down her targets in a busy metropolitan city named Tsukumo. | https://s4.anilist.co/file/anilistcdn/media/manga/cover/large/bx151444-r7ecTp7qdFkM.jpg | ||
Raiden-18 | 1 | ENDED | https://anilist.co/manga/33444 | Taking a break from her popular, brilliant, Fullmetal Alchemist; Arakawa-sensei drew up a one-chapter humorous Shounen story about a Frankenstein tournament, for mangazine GX to commerate their 5th year anniversary. Note: Chapter count includes the epilogue. | https://s4.ani |
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 3.
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
Title,Total Book Count,Status,URL,Summary,ImageData | |
14歳,20,ENDED,https://anilist.co/manga/42549,"A SF/horror manga that takes place in 2200. At a chicken manufacturing company, a certain chicken transforms into a supermutant named Chicken George. And so, a nightmarish journey through a twisted version of the future unfolds.",https://s4.anilist.co/file/anilistcdn/media/manga/cover/large/bx42549-I3zJdF2VBCwy.jpg | |
20世紀少年,22,ENDED,https://anilist.co/manga/30003,"Humanity, having faced extinction at the end of the 20th century, would not have entered the new millennium if it weren't for them. In 1969, during their youth, they created a symbol. In 1997, as the coming disaster slowly starts to unfold, that symbol returns. This is the story of a group of boys who try to save the world. | |
For Kenji, a simple convenience store manager who once dreamed of becoming a rock 'n' roll musician, a host of memories from his past come rushing back when one of his childhood friends mysteriously commits suicide. Could this new dea |
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 |