Joseph Ni

Results 10 issues of Joseph Ni

I wonder if it's easy to get a tree representation of all the modules that import other modules so we can see when a certain module is changed, which other...

It looked like this plugin was broken, but then I installed sublime text 3 and all the advertised features (type panel, elm-format, etc) started working. I have elm-format, reactor, repl,...

- Json.Encode.list takes care of mapping `( a -> Value )` now eg `List.map toValue |> Json.Encode.list` -> `Json.Encode.list toValue` - Navigation.newUrl -> Browser.Navigation.pushUrl - jweir/elm-iso8601 now converts between Posix...

elm make defaults to no debugging with `elm make --debug` putting debug into the compiled js. However, elm reactor does not have the option to switch off debugging. My game...

i'm finding the wording of the type mismatch to be confusing as it's lead me down the wrong path: ``` -- TYPE MISMATCH ------------------------------ ../frontend/src/Model/Person.elm Something is off with the...

types
no sscce

Towards the end of the first chapter, once the `'variable` and `'reference` lifetimes has been established, there is the following statement: > We call a region of code where a...

aldeed:roles allows groups `['A-Team': ['admin', 'read', 'write']]` But I haven't been able to create a schema to represent this properly because of the dynamic key of each group. Is there...

I raised this issue in elm-package, but didn't realise that this was elm-light inserting it's own key into elm-package.json The issue is that on elm-package install or potentially any command...

![image](https://user-images.githubusercontent.com/4709169/31325243-7198a716-ad06-11e7-9951-f0791662c010.png) It would be great to be able to hide all the grayed modules so you can see the dependent ones. Currently, you need to scroll down to get to...

Hey there, I'm creating a custom use case for this A* algorithm by carrying some meta data in each 'position'. Since a comparable can be a tuple, i'm carrying with...