Viewing profile — mikmoila
mikmoila
HN member- Joined
- Sun, Mar 04, 2012, 7:03 PM UTC
- HN karma
- 39
- Public activity
- 58 items
- HN profile
- View on Hacker News ↗
About mikmoila
No profile information was provided.
Recent public activity
-
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.
- story
-
comment
Comment #48241746
Code contains deviations from assumed behaviour, and some behaviours might manifest themselves as failures. Some failures might be exploitable by attackers.
-
comment
Comment #47967007
Yes, imagine a breakthrough moneymaker product containing generative AI parts; It'll be under legal attacks from day zero...
-
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 (…
-
comment
Comment #47960248
How about intellectual-property risks?
-
comment
Comment #47926901
I don't I use Java for small scripts/tools.
-
comment
Comment #46559839
Are they really? I've been under impression that agentic LLMs are just instances of the LLMs, no "specialized training" involved
-
comment
Comment #44341319
This is great idea.
-
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…
-
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.
- story
-
comment
Comment #37961726
Good point, isn't this the partial compilation?
-
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…
- story
-
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
-
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…
-
comment
Comment #37193031
Jetty can be used with virtual threads: https://webtide.com/jetty-12-virtual-threads-support/
-
comment
Comment #37192950
SC will be a preview level API in Java 21: https://openjdk.org/jeps/453
-
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…
-
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…
-
comment
Comment #37192518
One at a time, not concurrently.
-
comment
Comment #37192500
"callRemote" simulates a blocking outbound http-call.
-
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…
-
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?