Skip to content

Instantly share code, notes, and snippets.

feeds:
ap-jucie:
title: AP YouTube
description: Andrii's best youtube-based podcas
link: https://feeds.local/feed/ap-jucie
language: "ru-ru"
image: images/yt-example.png
sources:
- {name: "Самый Сок 2", url: https://feeds.local/yt/rss/UCbH-3GF4hWQ8Ri1KjGR8kNQ}
- {name: "Самый Сок 1", url: https://feeds.local/yt/rss/UC6DYb1p0eYsoY3PFVs35Dgw}

Keybase proof

I hereby claim:

  • I am aplsms on github.
  • I am aplsms (https://keybase.io/aplsms) on keybase.
  • I have a public key whose fingerprint is FF97 625A 7D4D 59BA 00CE 1D22 2F0A 1BE6 D6B5 7E93

To claim this, I am signing this object:

@aplsms
aplsms / split_batch_flack.sh
Created April 2, 2018 23:08 — forked from vinsentru/split_batch_flack.sh
Split a deep folders structure (like discography) containing *.cue and *.flack
find . -type f -iname "*.cue" | while read dir; do dirname=$(dirname "$dir"); echo $dirname; pushd "$dirname"; split2flac -cue *.cue *.flac; popd; done