Kevin Manley

Results 9 comments of Kevin Manley

I'm doing the same. Don't see why assetFS is not exported...

``` kevin@kevin-x200:~/$ go run boltdb_stats_issue.go expected 0, got 0 expected 1, got 0 expected 1, got 1 ```

Thanks for looking at this Ben.

Sorry this has gotten a bit messy, if it's easier I can send you a new PR from my master which is up to date with all the PRs I...

Fixed in e8373172969cc1de55082d9cfdb439b0e22e72ad

I'm not sure any race is okay. Please see: https://groups.google.com/g/golang-nuts/c/EHHMCdcenc8 "This has come up quite a few times before on this list (in one guise or another), and the consensus...

I fixed this in my local fork by changing Darker to ```golang // Darker returns a darker version of the specified color func Darker(c color.Color, percent float64) color.Color { col,...

+1 for storing actual modtime with each file in the packr.Box. That would make it easier to implement cache control in http servers embedding static assets via packr.

this change gets it to an A ![image](https://user-images.githubusercontent.com/1238202/88092922-41883a80-cb5f-11ea-9bef-9f7a21602fc0.png) ```golang return &tls.Config{ Certificates: []tls.Certificate{cert}, MinVersion: tls.VersionTLS12, CurvePreferences: []tls.CurveID{tls.CurveP521, tls.CurveP384, tls.CurveP256}, PreferServerCipherSuites: true, CipherSuites: []uint16{ tls.TLS_AES_128_GCM_SHA256, // TLS 1.3 tls.TLS_AES_256_GCM_SHA384, // TLS...