Jarred Sumner
Jarred Sumner
Great work with `ink`. I'm using it in [`git-peek`](https://github.com/Jarred-Sumner/git-peek) for repository search. This warning appears on start from `ink`: ``` (node:23233) V8: /Users/jarredsumner/Code/git-peek/bin/git-peek:43175 Invalid asm.js: Type mismatch in assignment ```...
The colors rendered in `GradientView` show more red than other colors. This is especially visible at the bottom. For comparison: | ColorSlider | Snapchat | | :---: | :---: |...
zls is really helpful overall. `zls` seems to be reporting `CompletionItem.Kind.EnumKind`(?) for most symbols.  For function arguments, it should match TypeScript Language Server's behavior:  I think it's `CompletionItem.Kind.Variable`....
This is not a good developer experience:  Instead, it could use `std.fs.accessAbsoluteZ` to test if there are permissions to the system-wide configuration directory and only ask if so. Since...
For `StdIo` in `child_process.zig`, the possible values are: ```zig pub const StdIo = enum { Inherit, Ignore, Pipe, Close, }; ``` However, the suggested values are `Error` and `Warn` --...
Here's a video repro: https://user-images.githubusercontent.com/709451/117922733-c3408480-b2a7-11eb-8e76-4e71d536e740.mov
This project looks cool! Would be great if there was a precompiled release in the Releases tab I could download without compiling it myself. Ideally, it would also be available...
I'm rendering several `PINAnimatedImageView` in a `UIScrollView`. As the user scrolls, it sets `isPlaybackPaused` to `true` when shown on screen and `false` when off screen. Overall, I really like this...
**Is your feature request related to a problem? Please describe.** I have some code that needs to not trigger when an interaction handle is running (a click event listener). The...
[In this fork](https://github.com/jarred-sumner/semver), I added support for the following: ```go {[][]string{{"~1.2.1"}}, [][]string{{"=1.2.1"}}}, {[][]string{{"^1.2.1"}}, [][]string{{"=1.2.1"}}}, {[][]string{{"~>1.2.x"}}, [][]string{{">=1.2.0"}}}, {[][]string{{"~>1.x"}}, [][]string{{">=1.0.0"}}}, {[][]string{{"1.*"}}, [][]string{{">=1.0.0", "=1.2.0", "=0.0.0"}}}, {[][]string{{"8.0.0 - 10.0.0"}}, [][]string{{"=8.0.0"}}}, {[][]string{{"8 - 10"}}, [][]string{{"=8.0.0"}}},...