Most active commenters

    ←back to thread

    163 points John7878781 | 12 comments | | HN request time: 1.056s | source | bottom
    1. whalesalad ◴[] No.43536031[source]

    We have come full circle #applets

    Twenty years ago running java in the browser would have just been called "using the internet"

    replies(3): >>43536097 #>>43536305 #>>43538842 #
    2. Ajedi32 ◴[] No.43536097[source]

    Yep, the original Minecraft ran in the browser in a Java applet so this is particularly fun example. Though obviously there are significant security benefits to the JVM running within the browser's WASM sandbox instead of directly on the host.

    replies(3): >>43536195 #>>43536746 #>>43536772 #
    3. lxgr ◴[] No.43536195[source]

    > there are significant security benefits to the JVM running within the browser's WASM sandbox instead of directly on the host.

    The JVM originally also had the goal of providing a security boundary, and even had a relatively complicated permissions/security model enforced via call stack inspection.

    That security model was ultimately too complicated for developers to work with, but I don't think the sandbox itself was particularly insecure.

    replies(1): >>43536473 #
    4. esafak ◴[] No.43536305[source]

    Java Applets gave Java a bad name. Java was that thing that made web sites grind to a halt.

    replies(1): >>43536644 #
    5. jcranmer ◴[] No.43536473{3}[source]

    My recollection is that the SecurityManager was notorious for being relatively easy to work around. Definitely one of the common questions people had when working on the richer HTML5 APIs was "how is your sandboxing going to be more effective than the Java applet model, given that that's known to be full of holes?"

    6. SJC_Hacker ◴[] No.43536644[source]

    If it had come out of Google or Microsoft maybe even Apple, the JRE would have been integrated into the browser much more efficiently and it would have been no slower than Javascript

    But I don't remember Applets being particularly slow even back then, if you had a decent internet connection and they were written by a decent SDE

    replies(2): >>43536723 #>>43537353 #
    7. TOGoS ◴[] No.43536723{3}[source]

    I wrote a lot of applets back in the day for little graphics experiments and such, somewhat inspired by Ken Perlin's homepage[1]. I found that it's quite possible to make applets that load fast and run fast if you care about those things while building it and do some profiling. If you pull in hundreds of megabytes of libraries and trigger a GC every second then of course it will be slow.

    [1] https://mrl.cs.nyu.edu/~perlin/

    replies(1): >>43538100 #
    8. ◴[] No.43536746[source]
    9. philipwhiuk ◴[] No.43536772[source]

    Until they want features and punch holes in the sandbox.

    Audio/video codecs are a great example.

    10. CobrastanJorji ◴[] No.43537353{3}[source]

    Neither decent internet connections nor decent SDEs programming Applets ever happened in the 1990s.

    11. freedomben ◴[] No.43538100{4}[source]

    Same. I built a lot of animations with applets back in the day and if you avoided dependencies (other than what ships with the JVM) and your code wasn't ridiculous, you could get some pretty damn good performance out of it (minus initial load time which did tend to be suboptimal, but manageable). Applets were a pain in many ways but I think the tech gets blamed unfairly for bad performance.

    12. hombre_fatal ◴[] No.43538842[source]

    It's not full circle. It's using built-in browser capabilities instead of a special sideloaded runtime granted by a browser extension.

    An example of full circle would be if wasm apps needed a browser extension so that they could access APIs not allowed by the browser.