[elm-discuss] Re: Easy way to set up a caching proxy for github to make elm-install run faster?

2017-10-03 Thread Gusztáv Szikszai
> > I suppose another way would be to modify elm-install such that it take a > command line argument that tells it to skip checking for updates. Maybe -o > for offline mode. > There is one it's the --skip-update I've added it in the v1.6.0

[elm-discuss] Re: Elm as templating engine

2017-09-02 Thread Gusztáv Szikszai
You need to use `attribute` with an empty string as value. https://ellie-app.com/4ckwSKX7YKGa1/0 On Sunday, September 3, 2017 at 1:18:26 AM UTC+2, Birowsky wrote: > > Trying to use elm as a templating engine for AMP pages. But they have > specific requirements where I need to specify attributes

[elm-discuss] Re: Attributes not getting removed

2017-05-10 Thread Gusztáv Szikszai
Already reported https://github.com/elm-lang/html/issues/124. My advice would be to use `attribute "download" "value"` and it will be removed if omitted. On Tuesday, May 9, 2017 at 10:00:29 PM UTC+2, Kasey Speakman wrote: > > Hi, maybe someone has run into this. > > I'm noticing that download

[elm-discuss] Re: Local third-party packages

2017-05-09 Thread Gusztáv Szikszai
wrote: >> >> On Friday, May 5, 2017 at 11:52:09 AM UTC+1, Gusztáv Szikszai wrote: >>> >>> I've been working on this in the last few days, and published 1.0.0 >>> <https://github.com/gdotdesign/elm-github-install/releases/tag/v1.0.0> >>> of *elm-

[elm-discuss] Re: Local third-party packages

2017-05-05 Thread Gusztáv Szikszai
I've been working on this in the last few days, and published 1.0.0 of *elm-github-install* which handles using a fork (or any other git repository for a package) and using a local directory. If anyone tries this out some

[elm-discuss] Re: Structuring model and messages | Debouncing in a large app

2017-04-22 Thread Gusztáv Szikszai
I've never though about using an effect manager for debouncing, it makes much more sense. Thanks for sharing! On Saturday, April 22, 2017 at 9:25:03 AM UTC+2, Gusztáv Szikszai wrote: > > This is really good :+1 > > On Thursday, April 20, 2017 at 10:00:50 PM UTC+2, jsch...@pivotal

[elm-discuss] Re: input value solution

2017-03-14 Thread Gusztáv Szikszai
This should be part of elm-lang/dom as a task or a command. I have my own dom package which elm-ui uses and it has this functionality, if you don't want to use non official packages than i would suggest adding and *id *attribute to your input and creating a port (port setValue : String ->

[elm-discuss] Re: Local third-party packages

2017-02-01 Thread Gusztáv Szikszai
Hey, author of elm-github-install here. it resolves the git ref then pulls the version number in from it's > elm-package.json This is basically how it works and it adds the ref as the build number `1.0.0+master` , so this way it tracks what version to resolve and what code to use eventually.

Re: [elm-discuss] Can't install native package using elm-github-install

2016-11-22 Thread Gusztáv Szikszai
way effect managers works prevents that. It can be done with some native functions, but it's dangerous because prevents type checking (it directly feeds the given messages back into the program). On Tuesday, November 22, 2016 at 11:17:05 AM UTC+1, Rupert Smith wrote: > > On Tuesday, Novem

Re: [elm-discuss] Can't install native package using elm-github-install

2016-11-21 Thread Gusztáv Szikszai
I think you are looking for something like this: https://github.com/gdotdesign/elm-ui/blob/master/source/Ui/Helpers/Emitter.elm It's a pure Elm pub / sub effects module (and possibly the most minimal example of an effect module). On Monday, November 21, 2016 at 11:54:50 PM UTC+1, Rupert Smith

Re: [elm-discuss] Problems with `elm-package install`

2016-11-17 Thread Gusztáv Szikszai
> elm-github-install installs from the elm-package.json it doesn't have any arguments On Thursday, November 17, 2016 at 5:50:56 PM UTC+1, Peter Damoc wrote: > > I can confirm that I too get the same error when I try to install the > specific version > > elm-package install sanichi/elm-md5

Re: [elm-discuss] Re: What would need to happen to implement Blob/File in Elm.http?

2016-07-05 Thread Gusztáv Szikszai
> > What am I missing? > > Simon > > On Tuesday, 5 July 2016 06:10:18 UTC+2, Gusztáv Szikszai wrote: > > Funnily enough the Http package doesn't need to change in order to allow >> file uploads. >> >> I already made this work for Elm-UI, as I

Re: [elm-discuss] Re: What would need to happen to implement Blob/File in Elm.http?

2016-07-04 Thread Gusztáv Szikszai
Funnily enough the Http package doesn't need to change in order to allow file uploads. I already made this work for Elm-UI, as I described here https://gdotdesign.gitbooks.io/elm-ui-guide/content/guides/handling_files.html the Http package uses FormData