Richard Feldman
Richard Feldman
It's a bit distracting to see `repl-temp-000.elm` as the filename in error messages: ``` -- PARTIAL PATTERN ------------------------------------------- repl-temp-000.elm This pattern does not cover all possible inputs. ``` Would be...
If I run the same command five times in a row, it appears in my history 5 times, meaning I now have to press the Up arrow six times to...
I used to use `elm-make --output /dev/null Foo.elm" to check whether my code compiles, but that doesn't work anymore in 0.16 since`--output`only accepts`.js`and`.html` arguments. My new jam is to load...
I saw this in `#beginners` on Elm Slack: > what am i doing wrong here - says that I have a naming error `Cannot find pattern OK` They used `OK`...
I forgot to pass a `[]` as the second argument to an `input` element. Here's the error: ``` -- TYPE MISMATCH -------------------------------------------- src/Page/Login.elm The 2nd argument to `fieldset` is not...
## Motivation Our Rails back-end uses the [`Accept` HTTP request header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept) to determine what to send back to clients. It defaults to sending HTML unless told otherwise. When we make...
This makes it so when users type in package.elm-lang.org in Chrome and hit Tab, it will automatically be searching package.elm-lang.org. It turns out this is pretty simple: http://stackoverflow.com/questions/7630144/how-to-add-google-chrome-omnibox-search-support-for-your-site
## Background One way to use [`elm-css`](http://package.elm-lang.org/packages/rtfeldman/elm-css/latest) is to generate a CSS string and then call `node "style" [] [ text cssStylesGoHere ]` to render a `` with the relevant...
`blur` wasn't using `defaultValues`. Now it is!