Aryeh Hillman
Aryeh Hillman
Regarding `cause console.log to be invoked`, it looks like `(#js*.console.log ...)` is that gesture. Related: https://github.com/racketscript/racketscript/issues/337.
If emscripten becomes fully supported, an exceptional addition could be implementing an API for [`html5.h`](https://emscripten.org/docs/api_reference/html5.h.html).
cc/ @Augustin-Zidek
Wow, nice! ```bash $ export PATH="/Users/aryehh/Development/cargo/target/release:$PATH" $ cargo --version cargo 1.80.0 (ced58bfd6 2024-05-12) $ cargo clippy --fix Updating crates.io index Downloaded rowan v0.15.15 Downloaded countme v3.0.1 Downloaded strum v0.26.2 Downloaded...
For good measure, here is the result I get with the parent commit: ``` $ cargo --version cargo 1.80.0 (2f17770a1 2024-05-11) $ cargo clippy --fix error: failed to bind TCP...
Looks great. I did also check it on linux, but I might recommend adding a regression test to help ensure that this works on other systems -- perhaps something like...
> > Looks great. I did also check it on linux, but I might recommend adding a regression test to help ensure that this works on other systems -- perhaps...
Indeed, loopback is up, but is it assigned a LAN IP. I had noticed this as well; it is quite curious. ```sh $ ifconfig lo0 lo0: flags=8049 mtu 16384 options=1203...
This appears to resolve the issues with `cargo run clippy --fix` and the above rust code: ```sh $ sudo ifconfig lo0 alias 127.0.0.1 ``` That said, I don't believe that...