Josh Bleecher Snyder

Results 106 issues of Josh Bleecher Snyder

I suggest we refactor out our 128 bit support in a go4.org package. Perhaps it will be of use to the people engaged in https://github.com/golang/go/issues/9455 —and perhaps uses of that...

This series of commits considerably improves performance on my machine (macOS), on a simple in-memory filesystem, using git clone to exercise the filesystem. Before these commits, the git clone ran...

I'd expect this test to pass: ```go func TestToFloat64NamedType(t *testing.T) { type X float64 f := ToFloat64(X(2)) if f != 2.0 { t.Fatalf("want %#v, got %#v", 2.0, f) } }...

Suggest rewriting: ```go slog.Debug("msg", "type", fmt.Sprintf("%T", x)) ``` to ```go slog.Debug("msg", "type", reflect.TypeOf(x)) ``` See https://github.com/golang/go/issues/63570

new-check

### Description: Simple optimization: No need to make a copy, just operate in-place. ### Checklist: - [ ] Tests included. - [ ] Lint and formatter run with no errors....

### Checklist - [X] I have searched the [issue tracker](https://github.com/fyne-io/fyne/issues) for open issues that relate to the same problem, before opening a new one. - [X] This issue only relates...

bug
races

We have code structurally similar to this (only more complex, with different tags): ``` {{ if .B }} {{ else }} {{ end }} something {{ if .B }} {{...

bug

We have a series of templates that are used to render headers and footers piecemeal. They contain mismatch html tags, by design. I figured we could work around this by...

bug

``` {{/* {{ range $attr := .Attrs }} {{ end }} */}} ``` This causes a spurious error: > `Error: Encountered unexpected end keyword.`

bug

## Checklist - [x] I have added [tests](https://www.cursorless.org/docs/contributing/test-case-recorder/) - [-] I have updated the [docs](https://github.com/cursorless-dev/cursorless/tree/main/docs) and [cheatsheet](https://github.com/cursorless-dev/cursorless/tree/main/cursorless-talon/src/cheatsheet) - [-] I have not broken the cheatsheet

keyboard
to discuss