Anime OP/ED missing from the Winter 2026 playlist.
- Arisugawa Ren tte Honto wa Onna Nanda yo ne (Ren Arisugawa is Actually a Girl)
- OP:
ED: Boku to no Himegoto
Anime OP/ED missing from the Winter 2026 playlist.
| #!/usr/bin/env bash | |
| set -e | |
| help() { | |
| echo "Usage: $0 <path-to-these.zip>" | |
| } | |
| if [ "$#" -ne 1 ]; then | |
| help | |
| exit 1 | |
| fi |
Anime OP/ED missing from the Fall 2025 playlist.
| // ==UserScript== | |
| // @name IRIT Sharelatex Custom vim keybindings for bépo | |
| // @namespace Violentmonkey Scripts | |
| // @match https://sharelatex.irit.fr:8443/project/* | |
| // @match https://sharelatex.irit.fr/project/* | |
| // @match https://www.overleaf.com/project/* | |
| // @grant none | |
| // @version 0.1 | |
| // @author Louis Royer | |
| // @downloadURL https://gist.githubusercontent.com/louisroyer/6fa5cdda217d34b3891d4d0cb5eca031/raw/overleaf_vim_keymap_bépo.user.js |
| #!/usr/bin/env python3 | |
| '''Check for synched off-vocal versions''' | |
| import os | |
| import sys | |
| import hashlib | |
| import json | |
| BUF_SIZE = 65535 | |
| OFF_VOCAL_TAG = 'c0cc87b9-55b9-40f0-878a-fbb9e34c151e' |
Anime OP/ED missing from the Summer 2025 playlist.
| local tr = aegisub.gettext | |
| script_name = tr"Trim karaoke lines" | |
| script_description = tr"Remove first and last k-tags and adjust start and end times accordingly" | |
| l_script_description = tr"Remove first k-tag and adjust start time accordingly" | |
| l_script_name = tr"Trim karaoke lines - Left" | |
| r_script_name = tr"Trim karaoke lines - Right" | |
| r_script_description = tr"Remove last k-tag and adjust end time accordingly" |
Anime OP/ED missing from the Spring 2025 playlist.
Anime OP/ED missing from the Winter 2025 playlist.
| #!/usr/bin/env python3 | |
| '''Get stats about resolution of .ass''' | |
| import datetime | |
| import os | |
| import subprocess | |
| import matplotlib.pyplot as plt | |
| import matplotlib.dates as mdates | |
| from xdg import xdg_data_dirs | |
| import yaml |