Skip to content

Instantly share code, notes, and snippets.

View citrusui's full-sized avatar
📚
Resist fascism.

Avery citrusui

📚
Resist fascism.
View GitHub Profile
@citrusui
citrusui / online-mixes.md
Last active October 29, 2023 02:25
Various music mixes I have published online

"HOLO 1 PART A"

protonet-Works - Stage 3: Overdrived Pelican Highway

VHS Head - Gas Human No.1

Cobalt Road - Purgatory

Gary Low - I Want You

@citrusui
citrusui / JUKEBOX.txt
Created February 13, 2020 04:40
Every single item listed in the Jukebox from Sonic the Hedgehog Genesis for Gameboy Advance. All typos are intentional. Capitalization may not be 100% perfect, as the Jukebox only displays items in uppercase.
Background Music ===
BGM01 Zone 1
BGM02 Zone 2
BGM03 Zone 3
BGM04 Zone 4
BGM05 Zone 5
BGM06 Zone 6
BGM07 Invincible
BGM08 Got Item
@citrusui
citrusui / R2R.nfo
Last active May 5, 2021 21:05
ASCII art (taken from 3990)
ÛÛÛÛÛÛÛ
ÛÛ ÛÛÛÛ °
° ÛÛÛ ° ÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜ
° ÛÛÛÛÛ ÛÛÛ ± Û Û
° ÛÛ ÛÛÛ ÛÛÛ ° Û ²Û
± ° Û ÛÛÛÛÛ ° Û ²Û
ÛÛÛÛ ° Û ²Û
ÛÛÛÛ ÛÛ ÛÛÛÛ ° ° Û ²Û
° °± ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ ± Û ²Û
° ° ± ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ Û ²Û
@citrusui
citrusui / appleos-hashes-and-stuff.md
Created September 26, 2019 00:46
Some old files on my hard drive
@citrusui
citrusui / adobe-hashes.md
Created May 18, 2019 12:49
File hashes for older Adobe software

Due to some recent shenanigans between Adobe and Dolby, older versions of Adobe software are no longer available for download and evaluation.

Unfortunately, that means you'll need to resort to third-party websites to find copies of old Adobe software. To make sure you're getting an unaltered copy of the software you're looking for, you'll need to verify the authenticity with a hash. A list of known hashes is listed below.

NOTE: Only for evaluation/trial purposes. Don't steal software. Discontinued Adobe software is still protected under copyright law, and it is illegal to distribute copies without prior permission from Adobe. No links to the software mentioned below will be provided. Valid product keys are required to use the software unencumbered.


OS File Name SHA256
@citrusui
citrusui / split.md
Created May 9, 2019 22:23
Split surround sound into individual channels

5.1 -> 6 x Mono

ffmpeg -i in.wav -filter_complex "channelsplit=channel_layout=5.1[FL][FR][FC][LFE][BL][BR]" -map "[FL]" -compression_level 8 Front\ Left.flac -map "[FR]" -compression_level 8 Front\ Right.flac -map "[FC]" -compression_level 8 Front\ Center.flac -map "[LFE]" -compression_level 8 LFE.flac -map "[BL]" -compression_level 8 Back\ Left.flac -map "[BR]" -compression_level 8 Back\ Right.flac

7.1 -> 8 x Mono

ffmpeg -i in.wav -filter_complex "channelsplit=channel_layout=7.1[FL][FR][FC][LFE][BL][BR][SL][SR]" -map "[FL]" -compression_level 8 Front\ Left.flac -map "[FR]" -compression_level 8 Front\ Right.flac -map "[FC]" -compression_level 8 Front\ Center.flac -map "[LFE]" -compression_level 8 LFE.flac -map "[BL]" -compression_level 8 Back\ Left.flac -map "[BR]" -compression_level 8 Back\ Right.flac -map "[SL]" -compression_level 8 Side\ Left.flac -map "[SR]" -compression_level 8 Side\ Right.flac