Garth Kidd

Results 73 comments of Garth Kidd

Oh, handy. I've been struggling with the full CI matrix on some other projects. I wish I'd thought of running just the oldest Elixir on the oldest OTP and the...

If you're here because you're searching for this problem, I guess we never did make Norm compatible with Dialyzer. Here are some workaround for the errors: **Unknown types**: run `mix...

I'm pretty comfortable with `@dialyzer {:no_opaque, my_spec: 0}` now; how about I summarise the `@dialyzer` module attribute trick under an `## Interoperability with Dialyzer` heading in `README.md`?

Build failure; build log long since gone. @GabrielLins64 are there any extra commits in `dev` you can merge in to have another try?

I've confirmed sending `(oled:text 0 50 Hello World)` via MQTT still works under 1.17.

Oh, of course. `sys.path` is `['', '/lib']`. You're getting literally two copies of the same module: one loaded via `'lib'`, the other via `''`. For any module with code, it's...

Ha! Saved myself a bunch of time explaining it: it's already described as the [double import trap](http://python-notes.curiousefficiency.org/en/latest/python_concepts/import_traps.html#the-double-import-trap) in an article explaining how Python module resolution works. If we remove `''`...

I'm having trouble finding references to `DocumentResolver`. Could you point me to some resources?