frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Art and War with a Master Storyteller

https://www.realcleardefense.com/articles/2026/05/01/art_and_war_with_a_master_storyteller_117988...
1•RickJWagner•42s ago•0 comments

CA Billionaire Spends $3.5M to oppose OpenAI in NY house race

https://www.nytimes.com/2026/05/01/us/politics/alex-bores-chris-larsen-open-ai-jack-schlossberg.html
1•dolomo•3m ago•1 comments

Anthropic's anti-distillation defense,reverse-engineered from Claude Code source

https://wanlanglin.github.io/-awesome-cc-harness/en/
2•felixwll•7m ago•0 comments

Ling-2.6-1T: A Trillion-Parameter Comprehensive Flagship Model for Complex Tasks

https://huggingface.co/inclusionAI/Ling-2.6-1T
1•darkhorse13•7m ago•0 comments

Show HN: LocalVQE: Tiny ~1M param audio model that cancels echo and noise

https://huggingface.co/spaces/LocalAI-io/LocalVQE-demo
1•richiejp•10m ago•0 comments

SpaceX spending on Starship tops $15B in rush for airline-like rocketry

https://www.reuters.com/business/autos-transportation/spacex-spending-starship-tops-15-billion-ru...
1•bilsbie•11m ago•0 comments

Publishers Demand Accountability from Common Crawl over Unauthorized Use

https://www.newsmediaalliance.org/nma-letter-to-common-crawl/
1•thm•11m ago•1 comments

Ask HN: How do you self-host your apps?

1•blindlobstar•11m ago•0 comments

Without warning, Germany ordered Lexus to remotely shut down the remote-start

https://twitter.com/redpillb0t/status/2050052552948175265
2•bilsbie•13m ago•0 comments

AI commerce needs an MLPerf – early attempt at one

https://ucpchecker.com/blog/ucp-playground-evals
1•benjifisher•14m ago•0 comments

The Productivity Panic Is Your Problem Now

https://stratechgist.com/p/the-productivity-panic-is-your-problem
1•bartdegoede•18m ago•0 comments

Hallucinated citations are polluting the scientific literature. What can be done

https://www.nature.com/articles/d41586-026-00969-z
1•b-man•18m ago•0 comments

Android VPN IP Leak Even If Always-On VPN Enabled

https://lowlevel.fun/posts/tiny-udp-cannon-android-vpn-bypass/
6•birdculture•19m ago•0 comments

The Rise of the High-Range, Less Expensive E.V

https://www.nytimes.com/2026/04/27/upshot/cheap-electric-cars-gas-prices.html
2•TheWeiHu•19m ago•1 comments

Elon Musk's A.I. Claims of Danger Face Limits in OpenAI Trial

https://www.nytimes.com/2026/04/30/technology/openai-trial-elon-musk-existential.html
1•1vuio0pswjnm7•19m ago•0 comments

An Ode to Inconsolation

https://terminaltrove.com/blog/an-ode-to-inconsolation/
1•diazc•20m ago•0 comments

Abaxx Announces Release of Open-Source Library for Agentic Identity: Agents++

https://investors.abaxx.tech/press-releases/abaxx-announces-the-formation-of-abaxx-labs-and-the-r...
1•mdhen•21m ago•1 comments

Herb Sutter: What C++26 Means for Production Systems [video]

https://www.youtube.com/watch?v=Qvr9MTAU_y4
1•KnuthIsGod•22m ago•0 comments

For first time since World War II, US national debt now larger than its economy

https://fortune.com/2026/04/30/national-debt-larger-than-economy-gdp-ratio-100-percent/
2•Geekette•22m ago•0 comments

Juan Alday: Why C++ Wins in Finance [video]

https://www.youtube.com/watch?v=InLxLEqg_fs
1•KnuthIsGod•23m ago•0 comments

Dreams – A New Social Media Network

1•code1234567890•23m ago•0 comments

California billionaire tax proposal attracts 1.5M signatures

https://www.latimes.com/business/story/2026-04-30/what-to-know-about-california-billionaire-tax-p...
3•1vuio0pswjnm7•24m ago•0 comments

Public consultation should begins on plans to transform the moon and Mars

https://www.theguardian.com/commentisfree/2026/may/01/artemis-moon-mars
1•giuliomagnifico•26m ago•0 comments

D. B. Cooper

https://en.wikipedia.org/wiki/D._B._Cooper
1•chistev•26m ago•0 comments

Gašper Ažman: How C++26 Rethinks Concurrency and Execution [video]

https://www.youtube.com/watch?v=A13jJXW74xQ
1•KnuthIsGod•27m ago•0 comments

Vatican Observatory has asteroid named after Pope Leo XIII

https://www.vaticannews.va/en/vatican-city/news/2026-05/vatican-observatory-astronomy-asteroids-p...
1•thinkingemote•29m ago•0 comments

Running Adobe's 1991 PostScript Interpreter in the Browser

https://www.pagetable.com/?p=1854
8•ingve•33m ago•1 comments

Ask HN: How do you detect breaking API changes in CI?

1•coffeecoderr•34m ago•0 comments

Sanders splits with Washington on AI arms race with China

https://www.axios.com/2026/04/30/bernie-sanders-ai-arms-race-china
1•1vuio0pswjnm7•37m ago•1 comments

NHS Goes to War Against Open Source

https://shkspr.mobi/blog/2026/05/nhs-goes-to-war-against-open-source/
5•edent•38m ago•1 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•1y ago

Comments

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

https://reportmill.com/SnapCode

palata•1y 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•1y 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•1y 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•1y 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•1y 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•1y 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•1y 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.