MartinSStewart

Results 114 comments of MartinSStewart

> What do you think nearestPointOnTriangle should return for a point that is inside the triangle? It currently returns the point itself if it's inside the triangle (or rather, the...

``` >node --version v10.16.0 ``` I tested running elm-doc-preview outside of my project and that worked. Then I ran it inside my project again and that also worked. Now it...

I got it to crash again. Here's the logs from when it occurred outside of a project ``` C:\Users\Martin\Desktop>npx elm-doc-preview npx: installed 136 in 17.772s elm-doc-preview 5.0.3 using elm 0.19.1...

Related to this. Capitalization mistakes in records produce unhelpful error messages. Someone using elm-ui got stuck with this error and it took me several minutes before I noticed `onchange` should...

I tried refreshing the cache just now but it is still visible. Edit: The problem appears on my Mac using both Firefox and Chrome, and on my iPhone using Safari

The message appears at the very bottom of the page.

I've used the getViewport and setViewport functions for smooth scrolling to a desired element. I'm not sure if I want to explicitly test this behavior but I do have a...

If it was two separate modules with `Bits.asBytes` and `Bytes.asBits`, won't you need to introduce an `Internal` module and place `Bits` and `Bytes` there in order to avoid a dependency...

I think just `Bytes` works. Both `Bytes` and `Bits` seem pretty discoverable in a `Bytes` module. `BinarySize` works too but all else being equal, `Bytes` is less to type.

Good point. Another option is `Byte` which to me sounds awkward as a module name, but has the advantage of being even shorter. Otherwise `BinarySize` still works. Edit: Just to...