Skip to content

Instantly share code, notes, and snippets.

View Animenosekai's full-sized avatar
🎐
probably watching anime

Anise Animenosekai

🎐
probably watching anime
View GitHub Profile
@Animenosekai
Animenosekai / Regarding the matter that is causing a fuss.md
Created January 28, 2024 16:39
Translation of a post made by @95rn16 (aka みけねこ、みけにゃん、Mikeneko) on the website "Pixiv Fanbox", January 28th, 2024 13:11. X (Twitter) post link: https://twitter.com/95rn16/status/1751579149322625117 | Pixiv Fanbox article link: https://mikenekoko.fanbox.cc/posts/7367782

お騒がせしている件について

Regarding the matter that is causing a fuss

いつも応援して下さりありがとうございます。

Thank you for your continued support.

この度は、私事でお騒がせしており申し訳ありません。
また、この度このような形で皆様にお知らせする形になり、重ねてお詫び申し上げます。

@Animenosekai
Animenosekai / lru.py
Created May 28, 2022 14:28
a size limited LRU cache implementation
"""
lru.py
LRU cache implementation for the translatepy project.
"""
import gc
import sys
from collections import OrderedDict