Etherian
Etherian
## 🤷🏽 Current Behaviour Instead of the entire screen, only a 63x63 px square in the upper-left corner is dimmed. [Screenshot](https://imgur.com/a/FyCYJ) ## 🏡 Environmental Context **App Version** desktop-dimmer-4.0.4-setup.exe **Operating System**...
## Description Adds a `time` module to the standard library which exposes the functionality of Rust's `std::time`. ## Status **In Development** ### Outstanding design questions - [x] ~~How should `std.time`...
In a simple benchmarking script I'm writing I need to ensure the code being benched isn't optimized away. Any suggestions for how? Maybe something involving the `IO` monad?
The interpreter fails to find implicit parameters in the REPL while interpreting files correctly.. Example below. The bug is present in ba66854b; I haven't checked earlier commits. ``` > let...
The associativity of left-associative operators is being ignored in the REPL. Works properly when run from a file. The incorrect behavior occurs in ba66854b. I haven't checked any earlier commits....
## Description Adds a `Parsable` interface and a parser combinator library based on it to replace the current one. ## Related PRs Depends on #686. Similar concept to the Streamlike...
## Description Adds a `Streamlike` (name TBD) interface which generalizes the concept of a collection from which values can be extracted. ## Related PRs Similar concept to the Parsable interface...
Importing Cellpose outlines into ImageJ currently requires an ImageJ macro and non-standard text file format. The process could be simplified if Cellpose could export the .roi files and zipped .roi...
On elements where it makes sense, add a parameter that takes a callback which transforms the widget's underlying values into displayed ones that are nicer-looking and easier for the user...
By 'baking' I mean rendering and storing beforehand an asset that would otherwise be generated at run time. That is, would it be feasible to, as part of the transpile/build...