frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A browser game for experimenting with cellular societies

https://gameofsociety.alirizasaral.com
1•alirizasaral•1m ago•0 comments

Microbiome manipulation and enhanced weathering influence tree growth

https://www.carboncommunity.org/glandwr-forest-carbon-study
1•zeristor•4m ago•0 comments

Radio Transmission Security

https://transec-taxonomy.pages.dev
1•belabartok39•4m ago•1 comments

Show HN: CaseHero – your own documented copy of every call with a company

https://case-hero.com/
1•root_theory•4m ago•0 comments

Pentagon draws up new nuclear weapons strategy for war with Russia and China

https://www.yahoo.com/news/politics/articles/pentagon-draws-nuclear-weapons-strategy-160127758.html
1•iamnothere•5m ago•0 comments

Whats Good HN

1•amenxv•6m ago•0 comments

Why Do Fewer Renters Expect to Move?

https://libertystreeteconomics.newyorkfed.org/2026/08/why-do-fewer-renters-expect-to-move/
1•jnord•7m ago•0 comments

Show HN: ReflectWorld – Entity-oriented memory system for open-ended video

https://github.com/addxai/ReflectWorld
2•sylvain_ma•7m ago•0 comments

TCM Tongue Diagnosis AI

https://www.sciencedaily.com/releases/2012/05/120526191322.htm
1•sjreese•7m ago•1 comments

Show HN: Interlock – Atomic TypeScript domain transitions on PostgreSQL

https://github.com/jajego/interlock
1•appleappleapple•8m ago•0 comments

1980s Comic the Dark Knight Returns Transformed Batman

https://www.bbc.com/culture/article/20260805-how-the-dark-knight-returns-transformed-batman
1•Tomte•10m ago•0 comments

Show HN: Hope, 1-on-1 AI Tutor for kids Grades 2-10 learning math

https://usehope.app
2•davidest•11m ago•1 comments

Free Energy Principle

https://en.wikipedia.org/wiki/Free_energy_principle
1•binyu•11m ago•0 comments

AI Agents cannot currently conduct open-ended research

https://cruxevals.com/crux/can-ai-agents-conduct-research/
1•automatic6131•14m ago•1 comments

Make It Cheaper - BOM Pricing Optimizer

https://makeitcheaper.grok.me/
1•nevion42•14m ago•1 comments

Another Typical Autoresearch Post – 1,293 Experiments, 779M Tokens, GPUMode 3rd

https://elianaive.com/posts/another-typical-autoresearch-post/
1•elianaive•15m ago•0 comments

Telephones Caught in Between

https://computer.rip/2026-08-02-telephone-leasing.html
1•speckx•20m ago•0 comments

Chauncy – local semantic search over your PDFs, email, and notes

https://chauncy.dev/
1•JayKeenan•21m ago•0 comments

AI Amplifies Human Ignorance: Lessons from "OpenAI Hacks HuggingFace" Incident [video]

https://www.youtube.com/watch?v=3n3mSQWRz0Y
1•da02•22m ago•0 comments

The optimal amount of fraud is non-zero (2022)

https://www.bitsaboutmoney.com/archive/optimal-amount-of-fraud/
1•throw0101d•23m ago•0 comments

Anyone Looking for a Go Dev?

2•baraamasri•24m ago•1 comments

A Look Back at the First Website Ever Launched, 30 Years Later

https://www.npr.org/2021/08/06/1025554426/a-look-back-at-the-very-first-website-ever-launched-30-...
1•_____k•26m ago•1 comments

Show HN: ProMatch Lab – a football manager where matches run on a server clock

https://promatchlab.com/watch
2•promatchlab•26m ago•0 comments

Show HN: K8s-cleaner a dynamic rule controller to detect unused K8s resources

https://github.com/gianlucam76/k8s-cleaner
1•mgianluc76•26m ago•0 comments

Show HN: Memoars - encrypted memory layer that your AI assistants share

https://memoars.com/
1•shonster88•28m ago•1 comments

Why humans get less sleep than other primates

https://www.bbc.com/future/article/20220524-why-humans-get-less-sleep-than-other-primates
1•speckx•29m ago•0 comments

Picking up where I left off

https://joelchrono.xyz/blog/picking-up-where-i-left-off/
1•meysamazad•30m ago•0 comments

New Polynomial-Time Quantum Algorithm for Various Lattice Problems

https://eprint.iacr.org/2026/1591
3•tomgag•31m ago•0 comments

Show HN: Srelens – Kubernetes control room for engineers and AI agents (MIT)

https://github.com/srelens/srelens
2•deveshk0•31m ago•2 comments

Official ModRetro M64 Deep Dive: Console, Controller, Games [video]

https://www.youtube.com/watch?v=9gOJUEcKYRk
2•mfi•31m 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.