frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GE Aerospace aircraft flies to mark high altitude hybrid-electric milestone

https://www.aerospacetestinginternational.com/news/ge-aerospace-aircraft-flies-at-farnborough-to-...
1•rbanffy•26s ago•0 comments

Mickey Mouse Sells a Bundle

https://www.marginpoints.com/essays/mickey-mouse-sells-a-bundle-hn
1•historian1066•1m ago•0 comments

First-ever X-rays in space offer hope for possible patients headed to the moon

https://www.space.com/space-exploration/human-spaceflight/1st-ever-x-rays-in-space-offer-hope-for...
1•gmays•1m ago•0 comments

The future of software isn't tests. It's proofs

https://github.com/astrio-labs/forall
2•Nolan_Lwin•2m ago•0 comments

How rare is a four leaf clover? [video]

https://www.youtube.com/watch?v=XfUFPHA0HIA
1•rwmj•2m ago•0 comments

Glassdoor is now part of Indeed

https://www.glassdoor.com/about/
1•mahdihabibi•2m ago•1 comments

Show HN: Chalk: a Mac app for technical diagrams with a built-in MCP for Claude

https://chalk.appkit.studio
2•davideweaver•3m ago•0 comments

A resource about cybernetics and the work of the father of the information age

https://www.norbertwiener.org/
1•stmw•5m ago•0 comments

Show HN: Dotflowy, the open source Workflowy alternative [video]

https://www.youtube.com/watch?v=S07dI6pIr_Q
2•campak•7m ago•1 comments

The Secret Origins of Amazon's Alexa

https://www.wired.com/story/how-amazon-made-alexa-smarter/
2•Anon84•7m ago•0 comments

Intelligence is not the main bottleneck

https://www.writingruxandrabio.com/p/intelligence-is-not-the-main-bottleneck
2•contemporary343•8m ago•0 comments

Charting RISC-V's Future in HPC

https://www.hpcwire.com/2026/07/20/charting-risc-vs-future-in-hpc/
1•rbanffy•8m ago•0 comments

Stages of Denial

https://nsl.com/papers/denial.html
1•veqq•9m ago•0 comments

METR introduces Expenditure Horizon metric

https://metr.org/blog/2026-07-21-expenditure-horizon/
1•qntmfred•10m ago•0 comments

We Don't Have to Die: Cryonics and Uploading – Allison Duettmann [video]

https://www.youtube.com/watch?v=knM7yHFH67o
1•turizzmo•12m ago•0 comments

Show HN: Claude Code built my ESP32 and fixed its UI by looking at a webcam

https://github.com/fcavalcantirj/claude-code-eyes
1•fcavalcantirj•15m ago•0 comments

Anaconda Acquires Kilo Code

https://www.anaconda.com/blog/anaconda-acquires-kilo-code
2•kristianp•17m ago•0 comments

Claude Opus 4.5 defied CEO, helped employee blow whistle about safety concerns

https://www.msn.com/en-us/news/technology/claude-opus-4-5-defied-its-ceo-and-helped-an-employee-b...
1•petethomas•18m ago•0 comments

No one wants to work in hospitality

https://chilblands.bearblog.dev/no-one-wants-to-work-in-hospitality/
2•speckx•19m ago•0 comments

Some more things about Django I've been enjoying

https://jvns.ca/blog/2026/07/21/more-nice-django-things/
1•surprisetalk•19m ago•0 comments

OpenAI announces models hacked Hugging Face during an eval

https://runtimewire.com/article/openai-announces-models-hacked-hugging-face-during-an-eval
2•ryanmerket•19m ago•1 comments

Now I Open source another desktop agent Teralexi

https://github.com/Naughty-Otters/Teralexi
1•teralexi•20m ago•0 comments

Taste Is the Spec

https://github.com/getlago/lago/wiki/Taste-is-the-spec
1•AnhTho_FR•20m ago•0 comments

Intel Compute Runtime Continues Building Out "Leo"

https://www.phoronix.com/news/Intel-CR-26.27.39122.11
1•rbanffy•22m ago•0 comments

Giant List of Classic Game Programmers Since 1992

https://dadgum.com/giantlist/
1•bookofjoe•22m ago•0 comments

Is Software Enshittified?

https://www.natemeyvis.com/is-software-enshittified/
3•speckx•24m ago•0 comments

120 users, 65 product submissions, and little traffic: what I learned

https://liftoapp.com/blog/120-users-65-product-submissions-very-little-traffic
1•riyadbkhsh•25m ago•0 comments

How did Apple cut launch time by 30% in iOS 27?

https://blog.jacobstechtavern.com/p/ios-27-launch-time
2•jakey_bakey•25m ago•0 comments

Sales of Valve's Steam Deck crater after recent price hike

https://arstechnica.com/gaming/2026/07/steam-deck-sales-are-losing-steam-since-mays-price-hike/
3•ViktorRay•25m ago•1 comments

Can a Candy Bar Price a Code Review?

https://blog.bolshakov.dev/2026/07/20/can-a-candy-bar-price-a-code-review.html
1•tema-bolshakov•26m 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.