Results 4 issues of Alex Sudakov

First things first, it's a really nice repository. Secondly, I'm going to work with AWS transcribe streaming. As far as I can see it's not covered here. I'm thinking to...

I experienced and found number of issues on the topic: https://github.com/BurntSushi/nfldb/issues/251 https://github.com/BurntSushi/nfldb/issues/187 I want to automatize the process as much as possible. So, whenever json parsing fails I try to...

How to reproduce: ```bash cd /tmp mkdir gokingoleak echo 'package gokingoleak import ( "testing" "github.com/onsi/ginkgo/v2" "github.com/onsi/gomega" "go.uber.org/goleak" ) func TestLeak(t *testing.T) { defer goleak.VerifyNone(t) gomega.RegisterFailHandler(ginkgo.Fail) ginkgo.RunSpecs(t, "Test") }' > gokingoleak_test.go...