frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

All 32 NFL stadiums ranked by total game day cost

https://visityourteam.com/nfl/rankings/game-day-costs
1•brambleworks•1m ago•0 comments

Volkswagen to convert German car plant to produce Israeli defense equipment

https://www.timesofisrael.com/volkswagen-to-convert-german-car-plant-to-produce-israeli-defense-e...
1•Betelbuddy•2m ago•0 comments

Senate Considers Letting Contractors Hack Computers for Military

https://www.bloomberg.com/news/articles/2026-09-03/senate-considers-allowing-contractors-to-condu...
1•_____k•2m ago•0 comments

OSB Runs locally on Mobile Devices, now we are Fundraising

https://whydonate.com/fundraising/seeking-startup-funding
1•opensb•4m ago•1 comments

The Appeal

https://sunilpai.dev/posts/the-appeal/
1•tosh•4m ago•0 comments

Show HN: MobileCode – OpenCode with React Native Previews

https://github.com/hsandhu/mobilecode
1•rsandhu•4m ago•0 comments

Does diet and activity lead to difference in energy expenditure in obese women?

https://pmc.ncbi.nlm.nih.gov/articles/PMC10290800/
1•paulpauper•7m ago•0 comments

Hail, Orchestrator

https://webtwoboomer.com/hail-orchestrator-655001b91bc2
1•bendtheblock•7m ago•1 comments

California Forever meets further setbacks

https://www.nytimes.com/2026/09/05/business/economy/california-forever-shipyard-newsom.html
1•paulpauper•11m ago•0 comments

What Is VOD? Video on Demand Streaming and Delivery Explained

https://www.red5.net/blog/what-is-vod/
1•mondainx•11m ago•0 comments

Tech websites remove articles after failing to verify journalists exist

https://pressgazette.co.uk/news/tech-websites-remove-articles-after-failing-to-verify-journalists...
2•bookofjoe•11m ago•0 comments

Taking on Tyler's Challenge

https://www.ciaranmarshall.co.uk/p/taking-on-tylers-challenge
1•paulpauper•11m ago•0 comments

Show HN: OpenLivery – open-source multi-tenant WhatsApp agents for agencies

https://github.com/sarrazola/openlivery
1•sarrazola00•12m ago•0 comments

Thinking about Software Freedom

https://blog.liw.fi/posts/2026/software-freedom/
1•naves•12m ago•0 comments

Show HN: Apecs – A fast TypeScript ECS without the low-level footguns

https://github.com/diffusionstudio/apecs
1•K9-P5•12m ago•0 comments

Albert: A fast, plugin-based keyboard launcher for Linux and macOS

https://albertlauncher.github.io/gallery
1•theanonymousone•13m ago•0 comments

The AI Shift Turning Everyday Investors into Mini Quant Funds

https://www.wsj.com/tech/ai/the-ai-shift-turning-everyday-investors-into-mini-quant-funds-ebe4d45f
1•7777777phil•13m ago•0 comments

Datalevin 1.1.0: Top Performance Across Data Models

https://yyhh.org/blog/2026/09/datalevin-1-1-0-performance/
1•huahaiy•14m ago•0 comments

Minimax releases Sol-H3: 5 second video with audio generated in 1.653s

https://xcancel.com/antibot/captcha
3•upupupupup•15m ago•0 comments

Parent and Child Screen Use and the Effects of Phubbing

https://www.jpeds.com/article/S0022-3476(24)00330-5/fulltext
1•theanonymousone•15m ago•0 comments

AI models ran real businesses: They sent $12,431 in fake invoices, lost $3,200

https://www.bottlenecklabs.com/blog/benchmarking-7-autonomous-businesses
13•Areibman•16m ago•0 comments

Show HN: HomeCat – Design your backyard office

https://myhomecat.com
1•dearilos•17m ago•0 comments

Another Heart Drug Fails Cardiologists

https://www.nytimes.com/2026/09/04/science/heart-drug-fails-novartis-pelacarsen.html
1•apparent•19m ago•0 comments

Show HN: Can you tell a real tweet of a certain user from an AI one?

https://socialsimbench.com/
1•ruggsea•20m ago•0 comments

Adobe ends an 18-year era as AI pressure mounts

https://sg.finance.yahoo.com/news/adobe-ends-18-era-ai-191300355.html
2•healsdata•22m ago•0 comments

Show HN: Quoted – a citation verifier that refuses rather than guesses

https://quoted-jnow.onrender.com
1•kookyeus•22m ago•0 comments

Show HN: Office42, a Clone of Excel

https://apps.microsoft.com/detail/9phpz3d7tgg5?hl=en-US&gl=US
2•roschdal•23m ago•1 comments

It's Time to Change the Math Calculus

https://www.forbes.com/sites/lindadarlinghammond/2025/06/28/its-time-to-change-the-math-calculus-...
1•andrewstetsenko•24m ago•0 comments

Proton protocols: The next chapter of WireGuard at Proton VPN

https://protonvpn.com/blog/protun-technical
1•karlzt•24m ago•0 comments

Show HN: See why Google and AI ignore your site and how to fix it

https://beseen.so
1•alexcloudstar•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•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.