frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Collaborative Editing in Wordgard

https://marijnhaverbeke.nl/blog/collaborative-editing-wordgard.html
1•fagnerbrack•31s ago•0 comments

Plan Mode Is Dead

https://www.aymannadeem.com/artificial/intelligence,/developer/tools/2026/09/24/plan-mode-is-dead...
1•jmvldz•2m ago•0 comments

Power your agents: Gemini 3.8 Live with Live Avatar is now generally available

https://cloud.google.com/blog/products/ai-machine-learning/gemini-3-8-live-with-live-avatar-is-no...
1•planteur•5m ago•0 comments

What I Found Out About Organ Donation Shocked Me

https://www.nytimes.com/2026/09/18/opinion/organ-donation-system-ethics-trust.html
1•Alien1Being•5m ago•2 comments

Scalable Subagents

https://github.com/ringlochid/oh-my-subagents
1•ringlochid•6m ago•0 comments

We Built a City of 10k AI Researchers

https://lab.cloud/society/
1•simonpure•11m ago•0 comments

Congestion pricing funds $5M program for overnight truck deliveries in NYC

https://gothamist.com/news/congestion-pricing-funds-5-million-program-for-overnight-truck-deliver...
1•geox•13m ago•0 comments

Show HN: I built 11 Sudoku variants – killer cage generation was the hard part

https://iqiqgame.com/tags/sudoku
1•fang3651•16m ago•1 comments

Side-Channel Leakage from the File-Notification System

https://inoti.fyi/
1•xiaoyu2006•19m ago•1 comments

Learning to Discover Interesting Mathematics

https://arxiv.org/abs/2609.28603
1•E-Reverance•21m ago•0 comments

Research into file-notification attacks on Linux

https://lwn.net/Articles/1096431/
1•xiaoyu2006•22m ago•0 comments

FDA panel endorses first-of-a-kind cancer blood test from Grail

https://apnews.com/article/grail-test-cancer-fda-dna-8fc5480be365b59c450043daa38cad30
1•gmays•24m ago•0 comments

Government considers £11 monthly UK broadband fee to fund BBC TV

https://www.ispreview.co.uk/index.php/2026/09/government-considers-11-monthly-uk-broadband-fee-to...
1•ksec•31m ago•1 comments

Show HN: Today I deployed this Durable Chat application and was impressed

https://durable-chat-template.netly.workers.dev/PghOYV3NHew0fYlhGAUZB
1•DinakarS•32m ago•0 comments

AICore: Exploring an adaptive control layer for heterogeneous PCs

https://github.com/7-hello007/AICore-Showcase
1•Kenny9892•33m ago•0 comments

Scaling Laws for Neural Language Models (first "scaling laws" paper from 2020)

https://arxiv.org/abs/2001.08361
1•thoughtpeddler•33m ago•0 comments

Bad examples can override agent skill files

https://codecut.ai/agent-skills-bad-session-history/
2•khuyentran1401•34m ago•0 comments

Search and Recommender Engines AI

https://github.com/alopatenko/LLMSearchRecommender
1•pltig•34m ago•0 comments

Ask HN: Who is smarter than you that you listen to what they have to say?

1•SMAAART•34m ago•2 comments

Using AI to Contribute to Open Source

https://www.visidata.org/blog/2026/ai/
1•pietroppeter•36m ago•1 comments

Show HN: Apple Ads as Infra as Code

https://github.com/picubedllc/terraform-provider-appleads
1•irdz•38m ago•0 comments

Supreme Court's emergency rulings imposing institutional costs

https://thehill.com/regulation/court-battles/6110805-justice-jackson-critiques-scotus-emergency-d...
1•Alien1Being•39m ago•0 comments

Show HN: Zchyoom - Live-ish Shinkansen Map

https://traingo.nyoom.io
2•qmarchi•41m ago•1 comments

Human Help to Survive AI

https://humanityark.cdtglobal.org/
1•igdiaz•45m ago•1 comments

Spec Vibing with Speccheck

https://github.com/rioffe/speccheck
1•robertioffe•48m ago•1 comments

The End of Apps and Websites

https://debuggerdotbreak.judahgabriel.com/2026/04/14/the-end-of-apps-and-websites/
2•mooreds•51m ago•1 comments

MentalHealthBench

https://openai.com/ru-RU/index/introducing-mentalhealthbench/
1•GloVin•52m ago•0 comments

Some data centers could consume more power than major cities

https://www.visualcapitalist.com/these-data-centers-could-consume-more-power-than-cities/
1•oliculipolicula•53m ago•0 comments

Global bond sell-off deepens, sending borrowing costs higher around the world

https://www.cnn.com/2026/09/24/investing/bond-market-global
2•mooreds•53m ago•0 comments

How to serve trillions of tokens for trillion-parameter coding agents

https://modal.com/blog/trillion-tokens-trillion-parameters
2•birdculture•53m 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.