[elm-discuss] Re: ANN: TypedSvg

2017-03-31 Thread Noah Gordon
elm-lang/svg does not provide any strong typing for its functions; it's a direct exposure of SVG's API, and all of its functions take strings as arguments. An incorrectly-formatted string will not break your application but will fail to render as you might expect. It looks like this library is

[elm-discuss] Re: Giving elm-vim some love

2017-02-06 Thread Noah Gordon
As an exclusive vim user, this is something I'm interested in. I have zero vimscript but I'm willing to learn and give it a stab. On Monday, February 6, 2017 at 12:17:18 AM UTC-5, Max Goldstein wrote: > > I would love to see better vim support, but I don't have the vimscript > knowledge either

[elm-discuss] Library for decoding and working with JSON API payloads

2016-07-15 Thread Noah Gordon
Hey all, After much interface churn, I've published `elm-jsonapi`, a library for making it easy to work with JSON API server payloads. I'm looking for feedback from anyone out there using JSON API on their projects, or if anyone who likes critiquing interfaces :) You can find the library

[elm-discuss] Re: Data from JS to Elm without delay

2016-06-06 Thread Noah Gordon
Take a look at `Html.App.programWithFlags`: http://package.elm-lang.org/packages/elm-lang/html/1.0.0/Html-App#programWithFlags I'm pretty sure it was created with the 0.17 release specifically for this purpose -- to import arbitrary data on initialization. Would probably be cleaner than