[racket-users] test suite for hygienic expander?

2018-08-06 Thread Mitchell Wand
Is there a test suite for the macro expander? I assume that you must have one, but it would save me some effort if somebody can tell me where it is. I'm interested in finding out if you have good corner cases for testing a proposal for a hygienic expander. --Mitch -- You received this messag

[racket-users] Racket function to get data from a Google Sheet?

2017-08-30 Thread Mitchell Wand
Has anybody written a Racket function to extract the data directly from a Google Sheet? I know I can export the Google sheet as a csv, and then use read-csv-file, but I'd like to automate the export step. --Mitch -- You received this message because you are subscribed to the Google Groups "Rac

Re: [racket-users] Mann-Whitney test?

2017-01-24 Thread Mitchell Wand
Yo! This conversation has gone seriously off-topic. Can y'all carry it on with some other subject line? --Mitch On Tue, Jan 24, 2017 at 11:38 AM, Tim Chase wrote: > Here is an interesting alternative: https://www.opencpu.org. > > You communicate with R processes via JSON. So, you wouldn't want

[racket-users] Mann-Whitney test?

2017-01-09 Thread Mitchell Wand
Does anybody have an implementation of the Mann-Whitney U test (or the equivalent Wilcoxson Rank test) in Racket? I imagine I could easily hack up my own, but somebody else may have done a better job of it already. --Mitch -- You received this message because you are subscribed to the Google Gr

Re: [racket-users] testing for timeout in Rackunit?

2016-08-19 Thread Mitchell Wand
nc/timeout time-limit (thread (λ () (list >> e))) >> >> (check-termination (+ 1 1)) >> (check-termination #f) >> (check-termination (let loop () (loop))) >> >> >> — Matthias >> >> >> > On Aug 18, 2016, at 5:59 PM, Mitchell Wa

[racket-users] testing for timeout in Rackunit?

2016-08-18 Thread Mitchell Wand
Of course you can't test for non-termination, but is there a relatively simple way to write something like (check-doesnt-terminate-quickly ) which would fail if the thunk terminates within the time limit, and succeeds otherwise? This would be useful in testing expressions that are claimed n

[racket] "upload file" button in a Racket web server

2014-07-31 Thread Mitchell Wand
Many web pages have an "upload file" button that allows the user to drag&drop a file onto the button, and then hitting the button sends the file to the server. Is there any way of doing this in a Racket web server? If not, how close can we come? --Mitch Racket Users list:

Re: [racket] shift/release shift keys in universe module

2013-03-14 Thread Mitchell Wand
the original intent was to > move people on to Racket's real GUI toolbox. It just so happens that people > use big-bang and universe far beyond the original intent. -- Matthias > > > > On Mar 14, 2013, at 10:42 PM, Mitchell Wand wrote: > > OK, it's quicker to experim

Re: [racket] shift/release shift keys in universe module

2013-03-14 Thread Mitchell Wand
ift. Is there any better way to do this? --Mitch On Thu, Mar 14, 2013 at 9:56 PM, Mitchell Wand wrote: > Does releasing a shift key cause a key event in 2htdp/universe ? I want > to distinguish between ordinary mouse click and shift click. What I'd like > is to have a sequence l

[racket] shift/release shift keys in universe module

2013-03-14 Thread Mitchell Wand
Does releasing a shift key cause a key event in 2htdp/universe ? I want to distinguish between ordinary mouse click and shift click. What I'd like is to have a sequence like keyevent: "shift" (or "rshift") mouse-event: button-down [or whatever] keyevent: ???(I release the shift key) I sup

[racket] multi-line strings in ISL?

2013-02-17 Thread Mitchell Wand
Is there a good way to create multi-line strings in ISL? For example, instead of producing output in the form (list "(* 11 " " 22 " " 33 " " 44 " " 55) ") [where here I've padded the strings out to 80 characters to force the Racket printer to produce e

Re: [racket] etags support for DrRacket

2010-11-18 Thread Mitchell Wand
> > At Thu, 18 Nov 2010 13:49:23 -0500, > Mitchell Wand wrote: > > > > [1 ] > > [1.1 ] > > It took me about 45 minutes, but I found the following bit of trivia > > helpful: > > > > To convince etags to look for definitions in .rkt files do t

[racket] etags support for DrRacket

2010-11-18 Thread Mitchell Wand
It took me about 45 minutes, but I found the following bit of trivia helpful: To convince etags to look for definitions in .rkt files do the following: Create a file ~/.ctags , and add to it the following line: --langmap=scheme:.rkt This will cause ctags/etags to recognize .rkt files as schem

[racket] [Scheme Steering Committee announcements] ILC 2010 Program and Schedule

2010-10-04 Thread Mitchell Wand
-- Forwarded message -- From: "Jon L White\(G\)" To: Date: Mon, 4 Oct 2010 10:35:04 -0700 Subject: ILC'10 Presentations and Events Schedules *With the usual apologies to those who receive multiple copies This version contains the schedules of presentations and tutorial* *~~~

[racket] Controlling where help desk, universe canvas open

2010-08-04 Thread Mitchell Wand
Hi all, I'm running Racket 5.0 on a Vista box w/ an auxiliary display using "extend my desktop onto this display". The auxiliary display gets plugged into a projector, which displays on the big screen. This is convenient for running Powerpoint presentations (stop sniggering!) because the present

[racket] Lisp, erlang, forth, scheme, prolog, ML maintainer(s) needed urgently in Fedora � Richard WM Jones

2010-07-07 Thread Mitchell Wand
Hmm, does anybody want to turn Racket into an RPM for Fedora? Their most recent RPM is 4.2.1 (!). Link: http://rwmj.wordpress.com/2010/07/06/lisp-erlang-forth-scheme-ml-maintainers-needed-urgently-in-fedora/(via shareaholic.com)

[racket] Google doesn't know from DrRacket

2010-06-29 Thread Mitchell Wand
I realized I had a machine that I needed to download Racket on, so I went to Google to find it. Compare: http://www.google.com/search?q=dr+racket&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a http://www.google.com/search?q=dr+racket+download&ie=utf-8&oe=utf-8&aq=t&rls=or

Re: [racket] reading an image from a file?

2010-06-29 Thread Mitchell Wand
ject is the raw bits plus a little bit of > information about it. > > Probably you just want to use 2htdp/image's 'bitmap' function, tho. > (Or maybe htdp/image's). > > Robby > > On Tue, Jun 29, 2010 at 4:22 PM, Mitchell Wand wrote: > > Silly q

[racket] reading an image from a file?

2010-06-29 Thread Mitchell Wand
Silly question: How can I read a file and treat its contents as an image? eg, I'd like to say something like: (define cat-image (read-image "cat-image.png")) The immediate advantage of doing this, rather than Insert|Image is that I can keep my .rkt file in text form, so I can use other tools on i