[racket-users] GUI Testing

2018-09-10 Thread Cam
I am developing a small GUI application using https://docs.racket-lang.org/gui/. I've got good test coverage for the layers beneath the GUI but I was wondering if there were any good options already available for automating regression-style testing of the GUI itself. Any wisdom or

Re: [racket-users] Racket v7.1

2018-10-28 Thread Cam
Vincent St-Amour writes: > > * The hashing functions `sha1-bytes`, `sha224-bytes`, and > `sha256-bytes` are added to `racket/base`. > Awesome! This let me get rid of the last non-base dependency in an application I'm working on. 7.1 seems solid so far! Great job, guys! -- You received this

[racket-users] servlet development in REPL

2018-10-03 Thread Cam
I am playing around with the built-in webserver functionality with `servlet/serve' and am wondering if there is a way to automatically "reload" the servlet, for lack of better terminology, when I am playing in the REPL. In other words, if I do something like this in the REPL: (define

Re: [racket-users] servlet development in REPL

2018-10-03 Thread Cam
It looks like Sam's suggestion of racket-reloadable is exactly what I need, but I will play with this as well. Thanks! Jay McCarthy writes: > You'd have to build it yourself, by doing a `set!` in the REPL to > inject the new function in. > On Wed, Oct 3, 2018 at 8:10 AM Cam wrote: &

[racket-users] Re: distributed places on remote host

2018-10-10 Thread Cam
Cam writes: > I have these two files: > > my-test.rkt: >> #lang racket >> >> (require racket/place/distributed >> racket/runtime-path >> "my-worker.rkt") >> >> (define-runtime-path worker-path "my

Re: [racket-users] Re: distributed places on remote host

2018-10-11 Thread Cam
George Neuner writes: > Hi Cam, > > On 10/10/2018 5:03 PM, Cam wrote: >> I took a packet capture and the only interesting thing I was able to >> find in it was a conversation like this: >> >> localmachine->remotemachine: >> > #s(dcgm 11 -1 -1 "&

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

[racket-users] distributed places on remote host

2018-10-09 Thread Cam
y netstat on the remote machine (IPs changed to protect the innocent). > tcp0 0 0.0.0.0:6344 0.0.0.0:* LISTEN > 12959/racket > tcp0 0 999.999.999.999:6344 000.000.000.000:59260 > ESTABLISHED 12959/racket I feel as if