Simon Taeter

Results 13 issues of Simon Taeter

I can't find the description of what the error parameter does for the different fields.

Some small mistakes in the Docker file created some issues on installation.

So I tried following the [overview](https://google.github.io/dopamine/docs/) and - to be honest - this has been a pain. ``` The entry point to the standard Atari 2600 experiment is [dopamine/discrete_domains/train.py](https://github.com/google/dopamine/blob/master/dopamine/discrete_domains/train.py). To...

I use Block.text as presented in [here](http://elm-bootstrap.info/card) but the text do not align. ![capture](https://user-images.githubusercontent.com/35398967/83635111-efd22380-a5a3-11ea-9f9a-2e456c3aba58.png) ``` viewUserDetails : UserDetails -> Html Msg viewUserDetails ud = Card.config [ Card.attrs [ style "width"...

I noticed the signature of ```List.Extra.splitWhen``` don't make completely sense: ``` elm -- current -- splitWhen : (a -> Bool) -> List a -> Maybe ( List a, List a...

There is a problem when we try to run gulp 3 with node 12. So to fix this I had to change my vertions. I've got gulp 4 and node...

I wrote and published an article and then tried to edit it but it gave a whit page. I don't think it is relevant but I'm on Firefox.

It would be great to be able to batch attributes together into a single one. It is a seemingly small feature but it would avoid quite a bit of overhead...

The equivalent of `Element.none` but for attributes: it would give ```elm maybeBlur = if blur then Html.Attributes.style "filter" "blur(4px)" |> Element.htmlAttribute else Element.Attributes.none view = Element.el [ ... , maybeBlur...

I find myself wanting to add attributes to an element I've initiated in an other function quite often. ```elm addAttributes : List (Element.Attribute msg) -> Element msg -> Element.msg ```...