Mislav Marohnić

Results 63 issues of Mislav Marohnić

To improve the experience of opening issues in this repository using the web interface, we'd like to adopt [issue forms](https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms). This would allow us to add checkboxes such as “Have...

enhancement

This allows us to retry a failed release build without having to bump the git tag. Useful for regenerating release assets after changing secret values. Example use: ```sh gh workflow...

Currently, our GraphQL query implementations use at least three different libraries: - `api.Client.GraphQL()` - our [rudimentary, in-house query approach](https://github.com/cli/cli/blob/4a3ef50d2d799c9063bc39e0125ae72b990afce1/api/client.go#L273-L275) that executes string queries and parses them to Go structs. This...

tech debt
core

My object was private and I wanted to grant the READ permission to authenticated users: ``` ruby policy = S3Object.acl(name, bucket) policy.grants

This change relies on `git ls-remote --tags --sort=version:refname` to sort git versions in a semver-compatible mode and alleviate the need to scan for version numbers manually. The new approach selects...

When dynamically defining methods from a string to be eval'd: ``` rb M.module_eval

Fixes redrawing prompts on Windows so that: 1. The line before the 1st survey prompt isn't accidentally deleted, 2. The survey prompt is properly redrawn after recording an answer. For...

Terminal applications should assume that when `TERM=dumb` is set, the terminal has no color support, no cursor moving support, nor support for redrawing parts of the screen. The width of...

This removes: 1. Manual conversion of ANSI escape codes to Windows syscalls, and 2. Windows-specific Cursor implementation in favor of the 3rd-party `go-colorable` module that implements all those conversions plus...

Survey does not work under mintty (e.g. Git Bash) on Windows. This is due to mintty not supporting some Console APIs that survey depends on. This experimental spike switches to...