SimonLSchlee

Results 7 comments of SimonLSchlee

And here is an ugly workaround I created that calculates the delta between the outer and inner of the window: ``` #lang racket (provide get-delta) (require racket/gui/base) (define deltaframe% (class...

Well the obvious downside is memory use, sure theoretically xor-linked-lists https://en.wikipedia.org/wiki/XOR_linked_list can have similar memory use to single linked lists but they then need more code for iteration. I think...

Related: [API for Cross-Platform Configuration](https://docs.racket-lang.org/raco/cross-system.html) My guess is, that this is already used somewhere to create the racket builds. But it would be nice to make it easier to use...

@jackfirth I think there are 2 different cases: 1. packages which are pure racket code and only indirectly use platform specific code (via other packages) 2. packages that directly have...

@mflatt I am curious what parts of Racket prevent it from being fully cross-compiled. For example why it seems to be necessary to run a windows client machine to create...

I find it difficult to predict whether something like this would be really good or really bad in a big codebase. So it would be good to hear from people...

Languages like Mozart/Oz (like described and used in the book "Concepts, Techniques, and Models of Computer Programming) have a different model for variables and definitions. They use "Single-Assignment Variables" their...