guyzmo

Results 48 issues of guyzmo

For git services that supports it (like gitlab or gerrit), implement a simple mechanism to: - list/fetch comments and votes on current request - add a comment and vote on...

enhancement
help wanted

for example, current template could be: ```jinja {% title, *body = repository.commit().message.split('\n') %} ### Title {{ title }} ### Body {{ '\n'.join(body) }} {% match = re.match(repository.head.name, r'^(?P\d+).*') %} {%...

enhancement
backlog

Current code offers a clean and easy to implement API. But as more features gets integrated, the more the help page becomes cluttered. So a redesign of the code would...

design

for example, instead of typing: ``` git hub request create ``` make it possible to type: ``` git hub pr create git hub pr c git hub mr c git...

enhancement

The current [command dispatch code](https://github.com/guyzmo/git-repo/blob/devel/git_repo/kwargparse.py) has been designed to avoid an over-complex main function. But it was after coding it that I discovered that the author of docopt implemented a...

enhancement
design

Current documentation is way too verbose (29 lines, cf [`__doc__`](https://github.com/guyzmo/git-repo/blob/devel/git_repo/repo.py#L3-32)), and it could be written as follows (16 lines!): ``` Usage: {self} [--path=] [-v...] fork [/] [] [--clone] {self} [--path=]...

enhancement

**Describe the bug** I just spent 2 days trying to figure out this issue, as it broke the production build. Basically, that caused the node VM to crash with the...

**Is your feature request related to a problem? Please describe.** I have an object which type is alike the following: * `const type MyErrorType = Record` the record's key is...

enhancement

1. disables the `getContextAttributes` from context on web platform cf #147 2. changes the `ref` assignment for GLView. There's an issue opened on expo-gl, because I believe it should be...

When running the Signature module, it crashes on the web: ``` (index):8 Uncaught (in promise) TypeError: Illegal invocation at WebGL2RenderingContext.o.default.async.t.getContextAttributes ``` The issue is thrown from [that line](https://github.com/expo/expo-pixi/blob/master/lib/components/Signature.js#L141): ``` const...