Console Blackjack in Raku

Console Blackjack in Raku

I wrote a console version of Blackjack in Raku: https://github.com/gdonald/Console-Blackjack and released it as module: Console::Blackjack

Read More...

Convert one m4a file to many mp3s

#!/bin/bash while [ $# -gt 0 ]; do ffmpeg -i "$1" 2> tmp.txt while read -r first _ _ start _ end; do if [[ $first = Chapter ]]; then read # discard line with Metadata: read _ _ chapter ffmpeg -vsync...

Read More...