frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Java 26 Is Here, and with It a Solid Foundation for the Future

https://hanno.codes/2026/03/17/java-26-is-here/
1•mfiguiere•32s ago•0 comments

The Los Angeles Aqueduct Is Wild

https://practical.engineering/blog/2026/3/17/the-los-angeles-aqueduct-is-wild
1•michaefe•48s ago•0 comments

Consent.txt – compile one AI policy into robots.txt, AIPREF, and headers

https://github.com/GGeronik/consent-txt
1•geronik•3m ago•2 comments

Women are being abandoned by their partners on hiking trails

https://www.theguardian.com/lifeandstyle/ng-interactive/2026/mar/17/alpine-divorce-abandoned-hiki...
2•asib•3m ago•0 comments

Show HN: Chrome extension that hijacks any site's own API to modify it

https://github.com/hvardhan878/quark-browser-agent
1•hvardhan878•6m ago•0 comments

Reducing quarantine delay 83% using Genetic Algorithms for playbook optimization

https://www.securesql.info/2025/04/06/playbook-management/
1•projectnexus•6m ago•1 comments

Node.js blocks PR from dev because he used Claude Code to create it

https://github.com/nodejs/node/pull/61478
1•gregdoesit•6m ago•0 comments

Python 3.15's JIT is now back on track

https://fidget-spinner.github.io/posts/jit-on-track.html
1•guidoiaquinti•7m ago•0 comments

Remote Control for Agents

https://www.restate.dev/blog/a-remote-control-for-your-agents
1•gk1•7m ago•0 comments

Danger Coffee: Mold-Free Remineralized Coffee Replaces What Regular Coffee Takes

https://dangercoffee.com/
1•amyjo•7m ago•1 comments

Building a dry-run mode for the OpenTelemetry collector

https://ubuntu.com/blog/building-a-dry-run-mode-for-the-opentelemetry-collector
1•simskij•8m ago•0 comments

LotusNotes

https://computer.rip/2026-03-14-lotusnotes.html
1•laacz•8m ago•0 comments

Austin draws another billionaire as Uber co-founder joins California exodus

https://www.statesman.com/business/article/uber-founder-austin-tech-move-robots-22079819.php
1•dmitrygr•8m ago•0 comments

Deep Data Insights for Polymarket Traders

https://www.holypoly.io
1•alexanderstahl•8m ago•1 comments

Show HN: A simple dream to fit in every traveler's pocket

https://www.callzo.io/blog/we-built-callzo-with-dream-of-being-in-every-travellers-pocket
1•mayursinh•9m ago•0 comments

Rockstar Games stopped selling its digital games directly to players in Brazil

https://support.rockstargames.com/articles/1RrKywdOgzDjAMFbL6ZhbK/latest-information-on-the-digit...
1•throwaway2027•9m ago•0 comments

The US-Israeli strategy against Iran is working. Here is why

https://www.aljazeera.com/opinions/2026/3/16/the-us-israeli-strategy-against-iran-is-working-here...
1•mhb•12m ago•0 comments

John Carmack on corporate advisory boards

https://twitter.com/ID_AA_Carmack/status/2033973070801895832
2•tosh•12m ago•0 comments

Microsoft Announces Copilot Leadership Update

https://blogs.microsoft.com/blog/2026/03/17/announcing-copilot-leadership-update/
1•toomuchtodo•12m ago•0 comments

Designing an AI Gateway and Durable Workflow System

https://stevekinney.com/writing/ai-gateway-durable-workflows
1•stevekinney•13m ago•0 comments

A text-only social platform, with custom algorithm for users

https://contextsocial-0f2d73b46fe0.herokuapp.com/login?callbackUrl=https%3A%2F%2Flocalhost%3A7764%2F
2•icyou780•14m ago•0 comments

Show HN: Automatic Fileless Malware Detection via eBPF Probes and LLMs

https://github.com/Raulgooo/godshell
1•raulgooo•15m ago•0 comments

Kagi's Orion browser hits public beta on Linux

https://www.omgubuntu.co.uk/2026/03/orion-for-linux-beta-release
1•mitchbob•16m ago•0 comments

A Big Pharma Company Stalled a Potentially Lifesaving Vaccine

https://www.propublica.org/article/how-big-pharma-company-stalled-tuberculosis-vaccine-to-pursue-...
2•marvinborner•16m ago•0 comments

Nvidia Just Made the Claw Enterprise-Ready

https://nervegna.substack.com/p/nvidia-just-made-the-claw-enterprise
1•tacon•16m ago•0 comments

Notes from a Law Professor with No Idea What's Going On

https://leahey.org/blog/2026/03/17/notes-from-a-law-professor.html
2•tldrthelaw•20m ago•0 comments

Benchmarking Distilled Language Models for Performance and Efficiency

https://arxiv.org/abs/2602.20164
2•PaulHoule•21m ago•0 comments

Show HN: A complete, containerized data engineering learning platform

https://github.com/MarlonRibunal/learning-data-engineering
1•MarlonPro•21m ago•1 comments

Search Quality Assurance with AI as a Judge

https://engineering.zalando.com/posts/2026/03/search-quality-assurance-with-llm-judge.html
1•hrmtst93837•21m ago•0 comments

Nvidia announces Vera Rubin Space-1 for orbital data centers

https://www.cnbc.com/2026/03/16/nvidia-chips-orbital-data-centers-space-ai.html
1•hrmtst93837•22m ago•0 comments
Open in hackernews

CheerpJ 4.0: WebAssembly JVM for the browser, now with Java 11 and JNI support

https://labs.leaningtech.com/blog/cheerpj-4.0
9•apignotti•10mo ago

Comments

palata•10mo ago
That's technically pretty cool, but it makes me wonder:

In order to run a Java Desktop app, I need to install a JVM first (or the Desktop app can embed it, I guess that's what IntelliJ does, right?).

Now if I run CheerpJ, it means that I essentially download a JVM when I load the page (every time), and run code in that JVM. But at this point, why not downloading a Desktop app?

It feels like we are going around, shipping simple web pages together with full browsers and calling that "desktop apps" (e.g. ElectronJS), then shipping complete JVMs as web pages and calling that a "web page"... why don't we just ship simple webpages through browsers and complex desktop apps through package managers?

apignotti•10mo ago
With CheerpJ you are downloading the subset of the JVM that you need, and actually only once thanks to the standard browser cache.

There are many reasons why shipping via the browser is a better choice compared to shipping desktop apps. The main 3 in my opinion are:

1. Distribution: Give your user a link and the app will start 2. Isolation: The user can have confidence the app won't read his personal files. 3. Cross-platform: Every OS and every device, for real this time

yuri91•10mo ago
For reference, when loading https://browsercraft.cheerpj.com for the first time (up to loading a world), my browser downloaded ~32MB.

The second time almost nothing.

jeffreportmill1•10mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•10mo ago
> With CheerpJ you are downloading the subset of the JVM that you need

That's interesting! May I ask how it works? Does that also happen with e.g. IntelliJ?

> Every OS and every device, for real this time

Doesn't the JVM run everywhere in 2025?

apignotti•10mo ago
> That's interesting! May I ask how it works? Does that also happen with e.g. IntelliJ?

Byte ranges request do most of the heavy lifting, data is loading exclusively on-demand.

> Doesn't the JVM run everywhere in 2025?

What about iOS? Android has Java, but can't run desktop Java apps. Chromebooks also have limits.

palata•10mo ago
> Byte ranges request do most of the heavy lifting, data is loading exclusively on-demand.

I don't understand what that means. The JVM is supposed to interpret and sometimes compile bytecode, right? How can it be done with only a fraction of the JVM?

Or are you saying that it is constantly communicating with a server that does the work?

apignotti•10mo ago
The VM itself is very small, it's the OpenJDK runtime that is quite sizeable. Byte ranges are used to only download the parts of the runtime (in terms of bytecode) that are required.

There is no server-side computation. CheerpJ runs code exclusively client-side.

palata•10mo ago
But you said before that you only download a subset of the JVM, right? Or did you mean a subset of the JDK, including the JVM and... I guess other stuff?
apignotti•10mo ago
I meant the JVM in an extended sense: the combination of the bytecode parsing, JIT compiler and OpenJDK runtime. You are right, I should have been more precise and refer to only the runtime part, which is by far the most significant.
palata•10mo ago
I was not trying to prove you wrong, I'm just genuinely interested :-). I don't see a lot of articles about the JVM these days.