frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DN42 is a large dynamic VPN

https://wiki.dn42.us/Home
1•latchkey•1m ago•0 comments

Five AIs Predict the World Cup

https://blog.omgmog.net/AIWC26/
1•omgmog•3m ago•0 comments

LLMs use recurring ghost authors and personalities

https://arxiv.org/abs/2606.02184
1•Gaishan•3m ago•0 comments

In an ant colony, the queen isn't in charge. So who is?

https://phys.org/news/2026-05-ant-colony-queen-isnt.html
2•indynz•5m ago•0 comments

Ask HN: Depression

1•hnthrow10282910•7m ago•1 comments

Pangolin 1.19: Browser Remote Access – SSH, RDP, VNC and More

https://pangolin.net/news/1-19-release
1•miloschwartz•9m ago•0 comments

>400 AUR Packages Compromised with NPM post-install malware

https://archlinux.org/news/active-aur-malicious-packages-incident/
1•lorenzohess•10m ago•1 comments

SpaceX soars after trading begins in largest IPO of all time

https://abcnews.com/Business/spacex-ipo/story?id=133713436
1•evo_9•10m ago•0 comments

Show HN: An AI coaching team in Claude Code that's forbidden from judging you

https://github.com/ibm777p2/Intelligence-Emotions
1•ibm777p2•14m ago•0 comments

Justice Department Approves Paramount's Acquisition of Warner Bros

https://www.politico.com/news/2026/06/12/paramount-acquisition-warner-bros-approved-00960300
3•alephnerd•16m ago•0 comments

Gordon Pask, I Think

https://www.guidavid.com/writing/gordon-pask-i-think
1•gdss•19m ago•0 comments

Free browser-based developer tools I built for everyday front end work

https://0918.us/
1•vicbiz•20m ago•0 comments

Serverless Server Canvas

https://pixelparty-was-taken.vercel.app/
1•GrimFang•22m ago•0 comments

Eric S. Raymond: How to Become a Hacker

https://www.catb.org/esr/faqs/hacker-howto.html
1•dtj1123•26m ago•0 comments

Daytona is going closed source

https://www.daytona.io/dotfiles/updates/daytona-is-going-closed-source
3•majdalsado•26m ago•3 comments

Elon Musk is a real-life Bond villain

https://www.ft.com/content/77affaa7-5da8-4a85-bc7c-eb59b75a72b0
9•doener•27m ago•4 comments

My last observation re: Anthropic's sabotage

https://xcancel.com/deanwball/status/2064665679307985244
2•SilverElfin•29m ago•1 comments

Paramount-WBD merger wins approval from DOJ

https://www.cnbc.com/2026/06/12/paramount-wbd-merger-approval-doj.html
1•root-parent•29m ago•0 comments

The Tests We Skipped

https://ajeygore.in/content/the-tests-we-skipped
1•cdrnsf•31m ago•0 comments

Ask HN: Show your AI coded games [June 2026]

5•franze•32m ago•6 comments

Vibe Trading

https://zhenyi.gibber.blog/vibe-trading
3•zhenyi•33m ago•0 comments

South Korea fines Coupang $409M in country's largest data breach penalty

https://www.reuters.com/legal/litigation/south-korea-fines-coupang-409-mln-countrys-largest-data-...
1•malshe•33m ago•0 comments

Frontier AI and the World Cup 2026

https://christian.bock.bio/wc2026/
1•cbock90•34m ago•0 comments

SpaceX IPO latest: Elon Musk becomes first trillionaire as opening shares soar

https://news.sky.com/story/spacex-ipo-latest-elon-musks-company-to-debut-on-stock-market-and-coul...
3•Anon84•35m ago•0 comments

An interactive introduction to the terrific experience of rendering Arabic typog

https://lr0.org/blog/p/arabic/
2•fanf2•36m ago•0 comments

Heimdall – config-driven RTL fuzzing harness for RISC-V on FPGA

https://github.com/Midstall/heimdall
1•rosscomputerguy•37m ago•0 comments

Palantir loses legal challenge against Swiss investigative magazine

https://www.ft.com/content/7ffcace7-9dc0-4e7e-9912-895ac073f979
20•sschueller•39m ago•2 comments

Temporary Halt of the Dismantling of NCAR

https://wasatchweatherweenies.blogspot.com/2026/06/temporary-halt-of-dismantling-of-ncar.html
3•sampli•41m ago•0 comments

Mmorpg World of ClaudeCraft, vibe coded with Fable 5

https://worldofclaudecraft.com/
4•beatthatflight•44m ago•2 comments

Optimal Kidney Exchange

https://en.wikipedia.org/wiki/Optimal_kidney_exchange
1•joshterrill•44m 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.