Daniel Watkins

Results 41 comments of Daniel Watkins

My .zshrc workaround (to bind to Ctrl-E instead): ```sh eval "$(mcfly init zsh | sed "s,\^R,^E,")" ```

It looks like this is a problem in `cmd_push()`, as `upstream` is never set to anything but None before passing it to `bzr()`; it is assumed that having a `known_upstream`...

I was building it with `git-buildpackage --git-upstream-tree=branch --git-upstream-branch=origin/master`. Potentially if you tag 0.4.6 (I think), and then use `git-buildpackage --git-upstream-branch=0.4.6` then it might work. It, by default, looks for the...

This is something that I just hit when trying to build something that matches an existing implementation. I'll use the type signature workaround described, but wanted to register that I'd...

Ugh, actually, I just realised that the example given involves writing a whole bunch of type boilerplate just to be able to append ".xml" to a pattern. (I had assumed...

Currently, I think we can do this by calling the `._json_body_()` method, and writing the result out to disk. Really, I think all I'm asking is that this is moved...

Digging in to this a bit further, the dict returned by `_json_body_` isn't actually JSON-serialisable because it contains a `datetime` object. So maybe something like a new `.to_json()` or `.points_as_json()`...

(I'm going to spend a bit of time experimenting on getting this working.)

Applying this to 5178a9a097a324d84608cf3c32a5071c637ae049 seems to have done the trick for me, I have a working connection between my module-using local system and remote wireguard-go-using OpenVZ system! This is obviously...

Thanks for the thoughtful review, much appreciated! Yep, I agree that compilation on-host is unnecessary (in the majority of cases, at least) and that removing it would simplify matters substantially.