frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

She Will Be Back Before September

https://www.minid.net/2026/9/6/she-will-be-back-before-september
1•meerita•1m ago•0 comments

What are code reviews even for?

https://newsletter.getdx.com/p/what-are-code-reviews-even-for
1•eric_khun•1m ago•0 comments

Who pays for the bus timetable in your pocket?

https://www.opendatamanchester.org.uk/who-pays-for-the-bus-timetable-in-your-pocket/
1•latexr•2m ago•0 comments

Show HN: Robin – restyle any website with a one-line prompt

https://thisisrobin.ai/
1•nikolas1814•2m ago•0 comments

Bill Gates Foundation – Mosquito Nets in Africa [video]

https://www.youtube.com/shorts/0KYysENY_j0
1•thelastgallon•3m ago•1 comments

Coyote v. Acme (1990)

https://www.newyorker.com/magazine/1990/02/26/coyote-v-acme
1•ChrisArchitect•4m ago•1 comments

Are people who only seem happy when they're angry increasing? Seems like it

2•Webstir•5m ago•0 comments

Open App Bridge (OAB) – A decentralized document handoff for web apps

https://openappbridge.org/
2•srdr•5m ago•0 comments

Show HN: AutoHttps, zero-dependency automatic HTTPS for ASP.NET Core

https://github.com/astralmaster/AutoHttps
2•astralmaster•7m ago•0 comments

Measuring systematic PPS bias on the Raspberry Pi 5

https://satpulse.net/2026/09/06/measuring-systematic-pps-bias-on-the-raspberry-pi-5.html
2•geerlingguy•9m ago•0 comments

The many mysteries and lessons of the Bayeux tapestry

https://economist.com/interactive/culture/2026/09/03/the-many-mysteries-and-lessons-of-the-bayeux...
3•andsoitis•9m ago•0 comments

One Protobuf Schema for REST, Postgres, SDKs, and Docs

https://www.cadenya.com/handwritten/designing-cadenyas-api
1•btables•11m ago•1 comments

iPhone Handoff will seamlessly share one number between two phones

https://www.theverge.com/tech/990868/iphone-handoff-ios-27
1•rawgabbit•11m ago•0 comments

NetBSD 11 from Scratch

https://meanmicio.org/2026/09/06/netbsd-11-from-scratch/
1•jaypatelani•13m ago•0 comments

I Made a TV from the Internet Archive

https://rndtv.me/
2•vorniches•15m ago•2 comments

Ask HN: Any Software Engineers here who enjoy their AI-native dev workflow?

1•pkos98•15m ago•1 comments

The Therapeutic Potential of Apigenin (2018)

https://pmc.ncbi.nlm.nih.gov/articles/PMC6472148/
1•walterbell•16m ago•0 comments

Interactive Physics

https://ciechanow.ski/
1•gmays•16m ago•0 comments

The Economics of the Intelligence Frontier

https://twitter.com/seanlinehan/status/2091955290552078418
2•gmays•19m ago•1 comments

Packslip – signed release manifest for archives, installers, or executables

https://jdx.dev/posts/2026-09-05-introducing-packslip/
1•grappler•19m ago•0 comments

The Innovative HP Computer Behind a Hedge Fund Pioneer

https://thechipletter.substack.com/p/the-innovative-hp-computer-behind
1•signa11•20m ago•0 comments

Federal judge again rules against Musk's xAI

https://kstp.com/kstp-news/local-news/federal-judge-again-rules-against-musks-xai-allowing-minnes...
1•01-_-•21m ago•0 comments

TIL: Using Blender with coding agents on macOS

https://simonwillison.net/2026/Sep/5/blender-coding-agents-macos/
1•kyisaiah47•22m ago•0 comments

Show HN: MarkFlowy – A open source Markdown editor rebuilt for large documents

https://github.com/drl990114/MarkFlowy
2•drl5•22m ago•1 comments

How would LLMs vote in upcoming German state elections?

https://tsoj.link/llm_wahl-o-mat.html#berlin2026
1•tsoj•23m ago•1 comments

Show HN: Object Remover – AI Video Object Remover Online

https://objectremover.online/
1•niliu123•23m ago•0 comments

You Could Have Come Up with Speculative Decoding

https://amandeepsp.github.io/blog/spec-decode/
1•amandeepspdhr•25m ago•0 comments

Gompertz–Makeham Law of Mortality

https://en.wikipedia.org/wiki/Gompertz%E2%80%93Makeham_law_of_mortality
2•theletterf•25m ago•0 comments

Lost Bytes at the Crossroads Between User and Kernel-Level Memory Management [pdf]

https://www.ibr.cs.tu-bs.de/vss/Publications/2026/fistanto_26_lost_bytes.pdf
1•signa11•25m ago•0 comments

A 30-Year-Old Japanese Book Predicted Our Productivity Crisis

https://medium.com/@tl2do/a-30-year-old-japanese-book-predicted-our-productivity-crisis-heres-wha...
1•Tomte•28m 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.