[elm-discuss] Re: Elm Language Server - Document and repository to coordinate and capture requirements effort

2017-09-12 Thread Håkon Rossebø
I considered both alternatives and actually started with only a markdown file on the repository. After some initial discussions, we landed on a separate Google Document for now, making it easier to write and comment directly for all. This can be changed back to a markdown document at any time i

[elm-discuss] Elm Language Server - Document and repository to coordinate and capture requirements effort

2017-09-07 Thread Håkon Rossebø
(Also posted in elm-dev) Based on previous discussions and my own experience from the vscode-elm extension, having a common language server can help improve editor support and tooling features. Currently, many editor extensions use their own parsers to support a common set of features. I've cre

Re: [elm-discuss] Re: Emphasizing /r/elm more

2017-01-12 Thread Håkon Rossebø
I would also prefer a solution like Discourse or similar as this seems to work very good for elixirforum.com. Anyway, if the focus should be moved to /r/elm, I would suggest we change the elm-discuss group heading to include a link to /r/elm with some description. fredag 6. januar 2017 00.18.2

Re: [elm-discuss] What is the motivation for using google groups?

2016-11-28 Thread Håkon Rossebø
I really like the Discourse forum and think it works very good on https://elixirforum.com -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to elm-discuss+unsubscr...

[elm-discuss] Re: Minimize Javascript for deploys

2016-09-13 Thread Håkon Rossebø
This is how the clojure compiler is used in the elm-mdl makefile: java -jar closure-compiler.jar -O ADVANCED --assume_function_wrapper --js elm.js > /tmp/elm.js && mv /tmp/elm.js elm.js I just tried it on one of my own projects and it seems to work fine. mandag 12. september 2016 23.03.02 UTC

[elm-discuss] Re: Elm-mdl implementations - suggest projects that can be added to reference list

2016-08-31 Thread Håkon Rossebø
Is the source available for this project? It would be nice to share implementations with others. Håkon lørdag 20. august 2016 17.52.29 UTC+2 skrev Dmytro Gladkyi følgende: > > You can press on a blue Card (anywhere) and it will navigate back to list. > I'll add button for this anyway. -- You

[elm-discuss] Re: Elm + OAuth examples.

2016-08-27 Thread Håkon Rossebø
Auth0 also has a couple of articles here: https://auth0.com/blog/creating-your-first-elm-app-part-1/ https://auth0.com/blog/creating-your-first-elm-app-part-2/ torsdag 25. august 2016 15.36.58 UTC+2 skrev Rupert Smith følgende: > > There is this one but its elm 0.16, still very useful though: >

[elm-discuss] Re: Elm + OAuth examples.

2016-08-27 Thread Håkon Rossebø
Elm-hedley actually has a branch with elm 0.17 - https://github.com/Gizra/elm-hedley/tree/145-port-v0.17 torsdag 25. august 2016 15.36.58 UTC+2 skrev Rupert Smith følgende: > > There is this one but its elm 0.16, still very useful though: > > https://github.com/Gizra/elm-hedley > > Any others?

[elm-discuss] Re: Elm-mdl implementations - suggest projects that can be added to reference list

2016-08-20 Thread Håkon Rossebø
> Minified and gzipped bundle is in 5 times smaller than React + Redux > version. > > Minified gzipped Elm bundle is 42Kb + 26Kb material design css. > > React bundle (babelify + minify + gzip) was about 200Kb. + 70Kb bootstrap. > > On Tuesday, August 16, 2016 at 11:33:35 AM UTC+3,

[elm-discuss] Elm-mdl implementations - suggest projects that can be added to reference list

2016-08-16 Thread Håkon Rossebø
Elm-mdl - is getting more usage in various applications/projects. To improve documentation, we want to create a list of implementations - all kinds - simple to complex and use it as a reference on elm-mdl . I would appreciat

Re: [elm-discuss] A community-driven list, helping to coordinate the effort of upgrading existing Elm projects to 0.17

2016-08-15 Thread Håkon Rossebø
it! > > > > On Mon, Aug 15, 2016 at 2:09 PM, Håkon Rossebø > wrote: > >> After I helped out upgrading the Elm Rocket lander >> <https://github.com/WeAreWizards/elm-rocket-lander> game to Elm 0.17, I >> thougth that we could help the Elm community by mai

[elm-discuss] A community-driven list, helping to coordinate the effort of upgrading existing Elm projects to 0.17

2016-08-15 Thread Håkon Rossebø
After I helped out upgrading the Elm Rocket lander game to Elm 0.17, I thougth that we could help the Elm community by maintaining a list of existing Elm projects that needs upgrading and also start the effort of helping others with this migra

[elm-discuss] Re: [ANN] elm-mdl 6.0.0 released

2016-07-13 Thread Håkon Rossebø
You seem to use the demo folder "as is". The demo uses the Material source directly from source references in elm-package.json. To use it without source, you need to reference elm-mdl in elm-package.json like this "dependencies": { "debois/elm-dom": "1.2.0 <= v < 2.0.0", "debois/e

Re: [elm-discuss] Learning Elm and feeling alone in the world

2016-06-20 Thread Håkon Rossebø
After I've started learning Elm, I agree that the documentation for "basic functional programming" could be improved. "Learn You a Haskell" is a great resource and I'm surprised that "Learn You an Elm" has not been mentioned here yet - http://learnyouanelm.github.io/. The first chapters from "L

Re: [elm-discuss] Re: Dynamically load SVG files

2016-06-06 Thread Håkon Rossebø
m-svg elements? torsdag 2. juni 2016 11.44.43 UTC+2 skrev Peter Damoc følgende: > > Take a look at > https://github.com/mbylstra/html-to-elm > > it works with SVG too. > > On Thu, Jun 2, 2016 at 11:31 AM, Håkon Rossebø > wrote: > >> Fetching the svg file with htt

[elm-discuss] Re: Dynamically load SVG files

2016-06-02 Thread Håkon Rossebø
Fetching the svg file with http is ok, but I would then create a svg decoder/parser to read the svg xml into an elm-svg node tree, is there any existing decoders/projects available? mandag 30. mai 2016 17.22.09 UTC+2 skrev Max Goldstein følgende: > > Make an HTTP request in init, and have a Msg

[elm-discuss] Re: Dynamically load SVG files

2016-05-31 Thread Håkon Rossebø
0 May 2016 15:34:07 UTC+2, Håkon Rossebø wrote: >> >> I'm trying out some SVG maps from here: >> >> https://www.amcharts.com/svg-maps/?map=usa >> >> Seems to be too much to embed inline. What would be the best way of >> loading SVG files dynamically? >

[elm-discuss] Re: Dynamically load SVG files

2016-05-31 Thread Håkon Rossebø
Thanks, I'll try that. mandag 30. mai 2016 17.22.09 UTC+2 skrev Max Goldstein følgende: > > Make an HTTP request in init, and have a Msg where they get added to the > model. If you work through some tutorials (links conspicuously absent!) on > the Elm Architecture, this should become pretty cle

[elm-discuss] Dynamically load SVG files

2016-05-30 Thread Håkon Rossebø
I'm trying out some SVG maps from here: https://www.amcharts.com/svg-maps/?map=usa Seems to be too much to embed inline. What would be the best way of loading SVG files dynamically? -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubsc