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
@echo off | |
chcp 1252 | |
::=============================================================== | |
:: This drag-n-drop script for windows merges all mp3 Files in a | |
:: folder by dragging it onto this bat file. It can be used for | |
:: multiple folders at once which outputs one merged mp3 file per | |
:: folder. | |
:: | |
:: Installed ffmpeg is required. To use ffmpeg you need to install |
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
#!/bin/bash | |
: <<'COMMENT' | |
This script converts a text backup from RedNotebook into a csv file which can then be imported in Diarium. | |
Steps to do this: | |
1. export a backup from Rednotebook as plain text without marks | |
2. execute this script with the text file as argument | |
3. import the output csv with the migration feature in Diarium as a Daylio backup file |
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
::=============================================================== | |
:: This drag-n-drop script for windows uses ffmpeg's loudnorm | |
:: filter to correct the perceived loudness (not technical loudness) | |
:: of mp4 videos without video reencoding or changing metadata. | |
:: This will make the audio of your videos more even and you won't | |
:: have to adjust playback volume when watching. | |
:: | |
:: loudness-part from https://superuser.com/a/1637581 | |
:: | |
::=============================================================== |
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
#!/bin/bash | |
: <<'COMMENT' | |
This script takes the dataset from the Open Thesaurus project and | |
transforms it to a wordlist comparable to the original diceware list. | |
I thought the original list contains too much lines which just don't | |
make any sense and/or are hard to memorize. So my goal was to | |
automatically generate a list containing only memorable words, which | |
can then be used to add your own special characters or variations. |
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
#!/bin/bash | |
: <<'COMMENT' | |
This script takes the dataset from the Open Thesaurus project and | |
transforms it to a wordlist comparable to the original diceware list. | |
I thought the original list contains too much lines which just don't | |
make any sense and/or are hard to memorize. So my goal was to | |
automatically generate a list containing only memorable words, which | |
can then be used to add your own special characters or variations. |