frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Review: Why Evolution Is True

https://ncse.ngo/review-why-evolution-true
1•akbarnama•2m ago•0 comments

We Read What Delve Ships to the Browser

https://security.redeux.ai/research/delve-compliance-posture
1•chasewarren•12m ago•0 comments

Isometric exercise: The most efficient fitness regime?

https://www.bbc.com/future/article/20260319-isometric-exercise-the-most-efficient-fitness-regime
1•akbarnama•16m ago•0 comments

A Rant about Resolutions

https://blog.brixit.nl/rant-about-resolutions/
1•vinhnx•17m ago•0 comments

Is Simple Good?

https://darth.games/posts/is-simple-good/
1•vinhnx•18m ago•0 comments

Delve Accused of Fraud

https://techcrunch.com/2026/03/21/delve-accused-of-misleading-customers-with-fake-compliance/
3•zlu•22m ago•0 comments

Sashiko: AI code review system for the Linux kernel spots bugs humans miss

https://www.theregister.com/2026/03/20/sashiko_code_review_linux/
1•maxloh•23m ago•0 comments

AI Disrupts Talent Evaluation Before It Disrupts Talent

https://substack.com/home/post/p-191732116
1•cactaceae•24m ago•0 comments

A Reason to Ditch Jira: AI Agents

https://age-of-product.com/jira-ai-agents/
1•swolpers•26m ago•0 comments

Entroly – Compress codebase context for LLMs by 78% using Rust

https://github.com/juyterman1000/entroly
1•savetokens•27m ago•0 comments

The History and Business of Formula 1

https://www.acquired.fm/episodes/formula-1
1•vismit2000•28m ago•0 comments

Why Even Smart People Believe AI Is Thinking

https://www.wsj.com/tech/ai/ai-tools-sentience-b98fc6e6
1•1vuio0pswjnm7•30m ago•0 comments

OpenAI to introduce ads to all ChatGPT free and Go users in US

https://www.reuters.com/business/media-telecom/openai-expand-ads-chatgpt-all-free-low-cost-users-...
1•1vuio0pswjnm7•38m ago•0 comments

Anthropic just shipped an OpenClaw killer

https://venturebeat.com/orchestration/anthropic-just-shipped-an-openclaw-killer-called-claude-cod...
3•qwertmax•39m ago•1 comments

Not Even Elon Musk Can Get Nvidia Stock Moving

https://www.barrons.com/articles/nvidia-stock-price-musk-ai-1a20fbaf?
1•1vuio0pswjnm7•43m ago•0 comments

David Botstein, RIP

https://www.nytimes.com/2026/03/20/science/david-botstein-dead.html
2•paulpauper•45m ago•0 comments

My Time with Jürgen Habermas, Europe's 'Last Intellectual'

https://www.politico.com/news/magazine/2026/03/20/karp-habermas-remembrance-00838398
1•paulpauper•45m ago•0 comments

The M4 Apple Neural Engine, Part 3: Training

https://maderix.substack.com/p/inside-the-m4-apple-neural-engine-c8b
1•wslh•51m ago•0 comments

Did Delve (Compliance) Commit Securities Fraud?

1•ManuelSuarez•52m ago•0 comments

Show HN: TempMail Mail – Disposable email with per-domain blocking

https://tempmailmail.com
1•Sharanxxxx•55m ago•0 comments

"Surveillance Camera Man" Provokes Questions About Recording in Public (2013)

https://archive.blogs.harvard.edu/internetmonitor/2013/07/10/surveillance-camera-man-draws-ire-pr...
2•greyface-•56m ago•0 comments

AWS Kiro accounts suspended en masse – AWS flagging fraud detection issues

https://github.com/kirodotdev/Kiro/issues
1•huey77•1h ago•1 comments

Show HN: Agent skill for Excalidraw diagrams with animation and image

1•muthuishere•1h ago•0 comments

Show HN: ez-stack - Stacked PRs for agents

https://github.com/rohoswagger/ez-stack
1•RohoSwagger•1h ago•1 comments

Show HN: Zsweep – Vim Motions Minesweeper with Svelte 5.0

https://github.com/oug-t/zsweep
3•x-guo•1h ago•2 comments

Becoming a Day Person

https://herman.bearblog.dev/becoming-a-day-person/
1•twapi•1h ago•0 comments

Vecterra Command

https://arcade.pirillo.com/vecterra-command.html
1•memalign•1h ago•0 comments

Enable classic confinement for the gh snap (2021)

https://github.com/casperdcl/cli/issues/7
1•skeledrew•1h ago•0 comments

Show HN: Jensenify-MCP: "Every engineer should spend $250k/yr on tokens" –solved

https://github.com/kenm47/jensenify-mcp
1•hank2000•1h ago•0 comments

Show HN: Netwall – A public wall where posts vanish after 24 hours

https://netwall.org
1•dogancan•1h 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•11mo ago

Comments

palata•11mo 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•11mo 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•11mo 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•11mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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.