Archive | Gist
RSS for this section
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
youtube-md.sh
Script bash che ti permette di scaricare un video da youtube, ed estrarre l’audio come mp3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TITLE=`youtube-dl $1 -e` | |
youtube-dl $1 -o "$TITLE.flv" | |
ffmpeg -i "$TITLE.flv" -f mp3 "$TITLE.mp3" | |
rm "$TITLE.flv" |
JuliaSet with OCaml/GL
Inauguro la categoria per presentare il mio primo gist; si tratta di un semplice script per il rendering dell’insieme di Julia. Tempo fa’ avevo gia’ fatto qualcosa di simile, ho voluto reiterare l’esperienza con un linguaggio funzionale.