thumbnail of img.png
thumbnail of img.png
img png
(794.94 KB, 1280x720)
Added pic related sus amogus to Deletedbooru:
> u https://derpinxghr4jpjk4h4acjxyrx4rcwtk7ggjyt32uyaxgodqq7cfewuqd.onion/images/3289499 >d 2024-01-28T12:03:23Z >s >i >t safe, youtube thumbnail, among us, video game, rarity, baby pony, mare, snot, unicorn, human, mop, cotton swab, pony, baby

 >>/9366/
> YT channel with a focus on PMVs of non-popular pop music tracks
Would be neat if there was a pony music video of "OMYGOD!" by Kate Nash ( https://iv.ggtyler.dev/watch?v=LZVkNcaOV9w ), also an underground pop music track, one that I liked in the past. ("Foundations" by her sounds too British.)

 >>/9465/
> offline in the past days occasionally
It might be getting OOM'd; it needs likes 400 to 600 MB of free memory, at a minimum.

 >>/9466/
> or make my own thing
I used more "script kiddie-tier garbage" to do that:
> $ wget -O- https://ia801308.us.archive.org/22/items/812163582552678363137859911067/brony.fandom.com/warc/brony.fandom.com-pl-wiki-Brony_Wiki-2021-04-22-a6d5f855-00002.warc.gz | zcat | head --bytes=22111000 | grep -ai -A999111222 "WARC-Target-URI: https://videos-fms.jwpsrv.com/0_6081ca75_0x7653d6e55a22393cd692875b10aa3c8281ba09c8/content/conversions/cGlKNUnj/videos/5WhciD6T-30813215.m4a" > f.bin # grep -A = lines after, but what's an option for only showing the match plus a certian amount of bytes after?
> $ vim f.bin # delete "WARC-Type: request" parts, edit out everything that isn't the wanted "WARC-Type: response"; no ending newline ":set nofixendofline" and save it ":w 5WhciD6T-30813215.m4a"
> $ truncate --size=7183963 5WhciD6T-30813215.m4a # remove last newline byte if needed, filesize was 7,183,963 (check last byte with tail and xxd)
> $ sha1sum 5WhciD6T-30813215.m4a
> db4e684f1ad8d2fa5e583e52c30b127ecdc413be [...]
> $ curl -sL https://web.archive.org/web/20220916043927if_/https://cdn.jwplayer.com/videos/jdrSOuAm-LiJWxqIn.m4a | sha1sum -
> db4e684f1ad8d2fa5e583e52c30b127ecdc413be -
> $ # SHA1 hashes match to wbm
That M4A file was kinda funny. (Pipe into vim: "$ echo something | vim -".) Consideration with grep (works on a file but not a stream, I think):
> -m NUM, --max-count=NUM ; Stop reading a file after NUM matching lines. [ https://man7.org/linux/man-pages/man1/grep.1.html ]
as for "only showing the match plus a certain amount of bytes after", someone said "grep is line based" = can't do that with grep, but you can do " | grep -ai -A1234567890 pattern | head --bytes=1000". I assume grep will quit outputting lines once head reads the top 1K bytes.