Laurent Orseau

Results 96 comments of Laurent Orseau

I should have said more explicitly: **Principle:** It should be easy and fast to find information on the screen and in a file (say by scrolling). **Problem:** Long names add...

I'm not sure how to make my point clearer but: ***This post is not about aesthetics, it's about finding information on a page of code by visual parsing*** So it's...

I should have been clearer: If there's additional syntax making `=` mere syntactic sugar, then I have less issues with that (doesn't mean I like it, but it's taste rather...

There's a small quickscript to move a tab to a new window: https://gist.github.com/Metaxal/bfef2b3ee77f3e40aa449d87851dbf81 It doesn't do the converse operation though. (More quickscripts to consider [here](https://github.com/racket/racket/wiki/Quickscript-Scripts-for-DrRacket), along with installation instructions.)

Maybe take a look at this third-party package: https://docs.racket-lang.org/opengl/index.html Apparently it can open an OpenGL context inside a canvas%, so possibly that does what you want. On Wed, Nov 10,...

For my case I could work around it (a little painfully) with `scribble-eval-handler`, but in general I think it might make more sense to provide an phase 1 `examples/expr` function...

Though I must admit I'm not clear on something: How would you use `eval:alts` here, assuming that `mods` are given as argument to a wrapping function? (Or maybe that's why...

Just a side comment. Currently Racket also gives: ``` > (max 0 -0.0 ) -0.0 > (max 0 +0.0) 0.0 ``` Even with float propagation, the first result in particular...

@rocketnia > it's quite likely that an inexact number like `0.999` is really supposed to represent 1 Comparisons should not be based on guesses but on rules. Rules make computation...

Maybe we can use a parameter so that both cases can be handled, that defaults to copy/pastable? I think too that would be very useful thing to have.