soegaard2
2019-5-17 19:04:26

Been wondering: Is it well-known, that clicking just to the left of “Package” will sort the packages with the newest first?


soegaard2
2019-5-17 19:04:28

michael.ballantyne
2019-5-17 20:07:30

make in-place on master seems to be trying to do a unix-style install on my linux system. Anyone else run into this? The relevant part of the output:

  "" \| /*) ;; \
  *) echo "expected an absolute path for DESTDIR; given: "; exit 1;; \
        esac
mkdir -p "/usr/local/bin" "/usr/local/share/racket/collects" "/usr/local/share/doc/racket" "/usr/local/lib64" "/usr/local/include/racket" "/usr/local/lib64/racket" "/usr/local/share/racket" "/usr/local/etc/racket" "/usr/local/share/applications" "/usr/local/share/man"
mkdir: cannot create directory ‘/usr/local/share/racket’: Permission denied
mkdir: cannot create directory ‘/usr/local/share/doc’: Permission denied
mkdir: cannot create directory ‘/usr/local/include/racket’: Permission denied
mkdir: cannot create directory ‘/usr/local/lib64/racket’: Permission denied
mkdir: cannot create directory ‘/usr/local/share/racket’: Permission denied
mkdir: cannot create directory ‘/usr/local/etc’: Permission denied
mkdir: cannot create directory ‘/usr/local/share/applications’: Permission denied
mkdir: cannot create directory ‘/usr/local/share/man’: Permission denied

michael.ballantyne
2019-5-17 20:14:38

Does it with the v7.2 tag as well, so it’s probably the fault of something weird on my system.


lexi.lambda
2019-5-17 23:18:32

@mflatt Is there an easy way to check whether or not the optimizer is doing something I want on Racket-on-Chez? On the Racket VM, I use raco decompile and read the output, but on Chez, I just get back <opaque-compiled-linklet>, which isn’t very helpful.


lexi.lambda
2019-5-17 23:37:49

Ah, I found PLT_LINKLET_SHOW_CP0, which seems to do what I want. Nevermind!


carl.morris.world
2019-5-18 00:25:23

That’s pretty cool! I’ll give that a try to see if it provides a cleaner approach to testing.

In any case that feature seems useful for embedding a DSL in an otherwise normal racket file. Like your example of embedding a parser could be handy as an alternative to say regular expressions in the right use case.


notjack
2019-5-18 00:55:03

Can it somehow cooperate with drracket syntax highlighting and auto indentation?