Robert Wallis
Robert Wallis
```elm type alias Model = { record : Record } type alias Record = { x : Int , y : Int } f : Model -> Int f model...
When running `npm install wordnet-magic` sqlite3 fails. ``` $ npm install --save wordnet-magic npm WARN deprecated [email protected]: critical bug fixed in v2.0.4 > [email protected] install /Users/robert/Dev/test/node_modules/sqlite3 > node-pre-gyp install --fallback-to-build...
staticcheck reports: > protocol/decoder.go:19:10: error strings should not be capitalized (ST1005)
The first warning from `staticcheck` is about Yoda conditions (which hides another warning) > protocol/attestation_androidkey.go:114:5: don't use Yoda conditions (ST1017) The hidden warning on the same line with `bytes.Compare(...) !=...
`err` is nil after the above `Unmarshal`, so `err` must be `nil` at this point. This warning is via gopls x/tools/go/analysis/passes/nilness "impossible condition: nil != nil nilness(cond)"