From 73bf74ce98432bbba49d01de3d0ecba59d01c1ea Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 5 Sep 2016 16:39:30 -0400 Subject: [PATCH] devblog --- doc/devblog/day_413__back.mdwn | 19 +++++++++++++++++++ ...___do_round_robin_downloading_of_data.mdwn | 2 ++ 2 files changed, 21 insertions(+) create mode 100644 doc/devblog/day_413__back.mdwn diff --git a/doc/devblog/day_413__back.mdwn b/doc/devblog/day_413__back.mdwn new file mode 100644 index 0000000000..ebd2335ee4 --- /dev/null +++ b/doc/devblog/day_413__back.mdwn @@ -0,0 +1,19 @@ +Back after taking most of August off and working on other projects. + +Got the unanswered messages backlog down from 222 to 170. Still scary high. + +Numerous little improvements today. Notable ones: + +* Windows: Handle shebang in external special remote program. This is + needed for [git-annex-remote-rclone to work on Windows](https://github.com/DanielDent/git-annex-remote-rclone/pull/10). + Nice to see that external special remote is getting ported and + apparently lots of use. +* Make --json and --quiet suppress automatic init messages, and any + other messages that might be output before a command starts. This was a + reversion introduced in the optparse-applicative changes over a year ago. + +Also I'm developing a plan to improve parallel downloading when multiple +remotes have the same cost. See [[todo/get_round_robin]]. + +Today's work was sponsored by Jake Vosloo on +[Patreon](https://www.patreon.com/joeyh). diff --git a/doc/todo/wishlist__58___do_round_robin_downloading_of_data.mdwn b/doc/todo/wishlist__58___do_round_robin_downloading_of_data.mdwn index 6299899e4f..2a283b3df2 100644 --- a/doc/todo/wishlist__58___do_round_robin_downloading_of_data.mdwn +++ b/doc/todo/wishlist__58___do_round_robin_downloading_of_data.mdwn @@ -3,3 +3,5 @@ Given that git/config will have information on remotes and maybe costs, it might This of course assumes that we like the idea of "parallel" launching and running of curl/rsync processes... This wish item is probably only useful for the paranoid people who store more than 1 copy of their data. + +See [[get_round_robin]] --[[Joey]]