Elliott Shugerman
Elliott Shugerman
Those needing encrypted backups may be interested in [my fork of this project](https://github.com/eeshugerman/postgres-backup-s3). It adds support for this feature (though not w/ tar files). Please note that a number of...
Hi, thanks for the PR! #17 is a usecase I'm interested in supporting. But I can't accept this as is; there are far too many unnecessary, unrelated changes. If you...
Hi, sorry for the delay. Thanks for the breakdown of changes here. I don't want to get rid of `install.sh` unless we have a good reason to, so I'm not...
is there any way to set `doom-modeline-window-width-limit` to a function to be evaluated in realtime, ie `'window-total-width`? am i correct that this would address this issue, or at least would...
I think you misunderstood what I was suggesting, but I don't blame you because I now realize that my suggestion was basically nonsense. So nevermind; sorry for the diversion!
I just tried out `shell-mode` for the first time in a while and the evil integration there is seamless! Anyone know how it works and if the same approach could...
Good idea! I'll give this a try. Even if `--branch-label` for some reason doesn't work out, just replacing `create_revision_branch.py` with some `env.py` code would be a huge improvement. I thought...
So to start, I'm trying to automate the `--head` flag, but I'm a little confused. The [docs](https://alembic.sqlalchemy.org/en/latest/api/autogenerate.html#customizing-revision-generation) describe how to customize revision generation using the `process_revision_directives` arg to `context.configure` in...
Thanks, that did the trick! `alembic revision --head vX.Y.Z`, seems to work as expected, as does `script.head = 'vX.Y.Z'` in `process_revision_directives`. However, since branch labels apply to all downstream revisions...
> that should be, --head vX.Y.Z@head, it shouldn't work the other way once that revision is not a "head" anymore. I think the @head part makes this semantically clear, it...