Re: [racket-users] How to integrate Racket with a .Net application?

2018-02-01 Thread HiPhish
On Wednesday, January 31, 2018 at 4:17:09 PM UTC+1, Greg Hendershott wrote: > > Another way is for two (OS) processes to "pipe" I/O to each other. > This is a great idea since it would allow to integrate any language with the .NET application. It is how Neovim does it: the main application is

[racket-users] raco distribute help

2018-02-01 Thread Deren Dohoda
Hi everyone, I'm having a hard time understanding the docs for raco exe and raco distribute. tl;dr main.rkt has to (dynamic-require user-selected.rkt) and user-selected.rkt is written in a different #lang and requires a file from this program. How do I glue these pieces together for raco exe /

Re: [racket-users] Re: Reliably propagating received log messages to ports

2018-02-01 Thread Robby Findler
FWIW, programming with evts is lots of fun. When I first encountered it, it blew me away the kinds of things that went from very hard to easy and enjoyable to program up. Robby On Thu, Feb 1, 2018 at 9:14 AM, Alexander McLin wrote: > Thanks all for your inputs. > > I

[racket-users] Re: Reliably propagating received log messages to ports

2018-02-01 Thread Alexander McLin
Thanks all for your inputs. I tried `with-intercepted-logged` before though it didn't solve all of my issues, though as Robby mentioned, my code probably isn't accurately capturing all of the start and exit nuances my need reflect, I'll need to think more about the big picture to do a better