Re: [racket-users] catalog not working?

2020-07-23 Thread Nathaniel Griswold
Oh, hm ok I was having a memory access crash in raco I assumed some causation.. I’ll debug tomorrow > On Jul 23, 2020, at 10:14 PM, Sorawee Porncharoenwase > wrote: > >  > Though, considering that there are so many people who are misled that the > catalog is down (my past self included), it

[racket-users] Making my own helper function

2020-07-23 Thread JJ C
I am in a course where I have to use beginning student with list abbreviation in Racket to do assignments. Below is my code for unique-right, which is supposed to return a list which has only the right most occurrences of the elements of list. The restriction in doing the asisngment is that I

Re: [racket-users] catalog not working?

2020-07-23 Thread Sorawee Porncharoenwase
Though, considering that there are so many people who are misled that the catalog is down (my past self included), it might be better if that page displays some useful information rather than a 404. On Thu, Jul 23, 2020 at 8:12 PM Sorawee Porncharoenwase < sorawee.pw...@gmail.com> wrote: > The

Re: [racket-users] catalog not working?

2020-07-23 Thread Sorawee Porncharoenwase
The catalog is functional. That path is simply not served. See also: From: Matthew Flatt Date: Thu, Feb 27, 2020 at 3:00 PM Subject: Re: [racket-users] download catalog down? To: Tom Gillespie Cc: Racket Users That path isn't served, but something like

[racket-users] catalog not working?

2020-07-23 Thread Nate Griswold
My raco pkg install is crashing and manual navigation to the package catalog looks broken https://download.racket-lang.org/releases/7.7/catalog/ [image: image.png] Nate -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this

Re: [racket-users] “If you could have a wish granted, what would you like to see next in Racket?”

2020-07-23 Thread George Neuner
Hi Laurent, No, "sandboxing" isn't what I want - at least not usually.  I want to be able to limit the VM process itself ... particularly the heap size but occasionally other things as well.  I often have the need to squeeze a Racket application into the corner of a small cloud VM, and I

Re: [racket-users] Multiple stage compilation in a tower of languages

2020-07-23 Thread Sorawee Porncharoenwase
local-expand supports the stop-list argument, so I think you can put all core forms there. #lang racket (require syntax/parse/define) (define-syntax (A-core stx) (syntax-parse stx #:literals (b-core) [(A-core (b-core x)) #'(printf "A-core got value ~a.~n" x)])) (define-syntax (b-core

[racket-users] Multiple stage compilation in a tower of languages

2020-07-23 Thread Thomas Del Vecchio
Hi all, I'm working on a family of languages in Racket, and I'm running into a conceptual issue with the information flow of the project. I have a standard core language whose syntax is s-expressions, with some macros in the expander. Then, there is a surface language (compiled into

Re: [racket-users] “If you could have a wish granted, what would you like to see next in Racket?”

2020-07-23 Thread Laurent
Just in case (not sure how relevant this is to you): https://docs.racket-lang.org/reference/Sandboxed_Evaluation.html?q=with-limits#%28form._%28%28lib._racket%2Fsandbox..rkt%29._with-limits%29%29 Works pretty well, but there are some caveats: if an object can be reached outside of the

Re: [racket-users] “If you could have a wish granted, what would you like to see next in Racket?”

2020-07-23 Thread George Neuner
On 7/23/2020 8:30 AM, Stephen De Gabrielle wrote: “If you could have a wish granted, what would you like to see next in Racket?” https://www.reddit.com/r/Racket/comments/hwe49b/if_you_could_have_a_wish_granted_what_would_you/?utm_source=share_medium=ios_app_name=iossmf or [original

[racket-users] Re: Racket Survey 2020

2020-07-23 Thread Sam Tobin-Hochstadt
A reminder: there's one more week to take the 2020 Racket Survey. We've had fantastic response so far, but we don't want to miss anyone. Fill out the survey here: https://forms.gle/XeHdgv8R7o2VjBbF9 Sam On Tue, Jun 23, 2020 at 12:22 PM Sam Tobin-Hochstadt wrote: > > We’re taking a survey! We

[racket-users] “If you could have a wish granted, what would you like to see next in Racket?”

2020-07-23 Thread Stephen De Gabrielle
“If you could have a wish granted, what would you like to see next in Racket?” https://www.reddit.com/r/Racket/comments/hwe49b/if_you_could_have_a_wish_granted_what_would_you/?utm_source=share_medium=ios_app_name=iossmf or [original twitter](

Re: [racket-users] Replace pre-installed rackunit with git source

2020-07-23 Thread zeRusski
Sam thank you. Your suggestions mostly worked. At least I was able to unbork my installation. Steps taken: - install the regular `rackunit` ⇒ still reported a bunch of errors re missing typet/rackunit - raco pkg update --clone extra-pkgs/rackunit ⇒ took its sweet time, also produce similar errors