Re: [racket-users] Can anyone help me with a change?

2017-10-22 Thread 'John Clements' via Racket Users
Okay, this might now be done. You should be able to install it using raco pkg install simply-scheme OR you can use the package manager from within DrRacket. MAJOR disclaimer: I am not a user of Simply Scheme, and this package does not appear to include any tests. However, it appears that

Re: [racket-users] Can anyone help me with a change?

2017-10-22 Thread 'John Clements' via Racket Users
Okay, I spent half an hour on this, and I think I’m done… um, almost. Actually, it appears that my quick job of updating the drracket tool has resulted in a configuration that can reliably make DrRacket seg fault (!). Since this package does not involve FFI in any way, this is a bug in

[racket-users] proposed doc fix?

2017-10-22 Thread 'John Clements' via Racket Users
The documentation currently states: "When DrRacket starts up, it looks for tools by reading fields in the info.rkt file of each collection and the newest version of each PLaneT package installed on the system. (Technically, DrRacket looks in a cache of the "info.rkt" files contents created by

Re: [racket-users] Can anyone help me with a change?

2017-10-22 Thread Josh Paley
While I appreciate the level of detail that Stephen provided, I am absolutely slammed and don't know github usage, so what looks smallish to you (and probably would be for me if I were better educated on the system) is looking mighty large to me. In terms of the fix, what needs to change is that

Filename completion (was: Re: [racket-users] Open source projects)

2017-10-22 Thread 'John Clements' via Racket Users
> On Oct 22, 2017, at 16:05, Neil Van Dyke wrote: > > I could be missing something, but I think a filename completion procedure > (not the DrRacket integration part) might be a doable exercise for a budding > Racket programmer, so long as they already have a basic

Re: [racket-users] Open source projects

2017-10-22 Thread Neil Van Dyke
I could be missing something, but I think a filename completion procedure (not the DrRacket integration part) might be a doable exercise for a budding Racket programmer, so long as they already have a basic familiarity with using the filesystem and shell as a normal user. Point them to the

Re: [racket-users] Beautiful Racket v1.0

2017-10-22 Thread Matthias Felleisen
> On Oct 22, 2017, at 5:45 PM, 'John Clements' via Racket Users > wrote: > > >> On Oct 22, 2017, at 04:30, Gour wrote: >> >> On Thu, 16 Mar 2017 02:04:53 -0700 (PDT) >> Vincent Nys wrote: >> >>> Congrats! I've gone

Re: [racket-users] Beautiful Racket v1.0

2017-10-22 Thread 'John Clements' via Racket Users
> On Oct 22, 2017, at 04:30, Gour wrote: > > On Thu, 16 Mar 2017 02:04:53 -0700 (PDT) > Vincent Nys wrote: > >> Congrats! I've gone through all the chapters and it has been the most >> entertaining programming book I have ever read. It's been

Re: [racket-users] Open source projects

2017-10-22 Thread 'John Clements' via Racket Users
+1. The specific use case for me is super-scripty things like this: (csv->list “~/clements/datasets/poly-dashboards/2178-data-schedule.csv’) … to load a file from disk. One could make the claim that I should choose paths and filenames that I always remember, but in fact, shell-based completion

Re: [racket-users] Define/override for mouse event?

2017-10-22 Thread Stephen De Gabrielle
They way I look at it is the Racket/gui libraries are already calling the ‘on-event’ method, you have to override their calls so your code can pass mouse events to your code. I suppose the trade-off is your code should work on windows, Linux and macOS with no change. Kind regards, Stephen On

Re: [racket-users] Can anyone help me with a change?

2017-10-22 Thread Robby Findler
On Sun, Oct 22, 2017 at 3:34 PM, Stephen De Gabrielle wrote: > I don’t think packages on PLaneT can be updated but I may be wrong. They can be updated, but I would recommend that, instead of updating them, you move them to pkgs, as Stephen suggests. (Of course, if you

Re: [racket-users] Can anyone help me with a change?

2017-10-22 Thread Stephen De Gabrielle
I don’t think packages on PLaneT can be updated but I may be wrong. I have moved things from PLaneT to the Racket Package system, and it isn’t very hard, certainly wasn’t time consuming (an evening). 1. Make a new github repo 2. add the old code, 3. Run it to see what breaks 4. Fix it - I don’t

Re: [racket-users] European Racketeers and conferences

2017-10-22 Thread Stephen De Gabrielle
Hi, I’ve taken it upon myself to add the map link to the github wiki homepage https://github.com/racket/racket/wiki - with the hope that it will help provide a way for Racketeers to meetup. The wiki incidentally includes some advice on starting a local meetup

Re: [racket-users] Open source projects

2017-10-22 Thread Stephen De Gabrielle
> > auto-completion of filenames in DrRacket, probably using a pop-up. That > is: I type a string containing a path fragment, and then I hit, say, C-c > C-r or some other unused combination (ha!), and I get a dialog that will > allow me with a small number of keystrokes to auto-complete to the

[racket-users] Re: Beautiful Racket v1.0

2017-10-22 Thread Gour
On Thu, 16 Mar 2017 02:04:53 -0700 (PDT) Vincent Nys wrote: > Congrats! I've gone through all the chapters and it has been the most > entertaining programming book I have ever read. It's been practical, > too, as I have already used bits of it in a medium-sized (first) >