Jarred Sumner

Results 211 issues of 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. ![image](https://user-images.githubusercontent.com/709451/115592487-23836e00-a288-11eb-96a1-6d2c608e53ec.png) For function arguments, it should match TypeScript Language Server's behavior: ![image](https://user-images.githubusercontent.com/709451/115592639-52014900-a288-11eb-87a8-0ce469e42df0.png) I think it's `CompletionItem.Kind.Variable`....

bug

This is not a good developer experience: ![image](https://user-images.githubusercontent.com/709451/141661445-9ae9a5f1-8129-4466-a06f-588d7e6cc401.png) 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...

enhancement

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

bug

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...

developer experience

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...

enhancement
needs volunteer
gif

**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...

needs: help
project:react-native-web

[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"}}},...