todo
2019-5-24 07:08:50

I’m familiar with Scheme (SICP) but not with Racket/DrRacket. Is there any book that focuses on Racket/DrRacket particulars? (Something similar to “Beautiful Racket” — which I am a big fan of, but discusses things besides DSLs).


mark.warren
2019-5-24 07:18:38

@todo There is Realm of Racket, teaches racket through basic games.


soegaard2
2019-5-24 07:33:29

sorawee
2019-5-24 07:49:20

See my feature request and discussion: https://github.com/racket/drracket/issues/273


joelmccracken
2019-5-25 01:21:44

Is there an easy way to read/write racket data to files (esp symbols, strings, lists, numbers)


joelmccracken
2019-5-25 01:22:22

ah nvm i think i found it, read and write


joelmccracken
2019-5-25 02:18:03

Is there an easy way to convert the string “My Fancy Friend’s Title” to ’my-fancy-friends-title


notjack
2019-5-25 02:34:22

I wish


joelmccracken
2019-5-25 02:37:39
(string->symbol (regexp-replaces (string-downcase "My Friend's. Shoe")
                 '([#px"['\"]" ""]
                   [#px"\\W" "-"]
                   [#px"[-]+" "-"]
                   )
                 ))

joelmccracken
2019-5-25 02:37:42

seems to do the job


todo
2019-5-25 05:31:42

@soegaard2: The Racket Guide reads like a reference manual … but is precisely what I asked for. Thanks!