Fred Fu

Results 75 comments of Fred Fu

I think it was 1.50.6. Also see [this thread](https://racket.slack.com/archives/C06V96CKX/p1652313467335449?thread_ts=1652039848.010519&cid=C06V96CKX) on Slack

@jasonhemann do you have the same problem launching DrRacket (or other binaries) if you use the installer from the official webiste?

I don't have problems rendering a scribble file named in Chinese. ``` ➤ cat 中文.scrbl #lang scribble/base hello, scribble capfredf@HMSBeagle:~/tmp ➤ scribble 中文.scrbl [Output to 中文.html] ``` can you also...

Does your "Racket mode logger" buffer get substantially large?

My Emacs has been on a relatively new version that includes the fix for a while. I haven't seen it take over 1GB of memory anymore.

I would like to support helm. Any reliable way should do. But it seems no one has mentioned GitHub sponsorship. Given the repo is hosted on Github, I feel that...

I had some time and did some digging. It seems this issue has something to do with "the default monitor". On my machine, `(get-display-left-top-inset #f #:monitor 0)` returns -1920 and...

The problem has nothing to do with match-define. It's just that circular definitions require type annotations to break dependencies. For example, the program below has the same error. ``` (lambda...

Alternatively, you can use `match-let` ``` (lambda ([a : point]) (match-let ([(point a b) a]) b)) ```