Re: [racket-users] Re: Application Templates!

2020-08-25 Thread Andre Garzia
> A recent contribution is a new command extension to raco: > https://github.com/nixin72/from-template > $ raco from-template > Philip described it 'like create-react-app, but for all sorts of Racket > templates' > (It is currently only linux so it would be nice if a windows user could > help)

Re: [racket-users] Re: Application Templates!

2020-08-20 Thread Alex Harsanyi
On Thursday, August 20, 2020 at 9:11:45 PM UTC+8 hen...@topoi.pooq.com wrote: > On Wed, Aug 19, 2020 at 09:33:01PM -0700, Alex Harsanyi wrote: > ... > ... > > I think Racket would benefit by a suite of applications which are small > but > > not trivial and with a source code which is

Re: [racket-users] Re: Application Templates!

2020-08-20 Thread Robby Findler
On Thu, Aug 20, 2020 at 9:11 AM Deren Dohoda wrote: > I would kill to understand the intended use of the framework library. I > don't understand what I'm supposed to do with it at all. Does anyone have > an application written with framework that I can look at? Or could we make > a small

Re: [racket-users] Re: Application Templates!

2020-08-20 Thread Sorawee Porncharoenwase
Is this intended to be something like https://docs.racket-lang.org/scaffold/ ? On Thu, Aug 20, 2020 at 10:12 AM Stephen De Gabrielle < spdegabrie...@gmail.com> wrote: > Alex is right, most developers don't need this. > > The point of templates is

Re: [racket-users] Re: Application Templates!

2020-08-20 Thread Stephen De Gabrielle
Alex is right, most developers don't need this. The point of templates is a jumping off point for new developers, or developers trying a domain they are not familiar with. Where possible I will be linking back to any supporting materials ( https://alex-hhh.github.io/2020/03/a-game-of-tetris.html

Re: [racket-users] Re: Application Templates!

2020-08-20 Thread Stephen De Gabrielle
Hi Deren, > > The framework provides a number of mixins, classes and functions designed > to help you build a complete application program on top of the racket/gui > library. - https://docs.racket-lang.org/framework/index.html Check out the overview and the table of contents - it has lots of

Re: [racket-users] Re: Application Templates!

2020-08-20 Thread Laurent
My understanding is that Framework is born out of DrRacket, expecting that some of its tools may be useful in other contexts (like, say, keymaps). On Thu, Aug 20, 2020 at 3:11 PM Deren Dohoda wrote: > > I think Racket would benefit by a suite of applications which are small > but > > not

Re: [racket-users] Re: Application Templates!

2020-08-20 Thread Deren Dohoda
> I think Racket would benefit by a suite of applications which are small but > not trivial and with a source code which is commented in more detail than a > regular application I would kill to understand the intended use of the framework library. I don't understand what I'm supposed to do

Re: [racket-users] Re: Application Templates!

2020-08-20 Thread Hendrik Boom
On Wed, Aug 19, 2020 at 09:33:01PM -0700, Alex Harsanyi wrote: ... ... > I think Racket would benefit by a suite of applications which are small but > not trivial and with a source code which is commented in more detail than a > regular application. Every regular application would also benefit

Re: [racket-users] Re: Application Templates!

2020-08-20 Thread Laurent
Stephen's work may still be quite useful, as it provides a set of really minimal (almost?) working examples that explain the specifics of various tools. I say keep it up, Stephen! On Thu, Aug 20, 2020 at 5:33 AM Alex Harsanyi wrote: > I am not sure that a template in the style of "dotnet new"

[racket-users] Re: Application Templates!

2020-08-19 Thread Alex Harsanyi
I am not sure that a template in the style of "dotnet new" is directly applicable for Racket -- the .Net framework is, well a framework. which is a library that expects the users to structure their own programs in certain ways. The templates fill the need of setting up the boilerplate code

[racket-users] Re: Application Templates!

2020-08-19 Thread Stephen De Gabrielle
I’ve started a small collection! https://github.com/racket-templates These are GitHub templates so you use them by clicking ‘use this template‘ on the repo I’m looking for more ideas/contributions; >From the top of my head; - ‘worker service’ (dotnet new has this) - DrRacket plugin - Keybinding