frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Resend · Email for Developers

https://resend.com
1•thunderbong•3m ago•0 comments

We Can't Know Our A.I. Future If We Don't Study It

https://www.nytimes.com/2026/09/06/opinion/ai-social-sciences.html
1•vinni2•4m ago•0 comments

Mesamatrix: The Mesa Drivers Matrix

https://mesamatrix.net/
1•natureglass•7m ago•0 comments

Impedance Matching

https://www.edge.org/response-detail/27238
1•muti•11m ago•0 comments

Show HN: JarPeek – Online Java Class Decompiler(No Upload)

https://jarpeek.com/class-decompiler
1•xooch_95•11m ago•0 comments

Show HN: Hayduk, a browser-based Metasploit GUI inspired by Armitage

https://github.com/jolovicdev/hayduk
1•jolovicdev•16m ago•0 comments

Learning Synths – Ableton

https://learningsynths.ableton.com/
1•vsvagr•17m ago•0 comments

25 years ago, two strangers met in the twin towers and escaped on 9/11

https://www.theguardian.com/us-news/2026/sep/07/strangers-twin-towers-escape-september-11
1•ljf•17m ago•0 comments

Show HN: Guile-Secure Your Stack

https://guile.in
2•Harsha2193•21m ago•0 comments

Joining Advanced Machine Intelligence to work on world models

https://www.lihaoyi.com/post/JoiningAMItoworkonWorldModels.html
2•plun9•25m ago•0 comments

How to Write Tech Doc

https://essays.nigri.dev/How-to-write-tech-doc
3•napo•25m ago•0 comments

South Atlantic Anomaly

https://en.wikipedia.org/wiki/South_Atlantic_Anomaly
2•robin_reala•29m ago•0 comments

'You Can See Everything' Review: Nathan Fielder's Doc About Elizabeth Holmes

https://variety.com/2026/film/reviews/nathan-fielder-surprise-film-telluride-elizabeth-holmes-123...
9•cianmm•29m ago•0 comments

JavaScript installer pnpm recast in Rust because ECMAScript can't keep up

https://www.theregister.com/devops/2026/09/04/javascript-installer-pnpm-recast-in-rust-because-ec...
2•pjmlp•30m ago•0 comments

Caltech Mathathon – first hackathon ever devoted to research level mathematics

https://mathathonchallenge.com/index.html
2•astroanax•36m ago•0 comments

Speculative Decoding in vLLM on AMD GPUs

https://vllm.ai/blog/2026-08-23-speculative-decoding-amd-gpus
2•ankitg12•36m ago•0 comments

Trump unveils Space Force uniform inspired by Nazi-aesthetic film

https://www.telegraph.co.uk/us/politics/2026/09/07/donald-trump-space-force-uniform-nazi/
6•doener•38m ago•1 comments

Raptor turns Claude Code into a general-purpose AI

https://github.com/gadievron/raptor
2•mitifo5226•38m ago•1 comments

Show HN: Forget Rigid Stock Screeners – A Universal Query API for Financial Data

https://financialdata.net/universal-query
2•_FDN_•39m ago•0 comments

GPT 6 created a new universe [video]

https://www.youtube.com/watch?v=5ldy0Rfx8gA
2•modinfo•40m ago•0 comments

Plastics Companies Are Writing Lesson Plans. What Could Go Wrong?

https://www.wired.com/story/plastics-companies-writing-lesson-plans-what-could-go-wrong/
2•beardyw•41m ago•0 comments

Ask HN: Do People Care About Image Optimisation Anymore?

2•CM30•42m ago•0 comments

Train your own custom Tiny TTS model from scratch overnight on consumer hardware

https://github.com/franciscocarloserra/ttslibre
2•FranciscoCarlos•42m ago•0 comments

Ask HN: How do you keep AI coding agents in sync with a changing Figma file?

2•rjvidentia•46m ago•0 comments

Unreliable Guide to Locking

https://docs.kernel.org/kernel-hacking/locking.html
2•ankitg12•47m ago•0 comments

tuhat: Home for all your reading

2•8by3•54m ago•0 comments

Darwin Zero: How do I think what I think

https://twitter.com/GaetanDuchateau/status/2096568425405354365
2•Bluestein•59m ago•0 comments

Live map of public transport in Belgium

https://openbaarvervoerbelgie.be/
14•coinfused•1h ago•3 comments

anystation: Calling any station A public board shaped like a tree. No account

https://anystation.net/
3•Bluestein•1h ago•0 comments

Show HN: The Token Times · a monthly newspaper on AI

https://befailproof.ai/thetokentimes/
2•nivedit-jain•1h 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.