Live data from Hacker News

Viewing profile — mikmoila

mikmoila

HN member
Joined
Sun, Mar 04, 2012, 7:03 PM UTC
HN karma
39
Public activity
58 items

About mikmoila

No profile information was provided.

Recent public activity

  1. comment
    Comment #49216773

    https://openjdk.org/legal/ai Shitposting, the reasons are very clear and explicit: The risks of having legal problems are very clear. Google for example GEMA vs. OpenAI.

  2. story
  3. comment
    Comment #48241746

    Code contains deviations from assumed behaviour, and some behaviours might manifest themselves as failures. Some failures might be exploitable by attackers.

  4. comment
    Comment #47967007

    Yes, imagine a breakthrough moneymaker product containing generative AI parts; It'll be under legal attacks from day zero...

  5. comment
    Comment #47963324

    OpenJDK project (interim) AI-policy faq ( https://openjdk.org/legal/ai ): "What are the intellectual-property risks of using generative AI tools? The Oracle Contributor Agreement (…

  6. comment
    Comment #47960248

    How about intellectual-property risks?

  7. comment
    Comment #47926901

    I don't I use Java for small scripts/tools.

  8. comment
    Comment #46559839

    Are they really? I've been under impression that agentic LLMs are just instances of the LLMs, no "specialized training" involved

  9. comment
    Comment #44341319

    This is great idea.

  10. comment
    Comment #44340932

    Very interesting tool; I've done something quite similar by implementing a CLI-mode interpreter to VS Code Rest-client ( https://marketplace.visualstudio.com/items?itemName=humao.r…

  11. comment
    Comment #41469686

    There is nothing special in getters and setters, the runtime sees them as methods and may optimize them as it'd do for any other methods.

  12. story
  13. comment
    Comment #37961726

    Good point, isn't this the partial compilation?

  14. comment
    Comment #37959607

    Wasn't it so that as Graal jitter is written in Java, Truffle can easily call it by using ordinary Java api? By the way there's an excellent series of articles about implementing a…

  15. story
  16. comment
    Comment #37193868

    Of course, this is not fully comparable to Akka, but you might find this interesting: https://github.com/ebarlas/game-of-life-csp

  17. comment
    Comment #37193515

    Also there are some traceability issues involved in using asynchronous APIs: "In the asynchronous style, each stage of a request might execute on a different thread, and every thre…

  18. comment
    Comment #37193031

    Jetty can be used with virtual threads: https://webtide.com/jetty-12-virtual-threads-support/

  19. comment
    Comment #37192950

    SC will be a preview level API in Java 21: https://openjdk.org/jeps/453

  20. comment
    Comment #37192888

    In addition, this implementation detail might help in gaining some insight: "The synchronous networking Java APIs, when run in a virtual thread, switch the underlying native socket…

  21. comment
    Comment #37192600

    Nima uses virtual threads where blocking call blocks only the current virtual thread but not the underlying carrier-thread, which can run another virtual thread while waiting i/o t…

  22. comment
    Comment #37192518

    One at a time, not concurrently.

  23. comment
    Comment #37192500

    "callRemote" simulates a blocking outbound http-call.

  24. comment
    Comment #36839788

    Right to the spot, thanks for sharing this! I've always thought that having a decision log of justifying design/implementation choices which are somehow surprising would be healthy…

  25. comment
    Comment #36541904

    Fascinating info, thanks for sharing this with all the details! Didn't watch your youtube video but do you use any formal systems like TLA+ internally for validating your designs?