laurent.orseau
2021-9-17 08:07:02

Is it possible to make a filter just based on some of the keywords in these emails?


spdegabrielle
2021-9-17 09:31:40

Welcome back from holidays everyone, can I have some :+1: reactions if there is interest in resuming a monthly racket virtual meetup?


markus.pfeiffer
2021-9-17 09:46:47

On that note, if there are any racketeers around Edinburgh I would at some point be keen to do in-person meetups

(should that become considered reasonably safe at some point soon at least)


spdegabrielle
2021-9-17 09:52:03

you should also ask this on other racket, scheme, lisp and other language fora; I’ve started working on a list https://docs.google.com/spreadsheets/d/1WxnA2NYmj33w7TVA4QWwMQUaqh3lQzhE8MN6QSheyCQ/edit?usp=sharing


markus.pfeiffer
2021-9-17 09:52:41

that is sensible to increase catchment


spdegabrielle
2021-9-17 09:53:04

I think the universities cs depts too. I’m sure there are some CS/language design people at Glasgow, and that is not too far away.


markus.pfeiffer
2021-9-17 09:53:23

there are also quite a few at edinburgh uni


markus.pfeiffer
2021-9-17 09:53:29

(to which i have no affiliation)


cperivol
2021-9-17 10:17:16

I can send out an internal mail to the edin informatics mailing list


spdegabrielle
2021-9-17 10:56:36

thank you. Please put on racket-user email list and submit to Racket News ; there is a special section dedicated to Meetups


spdegabrielle
2021-9-17 12:39:44

The Syntax Parse Bee is now over for 2021.

Thank you to the participants!!!

We received 22 entries from 15 individuals:

https://github.com/syntax-objects/Summer2021/issues

The final results of these submissions cover a wide range. Some are macros that you could use in any Racket project. Others are syntax classes. Still others are more like starter code for a new DSL.

The code inside these submissions is very informative. Whether you’re new to macros or a seasoned syntax parser, there is a lot to learn from.

  • Ben + Stephen

shu--hung
2021-9-17 22:23:12

How does scribble generate the index page of the documentation? I see some code like (seclink #:doc doc-mod-path), which seems to point to ordinary cross-reference resolution. But tags inside individual packages are rendered as relative URLs, not absolute URLs as in the doc index. I am not sure why they are different.


shu--hung
2021-9-17 22:26:56

A little more context: I see that there are two index pages, one is in the installation scope ($RACKET/doc/index.html) and one is in the user scope ($HOME/.local/share/racket/$VERSION/doc/index.html). I’m having trouble with the user-scope one.


mflatt
2021-9-17 22:35:01

The user-scope search is configured via “pkgs/racket-index/scribblings/main/user/info.rkt”, which specifies a 'user-doc style. I think that causes “pkgs/racket-index/setup/scribble.rkt” to configure rendering to generate absolute references instead of relative ones.


mflatt
2021-9-17 22:35:41

See make-renderer in “pkgs/racket-index/setup/scribble.rkt”.


shu--hung
2021-9-17 22:40:56

Nice! Thanks for the pointer to 'user-doc. I totally missed it