frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Who Survived the Great Dying – and Why, from PBS

https://www.pbs.org/show/eons/
1•blizow•32s ago•0 comments

SF's Tech Right Debates the Ideal Dictator

https://bayareacurrent.com/sfs-tech-caesar/
1•hliyan•1m ago•0 comments

What do you think about elastic workload?

https://xflops.io/blog/flame-v0-6/
1•k82cn•2m ago•0 comments

Dutch central bank moves 86 tonnes of gold from US citing 'geopolitical unrest'

https://www.theguardian.com/world/2026/sep/03/netherlands-gold-dutch-central-bank-uk-us-and-canad...
1•Jimmc414•3m ago•0 comments

Show HN: Review-to-rule – Turn accepted review feedback into durable repo rules

https://github.com/vamgan/review-to-rule
1•vamgan•10m ago•0 comments

The Loose: The Coming of Useless Agents

https://twitter.com/deanwball/status/2094794694572015854
1•jjwiseman•12m ago•0 comments

Toxic haze from Indonesia spreads to Malaysia and Philippines as wildfires rage

https://www.bbc.com/news/live/cqevw9y34y34t
1•blondie9x•12m ago•0 comments

We analyzed the code published by 29 frontier AI labs. Here's the data

https://opsera.ai/blog/frontier-ai-software-readiness-benchmark/
1•nassirkhan•14m ago•0 comments

Phased Behaviour in Wrapture

https://grahamdumpleton.me/posts/2026/09/phased-behaviour-in-wrapture/
1•lumpa•15m ago•0 comments

The mission to reach Nepal's underground 'Goldilocks zones'

https://www.abc.net.au/news/2026-09-03/nepal-hydroelectric-tunnels-rescue-interactive/107101108
2•CHB0403085482•15m ago•0 comments

Literate Programming with LLMs? – A Study on Rosetta Code and CodeNet

https://research.chalmers.se/en/publication/549267
1•gurjeet•19m ago•0 comments

Load-Bearing People

https://mikefisher.substack.com/p/load-bearing-people
2•Garbage•24m ago•0 comments

Frontier Act – Federal oversight of the development of frontier AI

https://www.congress.gov/bill/119th-congress/house-bill/9925/text
2•cco•32m ago•0 comments

Show HN: Indicate: Transliterate Indic Languages with PyTorch and LLMs

https://github.com/in-rolls/indicate
1•neehao•34m ago•0 comments

Reactor Live

https://live.reactor.inc/
1•willemhelmet•37m ago•0 comments

An Inflection Point for Prediction Markets

https://www.theatlantic.com/newsletters/2026/09/kalshi-polymarket-insider-trading-santos/688505/
1•paulpauper•37m ago•0 comments

How to Evaluate Diet Gurus

https://www.exfatloss.com/p/how-to-evaluate-diet-gurus
2•paulpauper•41m ago•0 comments

Rootnet: Exponentially Accelerate Advancing the Frontier

https://twitter.com/onrootnet/status/2095349077542342858
1•koopuluri•42m ago•0 comments

Wk. 6 of Vibecoding an MMO

https://eldermyr.com/
6•josiahturnq•42m ago•2 comments

Once you understand how to write a program get someone else to write it

https://engineering.yale.edu/academic-study/departments/computer-science/about/epigrams-programming
3•teleforce•43m ago•0 comments

To opt out of using your X data for Grok training

https://twitter.com/grok/status/2007729382429761905
1•andsoitis•49m ago•0 comments

Late-life semaglutide slows ageing and extends lifespan in female mice

https://www.nature.com/articles/s41586-026-10940-7
1•sbulaev•49m ago•1 comments

What is neuralese and why is it bad?

https://linch.substack.com/p/what-is-neuralese
2•paulpauper•49m ago•0 comments

AI security that assumes the attacker has root

https://thenewstack.io/tide-raziel-emergent-authority/
1•SaltNHash•49m ago•0 comments

Elon Musk's heterodox robotaxi philosophy gets put to the test

https://www.theverge.com/transportation/987901/tesla-cybercab-launch-elon-musk-robotaxi-camera-lidar
1•Tiktaalik•51m ago•1 comments

How we can win: A blueprint for the mathematical community

https://tasmin.substack.com/p/how-we-can-win
1•reasonableklout•52m ago•0 comments

OpenAI Astra Launching Soon

https://help.openai.com/en/articles/20001259-openai-daybreak-common-issues-and-troubleshooting#wh...
3•imbobbytables•54m ago•0 comments

After Show HN: Targeting the Bot Storm

1•UJ-FLD-ScrTr•55m ago•0 comments

Ask HN: Should you open-source your Claude Code project docs with the repo?

1•seestraw•57m ago•0 comments

SOfIoTS: Secure Ontologies for Internet of Things Systems (2023)

https://eprints.soton.ac.uk/490073/
1•teleforce•59m 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.