Hacker News new | past | comments | ask | show | jobs | submit | throwaway50609's comments login

Funny that you forgot about all the security issues of JVM applets that Wasm finally solved


And now you can run a wasm jvm: https://leaningtech.com/cheerpj/ (there are others, too)


Like this one?

  #include <stdio.h>
  #include <stdlib.h>

  int main() {
    char *s = "world";

    s[0] = 'o';
    s[1] = 'w';
    s[2] = 'n';
    s[3] = 'e';
    s[4] = 'd';

    printf("Hello, %s\n", s);
  }


Just compiled and ran it on my system within Wasm, my computer is still fine. Your point?

The point of Wasm is - programs can and will malfunction (and some will be malicious), so we have to protect the environment that runs it.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: