JoeStrout
JoeStrout
There are optimizations in the C# code that were not ported to the C++ code, resulting in differences in behavior. In general, in C++ one can see `self` among `locals`,...
When indexing (i.e. using `[]`) into a list or map results in a function reference, that function should never be invoked; it should evaluate to just the function reference itself....
In command-line MiniScript, if you type `end function` at the prompt without first starting a function, it aborts (exit code 134). It should instead just print an error and continue....
Attempting to use Simple LLaMA FineTuner via colab for the first time today, the training seems to work, but when I try to generate a response (after selecting the just-trained...
We have a report that bots will continue to work even after their energy reaches zero.
Reports say that the player home, for example, are like this. A building tile should never be reported as passable.
The `view` command currently draws images at 1:1 size. This can be too big or small to clearly see the image. Add the use of + and - to zoom...
This came up as part of Advent of Code 2023, Day 18. Given this polygon: ``` [[461938, 1], [461938, -56406], [818609, -56406], [818609, -919646], [1186329, -919646], [1186329, -1186328], [609066, -1186328],...
Right now, whenever you want a sprite that can do any sort of hit-testing, you have to (1) create a new Bounds and assign to `localBounds`, (2) assign its width...
Sprites already have the concept of "local" and "world" coordinates, embodied in their `localBounds` and `worldBounds` properties. But sometimes (as in #10), it's handy to convert between these coordinate systems....