Skip to content

Instantly share code, notes, and snippets.

@kanjieater
kanjieater / past.csv
Last active August 12, 2025 12:00
past club picks
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 3.
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
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
@kanjieater
kanjieater / kanji.csv
Last active August 12, 2025 11:55
club csv
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 3.
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
@kanjieater
kanjieater / userscript.js
Last active December 22, 2023 03:05
Komga UserScript
// ==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==
@kanjieater
kanjieater / input.conf
Created February 19, 2023 21:13
Supported GAMEPAD inputs for mpv
input-gamepad=yes
# GAMEPAD_ACTION_DOWN
# GAMEPAD_ACTION_RIGHT
# GAMEPAD_ACTION_LEFT
# GAMEPAD_ACTION_UP
# GAMEPAD_BACK
# GAMEPAD_MENU
# GAMEPAD_START
# GAMEPAD_LEFT_SHOULDER
@kanjieater
kanjieater / ComicEater.yml
Last active May 28, 2024 03:34
ComicEater.yml
---
seriesFolders:
- seriesRoot: W:\Collection\シリーズ\
queueFolders:
- W:\Collection\シリーズキュー\
maintenanceFolder:
# W:\Collection\シリーズキューの準備中\
G:\シリーズキューの準備中\
# /tmp/シリーズキューの準備中/
folderPatterns:
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
@kanjieater
kanjieater / __init__.py
Created March 22, 2021 01:56
Create Sentence Cards from Books (WIP) - Better japanese parsing
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"))
@kanjieater
kanjieater / __init__.py
Last active April 11, 2021 20:05
Kindle Highlights to Anki Exporter for Japanese
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
@kanjieater
kanjieater / web.py
Created November 27, 2020 22:44
ankiconnect but without crashing on client disconnects
# 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