Alex Knauth

Results 249 comments of Alex Knauth

I get the same error when running `mscore -j musescore-conversion-job.json` on the command line.

From the bit of commit-history testing I've been able to do so far, I can reproduce this `QEventLoop: Cannot be used without QApplication` error message going back to 2021-11-23, and...

LiveSplit Windows-only auto-splitters for some metroidvania games, such as Hollow Knight and Ori, already do this through a combination of: - a List Widget that the user sets up in...

This link to the docs for my fork works: http://pkg-build.racket-lang.org/doc/pict3d@pict3d-fork/index.html

And I've just added a missing dependency on the https://github.com/jeapostrophe/pict3d fork, which should fix some of the pkg build errors.

What do you mean? Do you mean that you would make another big-bang3d-like function that takes a parent gui object in addition to the normal #:on-draw etc, and returns a...

This warning is caused by my fix to https://github.com/racket/typed-racket/issues/379

Yes, specifically it's coming from the `Any` in a negative position in the predicate contract. Because it's in a negative position in an imported identifier (a positive position in an...

If you're importing the `x-pointer?` predicate into typed code and using it in typed code, you could do this: ``` racket (x-pointer? (λ ([x : Fixnum]) (+ x 1))) ```...