DailyDogo 133 🐶
DailyDogo 132 🐶
DailyDogo 131 🐶
DailyDogo 130 🐶
Second day in a row where I can’t upload a new podcast episode through wavelength. @manton: Could you maybe look into this?
DailyDogo 129 🐶
.@help I can’t upload audio for some reason. The wavelength app won’t let me.
DailyDogo 128 🐶
The Early Riser Day 57 🎙🌅
More about the winter.
DailyDogo 127 🐶
The Early Riser Day 56 🎙🌅
About the seasons. Beginning of Winter.
PuppyCast 17 🐶🎙
Potty training trend positive. Training being calm when she can’t see me or my partner. A weird Ukraine part. A dog as a mirror. Sorry for this supersized episode!
DailyDogo 126 🐶
The Early Riser Day 55 🎙🌅
How did I end up here?
DailyDogo 125 🐶
The Early Riser Day 54 🎙🌅
The services in my town. We lost the only book store.
DailyDogo 124 🐶
The Early Riser Day 53 🎙🌅
Describing the surroundings of the… town? city? Three national parks.
DailyDogo 123 🐶
The Early Riser Day 52 🎙🌅
Describing the surrounding area.
DailyDogo 122 🐶
The Early Riser Day 51 🎙🌅
I continue to describe my surroundings. This time: a part of the yard.
DailyDogo 121 🐶
The Early Riser Day 50(!) 🎙🌅
Trying and mostly failing to describe my surroundings.
Using rdfind To Deduplicate Obsidian Dropbox Backups
EDIT 2022-03-01: The following still works but I can’t recommend using the aut-o-backups plugin. Its lack of features and configurability really makes it unusable for any real-world use-cases.
This might be of interest for anyone who is using the aut-o-backups plugin to automatically backup their Obsidian vault to Dropbox. The plugin is intentionally leaving out a lot of the complexity that is normally involved in dealing with backups, like pruning (only keep x backups) and deduplication. This post is about the latter.
The tool rdfind can be used to deduplicate the backups and in so doing safe A LOT of storage (especially if you have included binary files like images).
Dropbox is able to follow symlinks (or soft links) so it’s possible to deduplicate the created backups by converting duplicate files into symlinks pointing to only one file.
The following has been tested and is used on a Mac.
(Please make a backup of your backups before attempting any of this!)
- Open the terminal
- Install rdfind with Homebrew if you haven’t done so already:
brew install rdfind
- Navigate to your backups folder:
cd ~/Dropbox/Apps/Obsidian\ Backups
- Run rdfind:
rdfind -makesymlinks true .
You will get output looking similar to this:
rdfind -makesymlinks true .
Now scanning ".", found 2475 files.
Now have 2475 files in total.
Removed 0 files due to nonunique device and inode.
Total size is 467948959 bytes or 446 MiB
Removed 13 files due to unique sizes from list. 2462 files left.
Now eliminating candidates based on first bytes: removed 10 files from list. 2452 files left.
Now eliminating candidates based on last bytes: removed 0 files from list. 2452 files left.
Now eliminating candidates based on sha1 checksum: removed 2 files from list. 2450 files left.
It seems like you have 2450 files that are not unique
Totally, 223 MiB can be reduced.
Now making results file results.txt
Now making symbolic links. creating
Making 1406 links.
This can be run on regular intervals (once an hour or so) to deduplicate your backups. I use Keyboard Maestro for this: