Re: [racket-users] package for the RacketCon 2018 web devel workshop

2018-10-04 Thread Sage Gerard
Hey all, Thanks again for the workshop, Jesse! After setting up the room I went ahead and escalated use of chats to Jay for next year. We should be able to get something relatively more complete by then. The transcript is only really necessary if you specifically need the text file, and it's nea

Re: [racket-users] package for the RacketCon 2018 web devel workshop

2018-10-04 Thread Jesse Alama
On 4 Oct 2018, at 15:10, Cam wrote: Was this workshop video-recorded? Can we expect to see it on the `racketlang' YouTube channel? I believe the workshops weren't recorded. One of the workshop attendees had the great idea of using gitter.im to facilitate live discussion, as well as make a tr

Re: [racket-users] add set-subset?

2018-10-04 Thread Ben Greenman
How about a pull request that redirects searches for "set-subset?" to the `subset?` function? -- 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 email to racket-users+unsubs

[racket-users] Re: Racket Language Track for Exercism

2018-10-04 Thread Dave McDaniel
Little necrobump here, I did find exercism recently in my efforts of getting up to speed on racket, in addition to the racket-koans collection on github, which is great! The idea of having real people give you feedback on the code is awesome. That

Re: [racket-users] add set-subset?

2018-10-04 Thread David Storrs
I am so glad that I'm not the only one who does this. On Thu, Oct 4, 2018 at 2:16 PM 'John Clements' via Racket Users < racket-users@googlegroups.com> wrote: > D’oh! It’s just called subset? > > Sorry, > > John > > > > On Oct 4, 2018, at 11:16 AM, 'John Clements' via Racket Users < > racket-users

Re: [racket-users] add set-subset?

2018-10-04 Thread 'John Clements' via Racket Users
D’oh! It’s just called subset? Sorry, John > On Oct 4, 2018, at 11:16 AM, 'John Clements' via Racket Users > wrote: > > It seems strange to me that we have (AFAICT) set-union, set-subtract, and > set-member?, but not set-subset?. Would it make sense for me to propose a > pull request for t

[racket-users] add set-subset?

2018-10-04 Thread 'John Clements' via Racket Users
It seems strange to me that we have (AFAICT) set-union, set-subtract, and set-member?, but not set-subset?. Would it make sense for me to propose a pull request for this? (it would just be (set-empty? (set-subtract b a)), I realize…) John -- You received this message because you are subscrib

Re: [racket-users] Why does my package have no build status?

2018-10-04 Thread David Storrs
On Thu, Oct 4, 2018 at 9:34 AM Greg Hendershott wrote: > > As to the dependency, there's no reason that people need to have > handy/test-more (the testing framework I use for struct-plus-plus) > installed in order to use the module. > > Would it help to put `handy` in `build-deps` instead of `dep

Re: [racket-users] servlet development in REPL

2018-10-04 Thread Greg Hendershott
I just wanted to chime in and say I share Philip's preference. I think programming is hard enough without multiple sources of truth. p.s. Replacing expensive startup items with a no-op is a good idea. Or sometimes, keep the "real-op" but postpone using one of: - `delay/sync` and `force` from `r

Re: [racket-users] Why does my package have no build status?

2018-10-04 Thread Greg Hendershott
> As to the dependency, there's no reason that people need to have > handy/test-more (the testing framework I use for struct-plus-plus) installed > in order to use the module. Would it help to put `handy` in `build-deps` instead of `deps`? > It's not clear to me how to use compile-omit-files i

Re: [racket-users] package for the RacketCon 2018 web devel workshop

2018-10-04 Thread Cam
Jesse Alama writes: > I made a package to go along with the web programming workshop held at > RacketCon 2018. > > Install: > > $ raco pkg install racketcon-2018-web-devel-workshop > > Docs: > > $ raco docs racketcon-2018-web-devel-workshop > > The package contains a little raco command that expo