Re: [racket-users] Downloadable tutorials (e.g. on github)? Tutorial example source codes samples attached to DrRacket instalation?

2019-09-16 Thread Hadi Moshayedi
On Mon, Sep 9, 2019 at 8:48 AM Neil Van Dyke wrote: > If someone is up to doing such a startup: find a > startup CEO who can get funding, start coding with the copious > information and community support available for Racket... and then feed > back your success story, as well as feed back useful

[racket-users] Racket News - Issue 16

2019-09-16 Thread Paulo Matos
Hello everyone, It's time for another issue of RN. Issue 16 is here! https://racket-news.com/2019/09/racket-news-issue-16.html Enjoy! Paulo Matos -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop

[racket-users] Strange Loop talk about Racket is up

2019-09-16 Thread zeRusski
https://youtu.be/yU-HUb8Xykg I'd estimate 10-15min total overlaps with my RacketCon talk here and there, 25-30min is my take on metaprogramming, Lisps and, of course, Racket. Haven't watched it myself, yet - need some hard liquor to numb the pain of listening to ones own voice :) -- You

[racket-users] rockstar and related languages (Was: Racket News - Issue 16)

2019-09-16 Thread Neil Van Dyke
On a light semi-PL note... One possible application or inspiration for the Rockstar language mentioned in this issue of Racket News ("https://github.com/whichxjy/rockstar-rkt;), is for what could be called a thought exercise (among other things), like in the second paragraph of:

Re: [racket-users] What is a (the?) way to track requirements for a web or app with Racket?

2019-09-16 Thread Alex Harsanyi
On Monday, September 16, 2019 at 5:04:58 PM UTC+8, Bogdan Popa wrote: > > > Marc Kaufmann writes: > > > this is surely answered somewhere, but I have not made much progress. If > > you know python, what I want to do is essentially > > > > $ pip install requirements.txt > > > > Although

Re: [racket-users] What is a (the?) way to track requirements for a web or app with Racket?

2019-09-16 Thread Marc Kaufmann
So the easiest to do is to create such an info.rkt file and call `raco pkg install app-name/` -- and that should work even if I don't do the `raco exe` and `raco distribute`? On Mon, Sep 16, 2019 at 11:04 AM Bogdan Popa wrote: > > Marc Kaufmann writes: > > > this is surely answered somewhere,

[racket-users] What is a (the?) way to track requirements for a web or app with Racket?

2019-09-16 Thread Marc Kaufmann
Hi, this is surely answered somewhere, but I have not made much progress. If you know python, what I want to do is essentially $ pip install requirements.txt where requirements.txt has a list (one per line) of packages and their versions to install (usually installed into a virtual

Re: [racket-users] What is a (the?) way to track requirements for a web or app with Racket?

2019-09-16 Thread Bogdan Popa
Marc Kaufmann writes: > this is surely answered somewhere, but I have not made much progress. If > you know python, what I want to do is essentially > > $ pip install requirements.txt > Although it's not exactly the same thing, I use `info.rkt'[1][2] (similar to `setup.py') for this purpose

Re: [racket-users] Running Big Bang applications in the browser

2019-09-16 Thread Jens Axel Søgaard
Check WeScheme. https://www.wescheme.org/ (forgot to send to the list first time around) /Jens Axel Den man. 16. sep. 2019 kl. 12.26 skrev Maciek Godek : > Hi, > is there any way to deploy Racket's big-bang applications to run in a > browser (or any plans to enable that feature)? > > -- > You

Re: [racket-users] What is a (the?) way to track requirements for a web or app with Racket?

2019-09-16 Thread Bogdan Popa
Alex Harsanyi writes: >> Although it's not exactly the same thing, I use `info.rkt'[1][2] >> (similar to `setup.py') for this purpose and each one of >> my web apps is its own package. >> > > Does this mean that the application itself is available as a package and > you can require files from

Re: [racket-users] What is a (the?) way to track requirements for a web or app with Racket?

2019-09-16 Thread Bogdan Popa
Marc Kaufmann writes: > So the easiest to do is to create such an info.rkt file and call `raco pkg > install app-name/` -- and that should work even if I don't do the `raco > exe` and `raco distribute`? Yes, that's right. `raco exe' and `raco distribute' are not required. I realize now that

[racket-users] Running Big Bang applications in the browser

2019-09-16 Thread Maciek Godek
Hi, is there any way to deploy Racket's big-bang applications to run in a browser (or any plans to enable that feature)? -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an

Re: [racket-users] Running Big Bang applications in the browser

2019-09-16 Thread Stephen De Gabrielle
Perhaps RacketScript https://github.com/racket/racket/wiki/RacketScript or Urlang https://github.com/soegaard/urlang ? Maybe Pyret? https://www.pyret.org/docs/latest/world.html HTH Stephen On Mon, Sep 16, 2019 at 11:26 AM Maciek Godek wrote: > Hi, > is there any way to deploy Racket's