[racket-users] Re: Examples of sending HTML email w/ Racket?

2021-08-01 Thread br...@lojic.com
ven: https://github.com:AxioFramework/axio.git > don't seem to work ; kindly help #noob > > > > > On Wednesday, April 8, 2020 at 9:54:48 AM UTC-7 br...@lojic.com wrote: > >> I was able to write a simple wrapper around smtp-send-message and get it >> working through

[racket-users] Re: I‘m new to racket, i want to know the best resources of learning racket

2020-12-29 Thread br...@lojic.com
If you like learning by example, I have a github repo w/ many examples: https://github.com/lojic/LearningRacket On Thursday, December 3, 2020 at 5:19:43 AM UTC-5 cy691...@gmail.com wrote: > Any suggestions? Thanx for you guys -- You received this message because you are subscribed to the Googl

[racket-users] Re: Dynamic-place PR

2020-12-29 Thread br...@lojic.com
Maybe ask on https://groups.google.com/g/racket-dev ? On Wednesday, December 9, 2020 at 10:41:51 AM UTC-5 na...@manicmind.earth wrote: > Hello. > > Is the PR #3518 “Create `racket/place/dynamic` to reduce dependencies.” > going to happen? > > I was trying to use ‘#%place and its `dynamic-place`

[racket-users] Re: Executing (system ...) command requires another 'ENTER' from repl?

2020-12-29 Thread br...@lojic.com
The documentation for (system) states: "The resulting process writes to (current-output-port), reads from (current-input-port), and logs errors to (current-error-port)." So, I'm guessing that it may be waiting for input. The following does not require an extra enter key: (parameterize ([curren

[racket-users] Re: Permutations ind Racket

2020-12-29 Thread br...@lojic.com
Kira: You mentioned things (map, foldr, ...) that you're not permitted to use, but I don't know the full homework requirements. If your professor did not preclude the built-in permutations function, you could use that as a way of teaching your professor to communicate the requirements more clea