Paul Schyska
Paul Schyska
@andrewchambers Any chance to get that point release 😄 ?
No worries! I'm just building bupstash for my Pi using qemu-aarch64 from my main machine, and it's a bit painful, so I want to use the nixos binary caches. Other...
@andrewchambers @joshbmarshall I've written a python script for bucket-based retention. input: - Environment variable `RETENTION_BUCKETS`, with space-separated `timedelta:count` pairs. Example: `1H:24 1D:14 1W:8 4W:24 52W:100`. Due to limitation of python's...
@andrewchambers thanks for the hint, I updated the script above. Feel free to use it in a FAQ or similar. Thanks for your work!
A word of warning: The algorithm here has issues - it keeps dropping snapshots that are good "dailies" because they aren't >=24h apart. It should rather normalize the timestamps according...
This version rounds the timestamps to the given buckets, and takes the most recent per bucket. N.B.: This is based on the bucket periods since UNIX epoch. In particular, the...
Thank you very much, that script is very useful to me :-)
rtfm'd https://github.com/carlhuda/janus/wiki/Rvm
still an issue with EDITOR="mvim -f", i.e. in git commits as it doesn't use the shell function there. It's minor, but ...
I have it after defining the wrapper functions already. I could fix it with ``` export EDITOR="unset GEM_HOME;unset GEM_PATH; mvim -f" ``` in my .zshrc but it's not pretty :)