Re: [racket-users] low-friction app extensibility in racket

2017-07-07 Thread Neil Van Dyke
Neil Van Dyke wrote on 07/06/2017 05:53 AM: * Pretty similar alternative: user has a Racket file "my-foo", which is the immediate program the user runs. This file does a `(require foo)`, as well as a `(start-foo #:pref1 x #:pref2 y ...)`. I think this is probably the alternative I would/will

[racket-users] low-friction app extensibility in racket

2017-07-06 Thread Neil Van Dyke
Let's say I'd like to move Racket apps closer to old-school Emacs-like extensibility. Such as very-low-friction way to use arbitrary Racket code to set app preferences, and to hook into behavior of the app and add features. And generally encouraging everyone to get their hands dirty coding im