ben
2019-5-15 15:03:14

Do the docs say anything about hashes whose values are all #f? I remember hearing those were special


samth
2019-5-15 15:34:12

I believe that it’s hashes that are all #t, and that it avoids storing the #ts, but @mflatt or the source code would know for sure


samth
2019-5-15 18:13:39

@greg The 7.3 blog post (https://github.com/racket/racket-lang-org/blob/master/blog/_src/posts/2019-05-14-racket-v7-3.md) doesn’t generate a hyperlink for the DeinProgramm url. Any idea why?


ben
2019-5-15 18:30:57

@samth change the () to <>


ben
2019-5-15 18:31:24

or change to (<>)


samth
2019-5-15 18:31:32

That seems weird, esp since GitHub (click the link) parses it properly


ben
2019-5-15 18:32:59

is that proper? I don’t know. I assumed github did extra parsing to guess whether some characters are a url


soegaard2
2019-5-15 18:35:16

Maybe @greg knows?



soegaard2
2019-5-15 18:48:15

It says a lot that such a page exists!


lexi.lambda
2019-5-15 18:48:58

Markdown is a format in about the same way Scheme is a language. :)


soegaard2
2019-5-15 20:08:58

We need to be aware of the new “Notarization” policy.


soegaard2
2019-5-15 20:09:00

samth
2019-5-15 20:10:48

@soegaard2 I’ve been paying some attention to that


samth
2019-5-15 20:11:19

but it will require some changes to our signinig infrastructure


soegaard2
2019-5-15 20:11:46

Yes.


greg
2019-5-15 23:32:45

Maybe the markdown parser could try to be more clever about auto-detecting URLs — without breaking the use of parens in URLs, as used by a certain documentation system I know about. :wink: Meanwhile I’d suggest the two things Ben did. Or maybe even better, a labelled link: ["Schreibe Dein Programm!"](<https://www.deinprogramm.de/>)


greg
2019-5-15 23:36:26

As for Babelmark. Spend enough time there and you’ll be crying and writing Morrissey lyrics.


greg
2019-5-15 23:37:10

@lexi.lambda I refuse to capitalize markdown because that implies it is a specification.


notjack
2019-5-16 01:37:05

and the one time some folks tried to make a specification, the original designer of markdown disliked it so much he demanded they change the spec name from Common Markdown to Common Mark


notjack
2019-5-16 01:37:55

(this may be a wildly inaccurate interpretation of events, I don’t remember it very well)


asumu
2019-5-16 01:53:55

Racket PPAs for 7.3 are cooking… (just bionic first so I can test it before the others)


carl.morris.world
2019-5-16 05:01:08

I have a question on dynamic code evaluation. After some fiddling, I got dynamic-require to load a module with a custom lang and extract a variable it provides. I’m using this to test the language on certain known scripts with expected outputs. However most the scripts are a single line (excluding the lang line), so it would be nicer to write something like (dynamic-XXX program-string). The calling module would be in racket/base but the program would be in a custom language.

I read up on the sandboxed evaluators and the eval function but couldn’t get it to work for me. If there’s not something obvious that solves this problem, I’ll try to create a minimal example to show what does and doesn’t work for me.


asumu
2019-5-16 05:28:25