Re: [racket-users] Racket 7.5 DMG file does not open on OSX 10.11

2019-12-06 Thread Darth Vadør
Hi, If it isn't too much trouble, I at least would really appreciate this. One reason I think this is important is because Homebrew has a cask for Racket, which uses the .dmg distribution. It sets up $PATH (and probably other things I don't know about as well), and can update Racket for you,

[racket-users] How to use check-expect when output is long af

2019-12-06 Thread 'MrAlexWatching' via Racket Users
Hi, i am pretty new to racket and I am wondering if there is a more elegant way of using check-expect when the expected list is a list of structure type and its so long that it completely destroys my codes appearance. -- You received this message because you are subscribed to the Google

Re: [racket-users] Scribble output without navigation

2019-12-06 Thread 'Reuben Thomas' via Racket Users
On Thu, 5 Dec 2019 at 14:47, Sam Tobin-Hochstadt wrote: > The usual way I've done this is with some custom CSS to set the > navigation to "display: none". > Thanks. I would really prefer not to have the navigation apparatus, so I guess post-processing the output is the only thing I can do

[racket-users] xrepl in DrRacket?

2019-12-06 Thread 'Reuben Thomas' via Racket Users
(Surprised that extensive Googling, read of Racket documentation, and searching the mailing list archive doesn't throw up anything; surely I've missed something? Apologies in advance therefore!) I notice that although xrepl is loaded by default in command-line racket, and indeed in DrRacket, its

[racket-users] Re: What’s everyone working on this week (46/2019)?

2019-12-06 Thread Geoffrey Knauth
Using Racket to decode BUFR files from Deutscher Wetterdienst and produce JSON for consumption by other processes. ECMWF's eccodes also produces JSON but the JSON it produces is kind of ridiculous. Ridiculous as in starting a new array at each new element within an array, making the JSON

Re: [racket-users] Scribble output without navigation

2019-12-06 Thread Sam Tobin-Hochstadt
Is there a reason that not showing it is a problem, relative to not having it in the HTML? The CSS approach is quite easy. Sam On Fri, Dec 6, 2019 at 5:18 AM 'Reuben Thomas' via Racket Users wrote: > > On Thu, 5 Dec 2019 at 14:47, Sam Tobin-Hochstadt wrote: >> >> The usual way I've done this

Re: [racket-users] Scribble output without navigation

2019-12-06 Thread Matthew Flatt
Do 'no-toc and 'no-sidebar style properties on the main part help? Or does that still leave navigation elements that you want removed? At Fri, 6 Dec 2019 10:31:56 -0500, Sam Tobin-Hochstadt wrote: > Is there a reason that not showing it is a problem, relative to not > having it in the HTML? The

Re: [racket-users] DrRacket 7.5 colors a bit dark and low contrast on Mac

2019-12-06 Thread Daniel Prager
Hi Robby > What happens if you open the preferences dialog and turn white-on-Black on and back off again? No change. I still have 7.2 on my system, which works fine. Here's what it looks like in black-on-white for reference. [image: image.png] > >> -- You received this message because you

Re: [racket-users] DrRacket 7.5 colors a bit dark and low contrast on Mac

2019-12-06 Thread Sorawee Porncharoenwase
Confirm that I have this problem as well, even when I reset all preference files. On Fri, Dec 6, 2019 at 11:17 AM Daniel Prager wrote: > Hi Robby > > > What happens if you open the preferences dialog and turn white-on-Black > on and back off again? > > No change. > > I still have 7.2 on my

Re: [racket-users] DrRacket 7.5 colors a bit dark and low contrast on Mac

2019-12-06 Thread Robby Findler
Can you folks send me your preference file (off list)? Feel free to redact it however you want. Robby On Fri, Dec 6, 2019 at 1:29 PM Sorawee Porncharoenwase < sorawee.pw...@gmail.com> wrote: > Confirm that I have this problem as well, even when I reset all preference > files. > > On Fri, Dec 6,

Re: [racket-users] DrRacket 7.5 colors a bit dark and low contrast on Mac

2019-12-06 Thread Robby Findler
Okay, Sorawee and I had a side-bar conversation and I've pushed a fix. Thanks for alerting me to the problem! (The DrRacket-level preferences don't default to the right color scheme when the OS is in dark mode currently either, but maybe I'll have to fix that one another day.) Robby On Fri, Dec

[racket-users] New generic relations package

2019-12-06 Thread Siddhartha Kasivajhula
Hi folks, Hope everyone's having a relaxing start to the holiday season. I've written a package dealing with generic relations and types, just announcing it here in case anyone finds it useful. https://docs.racket-lang.org/relation/index.html The package provides generic versions of order

Re: [racket-users] DrRacket 7.5 colors a bit dark and low contrast on Mac

2019-12-06 Thread Daniel Prager
Thank-you both! Cheers Dan On Sat, Dec 7, 2019 at 8:25 AM Robby Findler wrote: > Okay, Sorawee and I had a side-bar conversation and I've pushed a fix. > Thanks for alerting me to the problem! > > (The DrRacket-level preferences don't default to the right color scheme > when the OS is in

[racket-users] Day 7 Advent of Code - continuations?

2019-12-06 Thread Daniel Prager
Does anyone have a continuation-based solution to AoC day 7? https://adventofcode.com/2019/day/7 I don't normally use continuations, and I solved today's puzzles without them, but part 2 looks to me like it might have yielded ;-) a more elegant solution. Dan -- You received this message