<div dir="ltr">Good grief, was it necessary to spam the list with your requests? You could have just sent one email instead of replying to like 20 different threads?<div><br></div><div>And it would have been nice if you'd read the basic instructions which tells you exactly how to unsubscribe yourself without flooding my inbox.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Sep 29, 2014 at 4:44 PM, Moshe Deutsch <span dir="ltr"><<a href="mailto:moshedeutsch115@gmail.com" target="_blank">moshedeutsch115@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Please take me off the list<br>
<br>
Thanks<br>
<br>
On Thu, Sep 25, 2014 at 8:57 AM,  <<a href="mailto:users-request@racket-lang.org">users-request@racket-lang.org</a>> wrote:<br>
> Send users mailing list submissions to<br>
>         <a href="mailto:users@racket-lang.org">users@racket-lang.org</a><br>
><br>
> To subscribe or unsubscribe via the World Wide Web, visit<br>
>         <a href="http://lists.racket-lang.org/users/listinfo" target="_blank">http://lists.racket-lang.org/users/listinfo</a><br>
> or, via email, send a message with subject or body 'help' to<br>
>         <a href="mailto:users-request@racket-lang.org">users-request@racket-lang.org</a><br>
><br>
> You can reach the person managing the list at<br>
>         <a href="mailto:users-owner@racket-lang.org">users-owner@racket-lang.org</a><br>
><br>
> When replying, please edit your Subject line so it is more specific<br>
> than "Re: Contents of users digest..."<br>
><br>
><br>
> [Racket Users list:<br>
>  <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a> ]<br>
><br>
><br>
> Today's Topics:<br>
><br>
>    1. macro question (Alejandro Zamora)<br>
>    2. Re: ranking items by their appearance in sets (David T. Pierson)<br>
>    3. Switching from editor to repl (C K Kashyap)<br>
>    4. Re: Switching from editor to repl (Jay McCarthy)<br>
>    5. Re: Switching from editor to repl (C K Kashyap)<br>
>    6. Re: Switching from editor to repl (Robby Findler)<br>
><br>
><br>
> ----------------------------------------------------------------------<br>
><br>
> Message: 1<br>
> Date: Wed, 24 Sep 2014 22:35:49 -0400<br>
> From: Alejandro Zamora <<a href="mailto:terefv@ltu.sld.cu">terefv@ltu.sld.cu</a>><br>
> To: Racket Users <<a href="mailto:users@racket-lang.org">users@racket-lang.org</a>><br>
> Subject: [racket] macro question<br>
> Message-ID: <20140924223549.7f15c912@alejandro-H61H2-CM><br>
> Content-Type: text/plain; charset=US-ASCII<br>
><br>
> Hi Racket people:<br>
>         I have a (maybe too simple) question:<br>
>         How I create one macro like this (but using define-macro &<br>
>         R5RS language only)?:<br>
><br>
>         (vars sym var-cant val-of-vars)<br>
><br>
>         Example:<br>
>         (vars id 5 null) -> (prog (define id1 null)<br>
>                                   (define id2 null)<br>
>                                   (define id3 null)<br>
>                                   (define id4 null)<br>
>                                   (define id5 null))<br>
><br>
> --<br>
> Nunca digas nunca, di mejor: gracias, permiso, disculpe.<br>
><br>
> Este mensaje le ha llegado mediante el servicio de correo electronico que ofrece Infomed para respaldar el cumplimiento de las misiones del Sistema Nacional de Salud. La persona que envia este correo asume el compromiso de usar el servicio a tales fines y cumplir con las regulaciones establecidas<br>
><br>
> Infomed: <a href="http://www.sld.cu/" target="_blank">http://www.sld.cu/</a><br>
><br>
><br>
><br>
> ------------------------------<br>
><br>
> Message: 2<br>
> Date: Wed, 24 Sep 2014 23:07:13 -0400<br>
> From: "David T. Pierson" <<a href="mailto:dtp@mindstory.com">dtp@mindstory.com</a>><br>
> To: Matthias Felleisen <<a href="mailto:matthias@ccs.neu.edu">matthias@ccs.neu.edu</a>><br>
> Cc: <a href="mailto:users@racket-lang.org">users@racket-lang.org</a><br>
> Subject: Re: [racket] ranking items by their appearance in sets<br>
> Message-ID: <<a href="mailto:1411613699.19584%25dtp@mindstory.com">1411613699.19584%dtp@mindstory.com</a>><br>
> Content-Type: text/plain; charset=us-ascii<br>
><br>
> On Wed, Sep 24, 2014 at 10:44:45AM -0400, Matthias Felleisen wrote:<br>
>> Style: Here is my rewrite with style suggestions. I liked to have a<br>
>> single point that tests all versions of a function when I conduct such<br>
>> design experiments. I also want to have all my test code in the test<br>
>> submodule so that it doesn't get deployed. That's why I am using a<br>
>> syntactic abstraction that unfolds into a submodule rather than a<br>
>> function that calls things.<br>
><br>
> Thanks for the style suggestions.  I am reminded I need to reread the<br>
> style guide.<br>
><br>
>> Performance: I have not checked their performance but I cannot imagine<br>
>> the first version to be performant. See my annotations.<br>
><br>
> Good point.  I had put performance out of my mind because my real data<br>
> is relatively small and I just wanted to play a bit with the methods,<br>
> but I definitely appreciate the notes.<br>
><br>
>> My choice: Your second version is what I would have written.<br>
><br>
> Glad to know I was on the right track.<br>
><br>
> Thank you.<br>
><br>
> David<br>
><br>
><br>
> ------------------------------<br>
><br>
> Message: 3<br>
> Date: Thu, 25 Sep 2014 11:47:57 +0530<br>
> From: C K Kashyap <<a href="mailto:ckkashyap@gmail.com">ckkashyap@gmail.com</a>><br>
> To: <a href="mailto:users@racket-lang.org">users@racket-lang.org</a><br>
> Subject: [racket] Switching from editor to repl<br>
> Message-ID:<br>
>         <<a href="mailto:CAGdT1gqUp-0hdF15FYo2T_Qpm%2Bqf9AkKMak_iLV9HTC4WkDrtQ@mail.gmail.com">CAGdT1gqUp-0hdF15FYo2T_Qpm+qf9AkKMak_iLV9HTC4WkDrtQ@mail.gmail.com</a>><br>
> Content-Type: text/plain; charset="utf-8"<br>
><br>
> Hi,<br>
> I am new to racket (but am really excited by the idea - everything is a<br>
> program) - need a quick help with Dr Racket -<br>
><br>
> What's the keyboard shortcut to switch between editor and repl?<br>
><br>
> I got to know from a video on youtube that I could use C-e to toggle the<br>
> repl visibility but not able to find out how to get to the rpl using the<br>
> keyboard.<br>
> Regards,<br>
> Kashyap<br>
> -------------- next part --------------<br>
> An HTML attachment was scrubbed...<br>
> URL: <<a href="http://lists.racket-lang.org/users/archive/attachments/20140925/39d4382b/attachment-0001.html" target="_blank">http://lists.racket-lang.org/users/archive/attachments/20140925/39d4382b/attachment-0001.html</a>><br>
><br>
> ------------------------------<br>
><br>
> Message: 4<br>
> Date: Thu, 25 Sep 2014 02:33:55 -0400<br>
> From: Jay McCarthy <<a href="mailto:jay.mccarthy@gmail.com">jay.mccarthy@gmail.com</a>><br>
> To: C K Kashyap <<a href="mailto:ckkashyap@gmail.com">ckkashyap@gmail.com</a>><br>
> Cc: users <<a href="mailto:users@racket-lang.org">users@racket-lang.org</a>><br>
> Subject: Re: [racket] Switching from editor to repl<br>
> Message-ID:<br>
>         <<a href="mailto:CAJYbDamt%2B_RvG1utwzjJ1KW-m5ynRDxPr2xVivTOGQj8Y2R3DA@mail.gmail.com">CAJYbDamt+_RvG1utwzjJ1KW-m5ynRDxPr2xVivTOGQj8Y2R3DA@mail.gmail.com</a>><br>
> Content-Type: text/plain; charset=UTF-8<br>
><br>
> I use C-e and C-d to do this and I just hit it twice, once hides the<br>
> side and the second shows it and focuses it.<br>
><br>
> On Thu, Sep 25, 2014 at 2:17 AM, C K Kashyap <<a href="mailto:ckkashyap@gmail.com">ckkashyap@gmail.com</a>> wrote:<br>
>> Hi,<br>
>> I am new to racket (but am really excited by the idea - everything is a<br>
>> program) - need a quick help with Dr Racket -<br>
>><br>
>> What's the keyboard shortcut to switch between editor and repl?<br>
>><br>
>> I got to know from a video on youtube that I could use C-e to toggle the<br>
>> repl visibility but not able to find out how to get to the rpl using the<br>
>> keyboard.<br>
>> Regards,<br>
>> Kashyap<br>
>><br>
>> ____________________<br>
>>   Racket Users list:<br>
>>   <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
>><br>
><br>
><br>
><br>
> --<br>
> Jay McCarthy<br>
> <a href="http://jeapostrophe.github.io" target="_blank">http://jeapostrophe.github.io</a><br>
><br>
>            "Wherefore, be not weary in well-doing,<br>
>       for ye are laying the foundation of a great work.<br>
> And out of small things proceedeth that which is great."<br>
>                           - D&C 64:33<br>
><br>
><br>
> ------------------------------<br>
><br>
> Message: 5<br>
> Date: Thu, 25 Sep 2014 13:13:58 +0530<br>
> From: C K Kashyap <<a href="mailto:ckkashyap@gmail.com">ckkashyap@gmail.com</a>><br>
> To: Jay McCarthy <<a href="mailto:jay.mccarthy@gmail.com">jay.mccarthy@gmail.com</a>><br>
> Cc: users <<a href="mailto:users@racket-lang.org">users@racket-lang.org</a>><br>
> Subject: Re: [racket] Switching from editor to repl<br>
> Message-ID:<br>
>         <CAGdT1gqYYRz1Kk11U1==oUgP93ELFR0PFPsdG5v8C_tYjwqH=<a href="mailto:g@mail.gmail.com">g@mail.gmail.com</a>><br>
> Content-Type: text/plain; charset="utf-8"<br>
><br>
> C-d works for me ... thanks Jay.<br>
> I was wondering though if I could've found this out in the documentation<br>
> somewhere. I could not find it in the guide/google.<br>
><br>
> Regards,<br>
> Kashyap<br>
><br>
> On Thu, Sep 25, 2014 at 12:03 PM, Jay McCarthy <<a href="mailto:jay.mccarthy@gmail.com">jay.mccarthy@gmail.com</a>><br>
> wrote:<br>
><br>
>> I use C-e and C-d to do this and I just hit it twice, once hides the<br>
>> side and the second shows it and focuses it.<br>
>><br>
>> On Thu, Sep 25, 2014 at 2:17 AM, C K Kashyap <<a href="mailto:ckkashyap@gmail.com">ckkashyap@gmail.com</a>> wrote:<br>
>> > Hi,<br>
>> > I am new to racket (but am really excited by the idea - everything is a<br>
>> > program) - need a quick help with Dr Racket -<br>
>> ><br>
>> > What's the keyboard shortcut to switch between editor and repl?<br>
>> ><br>
>> > I got to know from a video on youtube that I could use C-e to toggle the<br>
>> > repl visibility but not able to find out how to get to the rpl using the<br>
>> > keyboard.<br>
>> > Regards,<br>
>> > Kashyap<br>
>> ><br>
>> > ____________________<br>
>> >   Racket Users list:<br>
>> >   <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
>> ><br>
>><br>
>><br>
>><br>
>> --<br>
>> Jay McCarthy<br>
>> <a href="http://jeapostrophe.github.io" target="_blank">http://jeapostrophe.github.io</a><br>
>><br>
>>            "Wherefore, be not weary in well-doing,<br>
>>       for ye are laying the foundation of a great work.<br>
>> And out of small things proceedeth that which is great."<br>
>>                           - D&C 64:33<br>
>><br>
> -------------- next part --------------<br>
> An HTML attachment was scrubbed...<br>
> URL: <<a href="http://lists.racket-lang.org/users/archive/attachments/20140925/93aa6ef8/attachment-0001.html" target="_blank">http://lists.racket-lang.org/users/archive/attachments/20140925/93aa6ef8/attachment-0001.html</a>><br>
><br>
> ------------------------------<br>
><br>
> Message: 6<br>
> Date: Thu, 25 Sep 2014 07:56:53 -0500<br>
> From: Robby Findler <<a href="mailto:robby@eecs.northwestern.edu">robby@eecs.northwestern.edu</a>><br>
> To: C K Kashyap <<a href="mailto:ckkashyap@gmail.com">ckkashyap@gmail.com</a>><br>
> Cc: Jay McCarthy <<a href="mailto:jay.mccarthy@gmail.com">jay.mccarthy@gmail.com</a>>, users<br>
>         <<a href="mailto:users@racket-lang.org">users@racket-lang.org</a>><br>
> Subject: Re: [racket] Switching from editor to repl<br>
> Message-ID:<br>
>         <CAL3TdONC6=<a href="mailto:U8EibFfxLYDNVVW0%2BSEo9%2BDo5ZuMSu2bLQRm8y8A@mail.gmail.com">U8EibFfxLYDNVVW0+SEo9+Do5ZuMSu2bLQRm8y8A@mail.gmail.com</a>><br>
> Content-Type: text/plain; charset=UTF-8<br>
><br>
> The guide focuses on the language, not the DrRacket IDE. This is a<br>
> link to the IDE docs that has a list of keyboard shortcuts.<br>
><br>
> You might also try looking at the menu items; things are a little more<br>
> discoverable that way too.<br>
><br>
> <a href="http://docs.racket-lang.org/drracket/Keyboard_Shortcuts.html" target="_blank">http://docs.racket-lang.org/drracket/Keyboard_Shortcuts.html</a><br>
><br>
> hth,<br>
> Robby<br>
><br>
> On Thu, Sep 25, 2014 at 2:43 AM, C K Kashyap <<a href="mailto:ckkashyap@gmail.com">ckkashyap@gmail.com</a>> wrote:<br>
>> C-d works for me ... thanks Jay.<br>
>> I was wondering though if I could've found this out in the documentation<br>
>> somewhere. I could not find it in the guide/google.<br>
>><br>
>> Regards,<br>
>> Kashyap<br>
>><br>
>> On Thu, Sep 25, 2014 at 12:03 PM, Jay McCarthy <<a href="mailto:jay.mccarthy@gmail.com">jay.mccarthy@gmail.com</a>><br>
>> wrote:<br>
>>><br>
>>> I use C-e and C-d to do this and I just hit it twice, once hides the<br>
>>> side and the second shows it and focuses it.<br>
>>><br>
>>> On Thu, Sep 25, 2014 at 2:17 AM, C K Kashyap <<a href="mailto:ckkashyap@gmail.com">ckkashyap@gmail.com</a>> wrote:<br>
>>> > Hi,<br>
>>> > I am new to racket (but am really excited by the idea - everything is a<br>
>>> > program) - need a quick help with Dr Racket -<br>
>>> ><br>
>>> > What's the keyboard shortcut to switch between editor and repl?<br>
>>> ><br>
>>> > I got to know from a video on youtube that I could use C-e to toggle the<br>
>>> > repl visibility but not able to find out how to get to the rpl using the<br>
>>> > keyboard.<br>
>>> > Regards,<br>
>>> > Kashyap<br>
>>> ><br>
>>> > ____________________<br>
>>> >   Racket Users list:<br>
>>> >   <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
>>> ><br>
>>><br>
>>><br>
>>><br>
>>> --<br>
>>> Jay McCarthy<br>
>>> <a href="http://jeapostrophe.github.io" target="_blank">http://jeapostrophe.github.io</a><br>
>>><br>
>>>            "Wherefore, be not weary in well-doing,<br>
>>>       for ye are laying the foundation of a great work.<br>
>>> And out of small things proceedeth that which is great."<br>
>>>                           - D&C 64:33<br>
>><br>
>><br>
>><br>
>> ____________________<br>
>>   Racket Users list:<br>
>>   <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
>><br>
><br>
><br>
> End of users Digest, Vol 109, Issue 55<br>
> **************************************<br>
<br>
____________________<br>
  Racket Users list:<br>
  <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
</blockquote></div><br></div>