[racket-users] Possible to serve multiple stateless webservers?

2022-11-11 Thread Don Green
I can successfully serve one stateless webserver from one racket webserver file. I'd like to serve multiple stateless webservers from one racket webserver file. (define (my-app req) (response/full 200 #"Okay" (current-seconds) TEXT/HTML-MIME-TYPE empty (list (string->bytes/utf-8 (i

[racket-users] collection resolver problem...

2022-08-08 Thread Don Green
I don't see why the collection resolver has a problem because the desired collection path: #, is shown to be in the current-library-collection-paths: (current-library-collection-paths) '(# # #) Thanks Don. -- You received this message because you are subscribed to the Google Groups "Racket

[racket-users] How shall I add collection path?

2022-08-08 Thread Don Green
For some reason, the collection directories below does not include the only collection directory that I use: /home/don/.plt-scheme/4.2.1/collects which I do have showing up in DrRacket's options: /Language/Choose Language/ Collection Paths: <> /home/don/.plt-scheme/4.2.1/collects --

[racket-users] how could I obtain more context to isolate the problem?

2022-08-08 Thread Don Green
$ raco setup ? collection-path: collection not found collection: "t" in collection directories: /home/don/.plt-scheme/4.2.1/collects /home/don/.racket/8.1/collects /home/don/racket/collects/ ... [175 additional linked and package directories] Thanks -- You received this message b

[racket-users] how do I remove a specified collection?

2022-08-08 Thread Don Green
$ raco setup ? collection-path: collection not found collection: "t" How do I go about finding and removing: collection: "t" ? Thanks. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails f

[racket-users] replace this page with your favorite index page - how

2022-02-25 Thread Don Green
The Racket Web Server makes use of a default index.html file that contains the following 2 lines: Welcome to the Racket Web server! : Please replace this page with your favorite index page. Since relplacing the file is not sufficient to effect the change, I think it must be necessary force

[racket-users] function that returns Package Source string

2021-11-21 Thread Don Green
Does Racket have a function that returns the Package Source set in DrRacket? The value can be set in: DrRacket/Package Manager/Package Source: I am looking for a way to obtain that value. Thanks -- You received this message because you are subscribed to the Google Groups "Racket Users" group.

[racket-users] Looking to trigger the end of a loop by the creation of a file.

2021-10-02 Thread Don Green
Looking to trigger the end of a loop by the creation of a file. Is this possible? Is this advisable? Currently using: a 'for' loop with a 'for' loop guard expression to test for the existence of a file. Tried file-exists? but that does not seem appropriate. Tried using Racket function: filesystem-

[racket-users] problem of gui layout using side-by-side frames

2021-08-11 Thread Don Green
When I specify 2 frames to be side-by-side using racket/gui, I believe I would have no problem if all my prospective client platform did not have a vertical Operating System taskbars. Since I do have such a taskbar I must use code that takes the width of the taskbar into account. Since I intend

[racket-users] Is it true that 2 side-by-side frames must not be placed within a horizontal-pane because the a frame's parent can only be another frame?

2021-08-07 Thread Don Green
Is it true that 2 side-by-side frames must not be placed within a horizontal-pane because the a frame's parent can only be another frame? Thanks Don -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receivi

[racket-users] racket/gui fn that returns width of O.S. toolbar?

2021-08-06 Thread Don Green
Is there a racket/gui fn that returns width of an Operating System vertical toolbar? In linux and I imagine on Windows and macOS, when there exists a vertical OS toolbar the values returned by get-display-size and get-client-size are the same and are insufficient. So, Is there a racket/gui fn

[racket-users] OS toolbar affects frame width and (get-display-size)...

2021-08-05 Thread Don Green
In the case where there exists a vertical Operating System toolbar: Creating a frame width that is half of the width given by (get-display-size), then moving the resulting window to the right and left of the screen you can see that if you had 2 windows of the same size they would not touch each

[racket-users] frame width and (get-display-size) ...

2021-08-05 Thread Don Green
Creating a frame width that is half of the width given by (get-display-size), then moving the resulting window to the right and left of the screen you can see that if you had 2 windows of the same size they would not touch each other as you would expect. For some reason, dividing the total pixel

[racket-users] How do I create a scrollable popup window?

2021-06-25 Thread Don Green
How do I create a scrollable popup window? I can create a dialog that is a popup but it is not scrollable. The dialog class does not appear to have a scroll option. Is this where I use a 'panel' class instead of the 'dialog' class? -- You received this message because you are subscribed to the

[racket-users] Is it possible to specify a hierarchy of menu-item options in racket/gui more than 2 deep?

2021-06-25 Thread Don Green
Is it possible to specify a hierarchy of menu-item options in racket/gui more than 2 deep? In other words, I am able to define menu-item options such that I do get a menu-bar with options that present sub options and I can call functions using 'callback' from those suboptions, but I have thus f

[racket-users] Trying to specify resize-border for instance of dialog

2021-06-25 Thread Don Green
When I specify as follows: (define dialog2 (new dialog% (label "Get-Prototype-dialog") (style resize-border) )) Returned error: resize-border: unbound identifier in: resize-border -- You received this message because yo

[racket-users] ..

2021-06-25 Thread Don Green
.. -- 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+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com

[racket-users] Is it possible to effectively display a window with a bitmap background?

2021-06-25 Thread Don Green
Is it possible to effectively display a window with a bitmap background? In racket/gui, I can see how to apply a bitmap to a button. If the only way to display a bitmap is in a button, is it practical to size the button to the entire frame or pane in the frame? -- You received this message beca

[racket-users] Can I break my racket/gui program be broken down into multiple modules?

2021-06-24 Thread Don Green
Can I break my racket/gui program be broken down into multiple modules? I am able to require modules through the callback function but not the GUI definitions themselves. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this

Re: [racket-users] Using get-file in racket/gui ...

2021-06-10 Thread Don Green
Where is the documentation that describes how to interpret the racket syntax? For example: (get-file (message parent directory ...)) ;where the arg list of options are optional but if included are positional meaning that to specify an argument such as 'directory' means that the previous 2 args

[racket-users] Using get-file in racket/gui ...

2021-06-10 Thread Don Green
I want the file manipulation popup in racket/gui to display a specified dir, not the current directory. Is that possible? (get-file #f f) ;displays the popup showing the current directory in frame f. I expected the following to display the popup showing the specified directory but it does not:

Re: [racket-users] Can a new user defined pkg encompass nothing more than references to previously defined pkgs?

2021-06-07 Thread Don Green
June 6, 2021 at 7:23:15 PM UTC-6 Philip McGrath wrote: > On Sun, Jun 6, 2021 at 7:59 PM Ben Greenman wrote: > >> On 6/6/21, Don Green wrote: >> > >> > Can a new user defined pkg encompass nothing more than references to >> > previously defined pkgs so

[racket-users] Can a new user defined pkg encompass nothing more than references to previously defined pkgs?

2021-06-06 Thread Don Green
Can a new user defined pkg encompass nothing more than references to previously defined pkgs so that every user created module references a single user defined pkg? -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this gro

Re: [racket-users] PLTCOLLECTS env var is not always in effect - Why?

2021-06-05 Thread Don Green
rch-paths > <https://docs.racket-lang.org/reference/collects.html?q=PLTCOLLECTS#%28def._%28%28quote._~23~25kernel%29._use-user-specific-search-paths%29%29> > ) in each case? > On 6/5/21 6:39 PM, Don Green wrote: > > When I run drracket v 8.1 the additional collection is in e

[racket-users] PLTCOLLECTS env var is not always in effect - Why?

2021-06-05 Thread Don Green
When I run drracket v 8.1 the additional collection is in effect as evidenced by: (current-library-collection-paths) returns: '(# # #) however when I open drracket by clicking on a .rkt file (current-library-collection-paths) returns: '( # #) How to fix this? -- You received this message bec

[racket-users] This v 8.1 collection path looks incorrect...

2021-06-04 Thread Don Green
(current-library-collection-paths) '(# # #) I suspect the above is incorrect because I think the 8.1 path should be to dir: /pkgs rather than /collects. Like this: # -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this g

[racket-users] Re: config.rktd

2021-06-04 Thread Don Green
Now that I have learned of: config.rktd, I think I'd rather use it, if it can be used to set current-library-collection paths. Should I just add to the config.rktd hash list: (current-library-collection paths . '(# # #)) -- You received this message because you are subscribed to the Google G

Re: [racket-users] Regarding collections ...

2021-06-04 Thread Don Green
? On Friday, June 4, 2021 at 7:21:17 AM UTC-6 Matthew Flatt wrote: > At Thu, 3 Jun 2021 20:26:59 -0700 (PDT), Don Green wrote: > > Using DrRacket in linux: > > When I run DrRacket from a terminal, > > > > (current-library-collection-paths) returns the expected paths

[racket-users] Regarding collections ...

2021-06-03 Thread Don Green
Using DrRacket in linux: When I run DrRacket from a terminal, (current-library-collection-paths) returns the expected paths, 3 of them. However, when I open one of my .ss files which is associated with drracket, the file opens in drracket but (current-library-collection-paths) returns only 2 of

[racket-users] DrRacket run button needs several clicks to work...

2021-05-19 Thread Don Green
After upgrading to racket v.8.0, the DrRacket 'run' button does not work consistently with one click. Previously, a single click of the 'run' button performed it's function. Now, I must cycle between clicking on the 'run' button, then click anywhere in the body of the window and repeat until the

[racket-users] copy-file does not preserve file attributes on linux version of Racket...

2021-05-10 Thread Don Green
>From Racket doc: "File permissions are transferred from src to dest; on Windows, the modification time of src is also transferred to dest." Is the above line meant to imply that a unix/linux version of Racket will NOT preserve file attributes using copy-file? -- You received this message beca

[racket-users] copy-file does not preserve attributes (file date)...

2021-05-10 Thread Don Green
Racket documentation claims that copy-file preserves attributes but I find that this is not the case. The destination file date is the current date, not the source file date. Comments? Don -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To un

[racket-users] racket-prefs

2021-04-18 Thread Don Green
Using Racket on Ubuntu. Was Racket version 7 now version 8. New default racket-prefs file is in effect. Still have access to older versions of racket-prefs. Thought the new Racket install would continue to reference my previous racket-prefs file. a) Any thoughts about why any time I install new R

[racket-users] Questions about multiple Racket installations...

2021-04-14 Thread Don Green
I have several versions of Racket installed. Is there a way to switch between using one version and another? Example: use Racket 8 then switch back to using Racket 7. If there is no point in going back to a previous version, is there merit in removing older versions. Thanks. Don. -- You rec

Re: [racket-users] Is this a good uninstall then install Racket plan...

2021-04-14 Thread Don Green
>> What if he has directories that aren’t part of an installed package? That >> was my concern, and why I suggested manually deleting compiled subdirs. >> > > That's right, but given: > > On Tue, Apr 13, 2021 at 8:16 PM Don Green wrote: > >> Welcome t

[racket-users] Is this a good uninstall then install Racket plan...

2021-04-13 Thread Don Green
I have several versions of racket installed on Ubuntu linux at default linux locations. I think I should uninstall them all. Then after downloading a PPA from the racket web site install the version I want to a single directory. (I would be downloading version: 7.8) Does this sound like a plan so

[racket-users] I ran from a terminal: apt get upgrade

2021-04-13 Thread Don Green
apt get upgrade Since Racket was installed on my system, apt get upgrade goes out and finds the latest version of Racket and installs it. version 8. I was having no problems with Racket. In the future I'll use PPA to install new Racket versions when I want them - and all to a single directory. C

[racket-users] How to make a previously installed version of Racket current?

2021-04-13 Thread Don Green
How to make a previously installed version of Racket current? My O.S. is linux Ubuntu. Is it a matter of running: raco pkg install ... again. Thanks Don. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop rec

[racket-users] "You do not have permission to respond to author in this group."

2021-04-13 Thread Don Green
"You do not have permission to respond to author in this group." upon clicking button [Respond To Author] in Google Groups/ Racket Is there a setting I can change or is just the way this group is configured for all? Thanks Don -- You received this message because you are subscribed to the Google

[racket-users] Should I be posting questions about Racket in us...@racket-lang.org?

2020-10-31 Thread Don Green
Should I be posting questions about Racket in us...@racket-lang.org? -- 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+unsubscr...@googlegroups.com. T

[racket-users] "Error saving preferences" when not trying to save preferences...

2020-05-29 Thread Don Green
Any ideas what I can do to stop getting this message anytime I have DrRacket running in 2 terminals in different workspaces on linux/Ubuntu. "Error saving preferences" is the title in the popup window. Text in the window is: "The preferences file is locked (because ...) so your preference change co

[racket-users] Help narrow down problem using plt-web-server:

2019-01-10 Thread Don Green
I could use some help narrowing down this problem using plt-web-server: Context: I can successfully run all code described in: Continue: Web Applications in Racket, Chapters 1 through 17. However, 'Chapter 18: Using HTTPS' where I run plt-web-server is giving me a problem. (I am using OS:Linux/Ubun

[racket-users] Given any list, group n number of sublists into a single list

2017-05-17 Thread Don Green
Racket code that could perform this list manipulation? (every-n-lists-into-list '()) (every-n-lists-into-list 1 '((1) (2))) ;=> '(((1) (2))) (every-n-lists-into-list 2 '((1) (2) (3) (4))) ;=> '(((1) (2)) ((3) (4))) (every-n-lists-into-list 3 '((1) (2) (3) (4)) (5) (6))) ;=> '(((1) (2) (3)) ((4) (5

[racket] Looking for better designs to learn principles.

2015-03-12 Thread Don Green
;Design A: ;Rating: 1 out of 10 ;Poor because it uses set! (define print-two (lambda (f) (print (first f)) (set! f (rest f)) (print (first f)) (set! f (rest f)) f)) (void (print-two '(1 2))) ;=> 12 ;- ;Design B: ;Rating: 2 out of 10 ;Better because it nests

[racket] thread-through ?

2015-02-20 Thread Don Green
I looked in racket documentation and discussion archives for a thread-through function as illustrated below but without success. Any suggestions where I should look? OR please explain that line below only. Looks like it is declaring thread-safe variables x e and any others I care to list. Is that

[racket] Why choose the 'let*' construct over the 'define' construct when both can have sequential scope?

2015-02-19 Thread Don Green
What is/are the reason(s) for choosing the 'let*' construct over the 'define' construct? (define (print-two f) (let* ([_ (print (first f))] [f (rest f)] [_ (print (first f))] [f (rest f)]) f)) (define print-two (lambda (f) (print (first f)) (set! f (rest f

[racket] Is there a list-serve dedicated to Racket or Scheme principles...

2013-10-23 Thread Don Green
? In case it helps with the response, I am interested in reading more about minimalist endeavours. Thanks Don Green Racket Users list: http://lists.racket-lang.org/users

[racket] Can Racket be installed under superuser (su) for administrative access to all directories?

2013-07-26 Thread Don Green
Can Racket be installed under superuser (su) for administrative access to all directories? Any comments? Thanks Don Green Racket Users list: http://lists.racket-lang.org/users

[racket] Trying to run Racket as an administrator: sudo racket

2013-07-25 Thread Don Green
inks method and also the planet software that provides a sudo wrapper on some racket commands, but I have reasons for wanting to first try the approach I am attempting above. Thanks for any suggestions. Don Green Racket Users list: http://lists.racket-lang.org/users

[racket] Cond function with test-expr = then-body works but is it wise?

2013-05-24 Thread Don Green
function is recommend? I am aware of the (cdr (or ... form. I am aware of the cond ... test-expr => proc-expr] form option. Thanks Don Green Racket Users list: http://lists.racket-lang.org/users

[racket] Regexp: Ways to reduce number of list elements returned?

2013-05-10 Thread Don Green
a\"b") ; => '("\"b" "b") I'd prefer: (regexp... "a\"b" ) ; => '("b") Thanks. Don Green Racket Users list: http://lists.racket-lang.org/users

[racket] Regexp-match question: ? means what, or .*? means what...

2013-05-08 Thread Don Green
I do not understand: ;To return pattern and everything left of first instance of pattern, use: .*? inside #rx""; where ? means ___; or where .*? means __; example: (car (regexp-match* #rx".*?/" "12/4/6")) ; => "12/" Can you replace

[racket] Regexp question: Pattern that can match everything to left of first pattern?

2013-05-08 Thread Don Green
Regexp question: Is there a pattern that can match everything to left of first pattern? (regexp-match #rx"x.*" "12x4x6") ; => '("x4x6") ;returns everything to right of first pattern x (regexp-match #rx"___" "12x4x6") ; => '(&

[racket] Is there a symbol in regexp-match syntax, similar to the period but...

2013-05-08 Thread Don Green
each character I want matched but the number of characters will vary. I imagine there might be a better way than creating a function that counts the number of characters and then another function that creates a regexp-match expression and another function that runs that function. Thanks for the advice. Don Green Racket Users list: http://lists.racket-lang.org/users

[racket] What do these symbols mean in Racket regexp documentation?

2013-05-07 Thread Don Green
*›|‹*regexp*› Match either ‹*regexp*›, try left first ex1 Thanks! Don Green Racket Users list: http://lists.racket-lang.org/users

[racket] regexp-match to return a line containing a specified string...

2013-05-07 Thread Don Green
t;) Any suggestions are appreciated. Thanks Don Green Racket Users list: http://lists.racket-lang.org/users

[racket] List functions instead of string functions?

2013-05-03 Thread Don Green
series of characters with a function. I cannot remove from a list, any series of characters with the same function. Any suggestions? I can edit a file using string fns such as regexp-replace. I have used list function: read-words/line. Your advice? Thanks. Don Green

[racket] Racket forward compatability

2013-04-28 Thread Don Green
. My current work around is a call to an external program which provides the regexp function at the speed needed. Thanks for any comment(s). Don Green Racket Users list: http://lists.racket-lang.org/users

[racket] Requirements & constraints for a function to be accepted for inclusion in Racket?

2013-04-28 Thread Don Green
What are the requirements & constraints for a function to be accepted for inclusion in Racket? Thanks Don Green Racket Users list: http://lists.racket-lang.org/users

[racket] A function that creats a single module from multiple modules?

2013-04-21 Thread Don Green
do this? Thanks Don Green Racket Users list: http://lists.racket-lang.org/users

[racket] How to Add to find-library-collection-paths? Continued...

2012-10-24 Thread Don Green
Am I setting PLTCOLLECTS environment variable correctly? Do I need to reference the PLTCOLLECTS variable somehow? The following is contained in my shell file: /home/don/Programs/hello-world.sh #! /bin/bash PLTCOLLECTS=/home/don/.plt-scheme/4.2.1/collects: /home/don/bin/racket -t /home/don/

[racket] How to Add to find-library-collection-paths?

2012-10-24 Thread Don Green
I need (find-library-collection-paths) to return a list that includes the path: # (find-library-collection-paths) ;returns: '(# #) This path and directory exists: # What file contains the paths found by: (find-library-collection-paths)? If so, should I manually add a path to that file

[racket] Merits of 2 different methods of interfacing Racket to a database?

2012-10-01 Thread Don Green
Please comment on the merits of 2 different methods of interfacing Racket to a database. Is Method B preferable to Method A? If so, why? Method A Instead of using the Racket fn: (query-exec db1 "create temporary table table1 (... I can use Racket's 'system' function, to issue SQLite3 sql com

[racket] merits of 2 different methods of interfacing Racket to a database

2012-09-30 Thread Don Green
Please comment on the merits of 2 different methods of interfacing Racket to a database. My use of the term ".import", is in reference to the SQLite3 database dot command. Is Method B preferable to Method A? If so, why? Method A Instead of using the Racket: connection function: (define db1 (s

[racket] "Which topic categories would you like to subscribe to?"...

2012-06-22 Thread Don Green
How do I select "topic categories"? Where do I define "topic categories"? Under Racket list serve settings I see the following setting: "Which topic categories would you like to subscribe to?" |No Topics Defined| Clicking on the box containing the words "No Topics Defined", does nothing. Do I n

Re: [racket] Can I post answers to questions on users@...?

2012-06-22 Thread Don Green
One way to post a reply is by the gmane interface to this racket list serve, then selecting the options: Action, then Follow Up. Racket Users list: http://lists.racket-lang.org/users

Re: [racket] Can't open archived .gz file

2012-06-21 Thread Don Green
How to Gunzip 1) Create dirs: target and subdir: /target/source 2) Place all .gz files in subdir: /target/source 3) From target dir command line, run: gunzip -r source ;note that the generated files at this stage are still not readable. 4) Then run: zcat -r source > new.txt ;the file new.txt w

[racket] thread below: Can't Open Archived gz file: Don Green

2012-06-19 Thread Don Green
How to Gunzip 1) Create dirs: target and subdir: /target/source 2) Place all .gz files in subdir: /target/source 3) From target dir command line, run: gunzip -r source ;note that the generated files at this stage are still not readable. 4) Then run: zcat -r source > new.txt ;the file new.txt w

[racket] Can I post answers to questions on users@racket-lang.org?

2012-06-18 Thread Don Green
Hi, Can I post answers to questions on users@racket-lang.org ? If so, I am looking for some direction. Is the entry point by email sent to users@racket-lang.org ? If that is the case, how do I indicate the thread for it to appear under? Thanks Racket Users list: http://li

[racket] Can't open archived .gz file

2012-06-17 Thread Don Green
Any ideas what the problem might be opening a .gz file on linux? Gunzip goes through the motions and overwrites the 2012-June.txt.gz file, creating file: 2012-June.txt. When a text editor attempts to open this file, the file appears to have codes that prevent it from being interpretted correctly.

[racket] Is there a way to search across archives on a subject?

2012-06-15 Thread Don Green
For example, I imagine that there were questions and answers about getting Racket to access PLT Scheme collections. I'd like to look for these on users@racket-lang.org archives but this seems to be very tedious... select a dated archive, then seach for the subject, select another dated archive, the

[racket] Problem getting Racket to use my version 4.2 collection(s).

2012-06-15 Thread Don Green
Hi, The first line below shows my command line entry. The remaining lines show the result. Obviously, Racket is looking for a .rkt version of my .ss file. Do I really have to change my extensions? There must be a better way. Thanks racket -i --addon /don/.plt-scheme/4.2.1/collects/DG/programs/a

[racket] Why are some Racket functions such a 'member' designed as partially boolean?

2012-05-25 Thread Don Green
Why are some Racket functions such a 'member' not designed as booleans? I would expect 'member' to be a boolean. I am inclined to write my own version of 'member' that is boolean. Before I do, I am wondering if the bright person who designed the Racket function: 'member', did so for some very good

[racket] complex sort or how to sort lines

2012-05-25 Thread Don Green
Given the output of Racket's read-words/line function, which produces a list of lists. Each word is in a list, each group of words on a line is in a list, all within a list. Any ideas on how to sort on the car (first element) of each list that corresponds to a line? In other words, I want to sort

[racket] Does bug report advice apply to this mailing list - Don't include reference to collection(s)?

2012-05-14 Thread Don Green
I have been advised that when submitting bug reports I should not include 'required' statements that call my relevant collections. Question 1: Should I copy any required collections directly into a copy of my module before sending it along with my question? This would make the code immediatly ex

[racket] (no subject)

2012-05-14 Thread Don Green
I have been advised that when submitting bug reports I should not include 'required' statements that call my relevant collections. Question 1: Should I copy any required collections directly into a copy of my module before sending it along with my question? This would make the code immediatly ex

[racket] Looking for guidelines regarding paths...

2012-05-12 Thread Don Green
What are some guidelines about use of paths? Am I correct in thinking the following is a path: # Should I specify paths, such as above, rather than strings such as: "/home/don/.plt-scheme/4.2.1/collects/DG/append2.ss" (I notice that many Racket path functions convert my strings to paths. I want t

[racket] Want to understand about how to use incomplete paths produced by directory-list.

2012-05-11 Thread Don Green
Wondering... Is the best way for me to learn about how to use Racket paths: a) by asking the question in this mailing list, OR, b) by looking in some repository that has information on this. (If I should look in a repository, which one?) THANKS! Racket Users list: http://l