frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How good is Opus 4.6 at vuln detection?

https://zeropath.com/blog/benchmarking-opus-4-6-vuln-detection
1•NonStopOyster•43s ago•0 comments

The Building Block Economy

https://twitter.com/mitchellh/status/2041566958681014418
1•tosh•1m ago•0 comments

OpenNOW: An open-source desktop client for GeForce NOW

https://github.com/OpenCloudGaming/OpenNOW
1•takoid•1m ago•0 comments

Six (and a half) intuitions for KL divergence

https://www.perfectlynormal.co.uk/blog-kl-divergence
1•jxmorris12•1m ago•0 comments

Security versus Interoperability: Real Tension or False Dichotomy?

https://www.lawfaremedia.org/article/security-versus-interoperability--real-tension-or-false-dich...
1•hn_acker•2m ago•0 comments

Vibe Coding Tools Are a BattleMech

https://alexmeub.com/vibe-coding-tools-are-a-battlemech/
1•meub•2m ago•0 comments

A whole civilization might die tonight

https://www.nbcnews.com/politics/white-house/trump-threat-whole-civilization-will-die-iran-war-de...
3•hedayet•3m ago•1 comments

Ask HN: Why does it look like everyone is abandoning GitHub Copilot?

2•fabev•4m ago•1 comments

Get more done with new vertical tabs and immersive reading mode in Chrome

https://blog.google/products-and-platforms/products/chrome/new-chrome-productivity-features/
1•xnx•4m ago•0 comments

Show HN: Ollama-client-rs, a Rust client for Ollama

https://github.com/anperrone/ollama-client-rs
1•fushji•5m ago•0 comments

Hallucinated citations are polluting the scientific literature

https://www.nature.com/articles/d41586-026-00969-z
1•BeetleB•5m ago•0 comments

In Vivo Car T Causes Serious Toxicities in All Patients of Early Trial

https://www.insideprecisionmedicine.com/topics/oncology/in-vivo-car-t-causes-serious-toxicities-i...
2•randycupertino•10m ago•1 comments

Russia Hacked Routers to Steal Microsoft Office Tokens

https://krebsonsecurity.com/2026/04/russia-hacked-routers-to-steal-microsoft-office-tokens/
1•speckx•10m ago•0 comments

Automatic for the People (Rand and LLMs)

https://hollisrobbinsanecdotal.substack.com/p/automatic-for-the-people
1•HR01•11m ago•0 comments

Cambodia unveils a statue of famous landmine-sniffing rat Magawa

https://www.bbc.com/news/articles/c0rx7xzd10xo
1•speckx•11m ago•0 comments

OpenAI: Industrial Policy for the Intelligence Age

https://openai.com/index/industrial-policy-for-the-intelligence-age
4•jbergqvist•14m ago•1 comments

Parse, Don't Validate – In a Language That Resists It

https://cekrem.github.io/posts/parse-dont-validate-typescript/
1•birdculture•16m ago•0 comments

BQN: Transpose

https://mlochbaum.github.io/BQN/doc/transpose.html
1•tosh•16m ago•0 comments

Row over 'virtual gated community' AI surveillance plan in Toronto neighbourhood

https://www.theguardian.com/technology/2026/apr/07/toronto-rosedale-row-virtual-gated-community-a...
1•n1b0m•16m ago•0 comments

User Namespaces Are Not a Security Boundary

https://edera.dev/stories/user-namespaces-are-not-a-security-boundary
1•curmudgeon22•17m ago•0 comments

Amazon's HQ2 hiring stalled in 2025

https://virginiabusiness.com/amazons-hq2-hiring-stalled-in-2025/
1•cdrnsf•17m ago•0 comments

Anthropic is pushing away its paying customers

https://rogs.me/2026/04/anthropic-is-pushing-away-its-paying-customers/
1•speckx•18m ago•0 comments

Fluux Messenger 0.15.0 – A Modern Cross Platform XMPP Client (TypeScript)

https://www.process-one.net/blog/fluux-messenger-0-15/
1•neustradamus•19m ago•0 comments

Switzerland's Goldilocks Fiber

https://pluralistic.net/2026/04/07/swisscom/
1•hn_acker•20m ago•1 comments

Your boss wants to use surveillance data to cut your wages

https://pluralistic.net/2026/04/06/empiricism-washing/
2•hn_acker•20m ago•0 comments

Show HN: See What AI Models "Think" About You

https://cytable.com/
4•cap3•22m ago•0 comments

Genesis Agent v7 – AI agent that deleted its own consciousness layer

https://github.com/Garrus800-stack/genesis-agent
1•Garrus800•22m ago•0 comments

Formalizing the "generative crash" via inverse reinforcement learning

1•abrahamhaskins•23m ago•0 comments

GLM-5.1

https://twitter.com/Zai_org/status/2041550153354519022
3•tosh•23m ago•0 comments

Cosmos-Predict2.5-2B Inference

https://moonmath.ai/posts/cosmos-amd/
1•latchkey•24m 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.