-
To be really safe, if you run Windows and are jonesing for some ActiveX action, you can run WSL, and LXDE on WSL, and run https://copy.sh/v86/?profile=windows98 on Firefox on LXDE[1].
That’s maybe enough layers of indirection to make ActiveX safe :-)
[1] https://imgur.com/a/VHYehLQ
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
-
Graal
GraalVM compiles Java applications into native executables that start instantly, scale fast, and use fewer compute resources 🚀
Yes, and it will JIT compile the code to native if you're using GraalVM:
https://github.com/oracle/graal/tree/master/wasm
But the point of JNI is to provide language bindings. WASM doesn't automatically fix the need for those.
-
-
Maybe embed wasmtime? I'm familiar with https://github.com/bytecodealliance/wasmtime-dotnet but perhaps this for jvm? https://github.com/kawamuray/wasmtime-java/blob/master/examp...
I too love the idea of embedding wasm modules to be used across platforms.
-
Maybe embed wasmtime? I'm familiar with https://github.com/bytecodealliance/wasmtime-dotnet but perhaps this for jvm? https://github.com/kawamuray/wasmtime-java/blob/master/examp...
I too love the idea of embedding wasm modules to be used across platforms.
-
Just in case those who prefer not to allow Java need this, here's some info about disabling WASM in various browsers.
https://github.com/stevespringett/disable-webassembly
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
For anyone interested in the Kotlin side of things:
Kotlin has a great compat with Kotlin/JS[0]. they also have Compose For Web which is more WASM based[1] though its marked as experimental
[0]: https://kotlinlang.org/docs/js-overview.html
[1]: https://github.com/Kotlin/kotlin-wasm-examples/tree/main/com...
-
Android folks are thinking about using WASM for NDK, with compilation to native code on the PlayStore.
https://github.com/android/ndk/issues/1771
-
jvm-alternatives-to-js
Repository comparing JVM alternatives to JS: CheerpJ, GWT, JSweet, TeaVM, Vaadin Flow, bck2brwsr (bonus: React, Dart)
A while back CheerpJ had a huge footprint and terrible startup time compared to TeaVM: https://renato.athaydes.com/posts/comparing-jvm-alternatives...
TeaVM has become even smaller and faster since that article was published. The test suites are here in case someone wants to conduct a rematch: https://github.com/renatoathaydes/jvm-alternatives-to-js
-
campus-qr
Open source system for contact tracing at universities, based on scanning QR-codes. Written in Kotlin.
The company I work for was a very early adopter of kotlin/js. During the pandemic we published an open source contact tracing web platform aimed at universities. https://github.com/studoverse/campus-qr
-
I wrote https://github.com/cretz/asmble which has an AOT compiler and interpreter for WASM. Haven't worked on it for a while though.