Ronuk Raval
Ronuk Raval
Makes `stitch` work on windows.
[Try Coffee-React Link](https://jsdf.github.io/coffee-react-transform/?code=PGRpdiB7Li4uQHByb3BzLmZ1bmMoYSxiKX0gLz4%3D) This compiles properly: ``` ``` This does not (note the offending space between the `a,` and `b`): ``` ```
[Try Coffee-React link](https://jsdf.github.io/coffee-react-transform/?code=PEZvbwogIGNsYXNzTmFtZT0iRm9vIj4KCiAgPEJhcgogICAgY2xhc3NOYW1lPSJCYXIiPgoKICAgIHtleHByfQogIDwvQmFyPgo8L0Zvbz4%3D) If I have JSX that looks like: ``` {expr} ``` This gets compiled to: ``` React.createElement(Foo, { \ "className": "Foo"}, React.createElement(Bar, { \ "className": "Bar"}, (expr) )...
When [`mail_exchanger_lookup()`](https://github.com/mailgun/flanker/blob/7676b1918ef245a5d05c12d5b574025c4ec31c73/flanker/addresslib/validate.py#L115) fails to connect to the mail exchanger for a specific domain, it sets the corresponding cache entry to `False` ([line 149](https://github.com/mailgun/flanker/blob/7676b1918ef245a5d05c12d5b574025c4ec31c73/flanker/addresslib/validate.py#L149)). However, [`lookup_exchanger_in_cache()`](https://github.com/mailgun/flanker/blob/7676b1918ef245a5d05c12d5b574025c4ec31c73/flanker/addresslib/validate.py#L157) looks for the **string** `'False'`...
More important, it would be useful to provide tab completions for things like `git checkout refs/nomad/*`. https://github.com/rraval/nix/blob/23172a3ae878650c02f2748f5fad7e2da39d0c7f/box/nixos/fish.nix#L19 has something that works for fish. --- Less important, it be nice to...
Tab completion scripts may wish to execute `git-nomad` in non-`.git` directories and it's annoying to have to redirect stderr. ``` $ git-nomad ls --print=ref --quiet Error: command failure $ cd...
`git nomad sync` assumes a single coordination repository. Example: ```mermaid flowchart BT node1 origin node2 origin node3 origin ``` There should be a decent workflow for multi-remote setups: ```mermaid flowchart...
Right now we print everything by delegating to `git nomad ls`. Also, here's what `git fetch origin` puts out, look to mimic the format: ``` From github.com:rraval/repo 909a311..b5f4895 master ->...
We currently hand roll our own printing. It would be nice to reuse `git log --oneline -1 refs/nomad//` to have git format each ref. Ideas: --- The `%S` format specifier...