frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Async version for Rust std::sync and more

https://github.com/fast/mea
1•tison•9m ago•0 comments

Safepay: Jobs get done. Payments get released. No stress, no surprises

https://safepayhq.com/
1•Mahmudahmed•10m ago•0 comments

Verbal Knobs. We owe the answers we proxy

https://fnhipster.com/posts/verbal-knobs
1•fnhipster•12m ago•1 comments

Candy Desk

https://en.wikipedia.org/wiki/Candy_Desk
1•65•14m ago•0 comments

104 elite skydivers set world record in physics-defying formation

https://www.indiatoday.in/science/story/watch-104-elite-skydivers-set-world-record-in-physics-def...
1•ashishgupta2209•22m ago•0 comments

Show HN: Cryptopp-modern – maintained Crypto++ fork with BLAKE3, Argon2, CMake

https://github.com/cryptopp-modern/cryptopp-modern
1•CoraleDev•25m ago•0 comments

Built a Free, Unlimited Screen Recorder Because Everything Else Annoyed Me

https://www.indiehackers.com/post/built-a-free-unlimited-screen-recorder-because-everything-else-...
2•showesome•31m ago•1 comments

Microsoft CEO taps advisor to 'rethink' the company's business for the AI era

https://www.businessinsider.com/nadella-taps-adviser-rethink-new-economics-ai-memo-shows-2025-11
2•SilverElfin•34m ago•0 comments

Baikonur pad damaged in Soyuz launch to ISS

https://spacenews.com/baikonur-pad-damaged-in-soyuz-launch-to-iss/
4•Anon84•37m ago•0 comments

"Disagree and Let's See"

https://mollyg.substack.com/p/disagree-and-lets-see
1•benwerd•41m ago•0 comments

The Writing Is on the Wall for Handwriting Recognition

https://newsletter.dancohen.org/archive/the-writing-is-on-the-wall-for-handwriting-recognition/
1•myth_drannon•42m ago•0 comments

The Gist of Western Philosophy

https://youtu.be/7XcwlDnwai0
2•m-hodges•48m ago•0 comments

Tkr.life

https://tkr.life/
1•agendacreativa•50m ago•1 comments

Tell HN: Regrets. Think carefully about how you spend your time

21•anonymous_ibex•53m ago•3 comments

Explosive Skill Acquisition

https://bengoldhaber.substack.com/p/explosive-skill-acquisition
1•lindowe•58m ago•0 comments

My Seeker Phone

https://avc.xyz/my-seeker-phone
2•wslh•1h ago•0 comments

Stopping bad guys from using my open source project (feedback wanted)

https://evanhahn.com/stopping-bad-guys-from-using-my-open-source-project/
11•emschwartz•1h ago•13 comments

Easily duped by his Stanford veneer with O realizing he's a CCP mouthpiece

https://twitter.com/Byron_Wan/status/1993489995156647971
1•737min•1h ago•1 comments

The Beguiling, Misunderstood Theremin

https://www.nytimes.com/2025/11/29/arts/music/theremin-instrument.html
1•Kaibeezy•1h ago•1 comments

EU to Target Apple Maps and Apple Ads Next

https://www.macrumors.com/2025/11/28/eu-targets-apple-maps-and-apple-ads/
2•Sir_Twist•1h ago•0 comments

Couple allegedly used hidden camera, earpieces to win $1.18M from Crown casino

https://www.theguardian.com/australia-news/2025/nov/30/couple-from-kazakhstan-allegedly-used-hidd...
3•defrost•1h ago•0 comments

Meshtastic

https://meshtastic.org/
10•debo_•1h ago•1 comments

YouTube Recommendation Algo

1•solarized•1h ago•1 comments

A new Little Prince museum has opened its doors in Switzerland

https://www.lepetitprince.com/en/events-around-the-world/a-new-little-prince-museum-has-opened-it...
4•gnabgib•1h ago•0 comments

Software Is Not the Service

https://green.spacedino.net/software-is-not-the-service/
3•surprisetalk•1h ago•0 comments

What's the Deal with Euler's Identity?

https://lcamtuf.substack.com/p/whats-the-deal-with-eulers-identity
2•surprisetalk•1h ago•0 comments

ASML Got EUV Lithography

https://www.factorysettings.org/p/how-asml-got-euv-lithography
2•surprisetalk•1h ago•0 comments

Sega Master System: Fancier Tile Graphics

https://bumbershootsoft.wordpress.com/2025/11/29/sega-master-system-fancier-tile-graphics/
1•ibobev•1h ago•0 comments

A Circle in the Hyperbolic Plane

https://www.johndcook.com/blog/2025/11/28/hyperbolic-circle/
2•ibobev•1h ago•0 comments

Monero Subaddresses

https://www.johndcook.com/blog/2025/11/28/monero-subaddresses/
1•ibobev•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•7mo ago

Comments

palata•7mo 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•7mo 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•7mo 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•7mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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.