Brian J. Murrell

Results 536 comments of Brian J. Murrell

> In my opinion Nextcloud Android app has quite reasonable default settings, so I do not change much after restoration. But I really miss the ability to export/import auto-upload folders...

If the Nextcloud devs are not even going to go to the effort of flipping a switch so that Android backs up the data (it is encrypted, so security FUD...

Given that this kind of garbage cleanup isn't something that you would enable by default makes me think that not everyone would want it which makes me wonder what I...

> These thing can never turned on by default. How do we know just because a container is stopped that it should be removed? There could be data in there...

Ahhh. More light is shed. I'm coming to realize that assuming `gwb = gspread.oauth().open(…)` every time you reference `gwb.worksheet()`, as a reference to get some property such as `gwb.worksheet('Sheet1').id` that...

FWIW, I have discovered https://github.com/burnash/gspread/blob/27f4804accd517c4623b8b1378b08c9ef26902de/gspread/http_client.py#L516 😄 I have even cribbed that whole class into my own source and added a debug print when the backoff is happening and funny enough,...

As an example, I am manually adding the following to the commit messages when I pull: ``` Changes: * abcdefg - bla bla bla * deadbaf - more bla bla...

> ```shell > systemctl enable --user --now podman.socket podman.service > sudo ln -sf /run/user/$EUID/podman/podman.sock /var/run/docker.sock > ``` Didn't seem to work for me. Ultimately, shouldn't the docker socket path (i.e....

> * `ln -sf` is too weak to survive a `docker -v :/var/run/docker.sock`, something like mount --bind is better In fact `ln -sf` (i.e. the workaround above) is working. But...

> > This is just regular docker here isn't it? > > No it's the go client library of docker to send api requests a lot of docker cli behavior...