Matt Brandly
Matt Brandly
like this http://worrydream.com/LearnableProgramming/#flow
* doesn't handle comments well * doesn't always format things like i'd hope there probably needs to be a real parsing step
you probably want some manual controls in general. click to set breakpoints. step forward one op or to next breakpoint
hopefully, you'll be able to see where you program is breaking and, along with the inline feedback, see how to fix it
could maybe do something [like this](http://www.htmlgoodies.com/html5/tutorials/determine-an-images-type-using-the-javascript-filereader.html#fbid=AC7bNj8g0T2)
Memory leak?
If you check out memory usage on the Timeline tab in Chrome dev tools, every page transition seems to allot more memory. Occasionally, you'll see memory usage drop a bit,...
hey! thanks for this!! webpack 2 is now stable. [here are the changes that apply to these docs](https://webpack.js.org/guides/migrating/#module-loaders-is-now-module-rules) i could send a PR, if you'd like. would you rather update...
graphs are created with Kite and serialized/exported in DOT. a DOT file can be imported into a Kite graph i.e. a `GraphFile` is produced from `DOT`: https://github.com/erkal/kite/blob/a5c8fd6430a296305f014cee255a20f8a607e9f4/src/GraphFile/DotLang/Decode.elm#L15-L16 i assume this...
looks like the error is swept under the rug with `Result.withDefault GF.default` https://github.com/erkal/kite/blob/a5c8fd6430a296305f014cee255a20f8a607e9f4/src/Main.elm#L672-L675 any ideas how to display this feedback? [i mention this problem](https://github.com/erkal/kite/issues/11#issuecomment-541681432) and proposed a "toast" system, which...