Dan

Results 89 issues of Dan

Had to add this line: https://github.com/danneu/elm-chrome-extension/blob/99dd2800060bdfa6c99cdda60faf13067a9ee5d7/background/src/Main.elm#L6-L8 Or else I'd get a runtime error here: https://github.com/danneu/elm-chrome-extension/blob/99dd2800060bdfa6c99cdda60faf13067a9ee5d7/background/src/index.js#L39 In background.js: ``` Uncaught ReferenceError: _elm_lang$core$Json_Decode$null is not defined at Object. (background.js:3305) at Object. (background.js:3765)...

To help users debug their BBCode markup and to generally enhance the level of error feedback, I've been validating the `params` and `content` in the `openTag` function of my tag...

It'd be a great asset to the community if there was a high-level bulleted-list / check-list of sorts that enumerates the various optimizations to consider, ideally with some sample implementation,...

As an Elm beginner, I quickly got to a point where I had a custom `index.html` file (to link in my custom CSS files) which mounted my `src/Main.elm` file. For...

It would be nice to be able to link to a search. For example, in IRC the topic of elm-history came up and how the 0.16 version was hosted at...

request

I'm building a documentation site where I have HTML in `` blocks. This would be nice: ```html {% escape "html" %} Hello world {% endescape %} ``` Since `escape` exists...

```html foo ``` produces ```elm Html.node "p" [] [Html.text " foo "] ``` (error: unexpected `\n`) of course, that could be fixed with ```elm Html.node "p" [] [Html.text """ foo...

To improve searching, we could enumerate alternate names for each exercise. For example, anyone building an exercise app would want to ensure that a user searching for "landmine row" will...

enhancement

Here are some validators I use in my project that I think should belong to koa-validate. 1. `notMatch` - inverse of `match` 2. `ensure` - executes arbitrary expression. if falsey,...