
I would prefer something like (~seq name '-n nombre) ...
. Isn’t match non-deterministic already anyway?

@thaenalpha has joined the channel

@arthertz you should just be able to add some raco command to shell.nix… i’ll have to try it later

I haven’t found any docs for this, but does Racket have any built-in support (x-platform) for making simple tooltray apps?

I can’t recall seeing anything cross platform.

I don’t know that there’s a cross-platform concept of tooltray apps

Can anyone try the program:
#lang racket
(struct a ())
Run the macro stepper on it (raco macro-stepper file.rkt
), and then click “End”?
I got:
cairo_quartz_get_cg_context_with_clip: implementation not found; arguments: #<cpointer>
context...:
/Users/sorawee/projects/racket/racket/share/pkgs/draw-lib/racket/draw/private/emoji.rkt:159:7: draw-loop
/Users/sorawee/projects/racket/racket/share/pkgs/draw-lib/racket/draw/private/dc.rkt:1457:4: do-text method in dc%
very consistently.

FWIW it is not listed here: https://www.cairographics.org/manual/cairo-Quartz-Surfaces.html

Maybe it was removed from Cairo?

That looks like a bug, then. I will make an issue.

It’s possible that Matthew has patched the Racket version of Cairo. https://hg.mozilla.org/mozilla-central/file/tip/gfx/cairo/native-clipping.patch


Weird. I did git pull; make
, so everything should be up-to-date.

Can you reproduce the problem, though?

Note that you need to click “End” after the macro stepper dialog appears.

I haven’t installed the latest release, and don’t have the time today.

The patches doesn’t mention M1.

Gotcha, no worries!

Hmm. My libcairo.2.dylib
was up-to-date already.

Hi all. Does anyone here have permission to redeploy the http://racket-lang.org\|racket-lang.org website? I’d like to see some of the recent merges-to-master go live…

is there a sorted version of in-hash
? I’d like to use a for-loop to iterate over a hash, sorted by the keys hash-map
has the try-order?
argument.

~seq
for match would be wonderful

re: ^ my PPA message above, can someone with mod rights check the mailing list queue to see if my announcement got stuck? It’s been a day and hasn’t made it through.

Fixed now

Thanks!

@douglas.lange has joined the channel

@crystal has joined the channel

there’s no sorted hash structure yet, unfortunately

I’m working on making one but you can also use the ddict
package

which gives you hashes that are insertion-ordered, so if you sort before inserting you’ll get a sorted hash