King Arthur: Legend of the Sword is a really, really dark movie, one of the darkest movies I have ever seen. It’s immoral to make such a movie. So, in my opinion, it’s not OK to watch.
All-in-all, will definitely never watch it again.
King Arthur: Legend of the Sword is a really, really dark movie, one of the darkest movies I have ever seen. It’s immoral to make such a movie. So, in my opinion, it’s not OK to watch.
All-in-all, will definitely never watch it again.
Definitely, Maybe is a really good movie, I especially like the ending. Romantic and inspiring. It’s debatable whether it has dark stuff in it or not so it’s absolutely fine to watch. Highly recommended movie.
All in all, will “definitely, maybe” (definitely) watch it again : ).
Serendipity is a great movie. Romantic and fun. Great story, great acting. Debatable whether it has dark stuff in it so it’s absolutely ok to watch. I highly recommend this movie.
All in all, will definitely watch again.
No spoilers in this review.
The Notebook is a good romantic movie. Little dark in it so it’s ok to watch.
All in all, will watch it again.
No spoilers in this review.
Pride & Prejudice is a good movie. Little dark in it. Not gloomy.
All in all, will watch again.
No spoilers in this review.
Everything, Everything is not a brlliant movie. First half is depressing, second half is better. I like the ending.
There is very little dark stuff in the movie so it’s ok to watch.
All in all, I will not watch it again.
Hi and welcome to my digital home. Here you can find blog posts on programming and ethics, short movie and book reviews as well as more information about me including projects I’ve worked on.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
cd /path/to/dir shopt -s nullglob for file in *.{avi,rmvb,mkv} do directory="${file%.*}" # remove file extension directory="${directory//_/ }" # replace underscores with spaces darr=( $directory ) darr="${darr[@]^}" # capitalize the directory name echo mkdir -p -- "$darr" # create the directory; echo mv -b -- "$file" "$darr" # move the file to the directory echo done |
Restore your S3 duplicity backup
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash if [ $# -lt 3 ] || [ $# -gt 3 ]; then echo 'invalid number of parameters passed' echo 'Usage: s3-restore <bucket-name> <folder-name> <output-folder>' else echo 'restoring backup' export PASSPHRASE=your_passphrase export AWS_ACCESS_KEY_ID=your_aws_access_key export AWS_SECRET_ACCESS_KEY=your_aws_secret_access_key duplicity s3://s3.amazonaws.com/$1/$2 $3 fi |
Backup a directory to S3. The script make full backups every 30 days and incremental backups the rest of the time.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash if [ $# -lt 3] || [ $# -gt 3]; then echo 'invalid number of parameters' echo 'Usage: backup <folder-to-backup> <bucket-name> <folder-name>' else echo 'starting backup' export PASSPHRASE=your_passphrase export AWS_ACCESS_KEY_ID=your_aws_access_key export AWS_SECRET_ACCESS_KEY=your_aws_secret_access_key duplicity --extra-clean --full-if-older-than 1M $1 s3://s3.amazonaws.com/$1/$2 fi |