Skip to content

Instantly share code, notes, and snippets.

View hellocym's full-sized avatar

Harry Chen hellocym

  • Shanghai
View GitHub Profile
@pkpc99
pkpc99 / BA_SpineFilenames.md
Last active September 25, 2025 03:05
Blue Archive Spine Name Codes/Filenames

updated occassionally

CH

filename character
CH0058_spr Hifumi (Swimsuit)
CH0060_spr Tsurugi (Swimsuit)
CH0063_spr Hina (Swimsuit)
CH0064_spr Iori (Swimsuit)
CH0066_spr Shun (Small)
CH0069_spr Mika
@dixyes
dixyes / conv.py
Last active November 7, 2023 13:35
GA402R anime matrix with python
from PIL import Image, ImageDraw, ImageOps, ImageStat
"""
convert picture to matrix data uint8 array
this script is too slow...
maybe we should rewrite it in np things
@unfa
unfa / FOSS-deverb.md
Created November 15, 2021 13:32
Open-Source Reverb Removal

The open-source audio production toolset is becoming more and more powerful and feature-complete with every year passing.

Something still missing from it are artist-friendly tools for reverb removal (both realtime and offline). Here's a list of existing open-source projects that could be used as basis for such tools:

https://github.com/HoerTech-gGmbH/openMHA https://github.com/fgnt/nara_wpe https://github.com/helianvine/fdndlp https://github.com/sas91/jhu-neural-wpe https://github.com/sjlee7/speech-dereverberation

library(V8)
library(rvest)
library(hrbrthemes)
library(tidyverse)
ctx <- v8()
pg <- read_html("https://www.tiobe.com/tiobe-index/")
html_nodes(pg, xpath=".//script[contains(., 'series:')]") %>%
Video.prototype.slowDown = function (options, input, cb) {
var self = this,
audio = fs.createWriteStream('/tmp/' + uuid() + '.wav'),
video = fs.createWriteStream('/tmp/' + uuid() + '.mov'),
streamed = {},
run_proc = null;
input.on('data', function (data) {
audio.write(data);