Matthijs Kuiper

Results 15 issues of Matthijs Kuiper

At the moment the grass texture variant is based on a random number. The problem with this approach is that the texture changes while walking. https://github.com/fatboypunk/BearNecessities/blob/6eef3deb0b4549098ce88ea7b414385602946e13/apps/bear_necessities_web/lib/bear_necessities_web/views/playfield.ex#L7 So we somehow want...

bug
question

So instead of: ```ex container(tag: assigns[:tag] || :div) ``` We can do: ```ex container(tag: assigns[:tag]) ``` ### Examples: ```ex container() # container(tag: :span) # container(tag: :nil) # ```

enhancement

We're using [prettier](https://github.com/prettier/prettier) to format our CSS. This means that lines break when going over 80 characters. It seems that `maths.eval` breaks lines into an array, and after calling `toString`...

I'm trying to add multiple strings, each wrapped in a HTML tag, and delete them again. I'm not sure if I'm overlooking something or if this is a bug. This...