frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Protect an MCP Server with an Authorization Server

https://fusionauth.io/blog/mcp-authorization-server
1•sixhobbits•50s ago•0 comments

Sorry Guys,but I'll Be Cryosleeping Throughout the Rest of This Space Expedition

https://www.mcsweeneys.net/articles/sorry-guys-but-ill-be-cryosleeping-throughout-the-rest-of-thi...
1•calcifer•2m ago•0 comments

Conversations Should Stay Yours

https://getweeve.io/
1•dylandeheer•5m ago•0 comments

Pull request limits are cutting down the noise

https://github.blog/open-source/maintainers/how-pull-request-limits-are-cutting-down-the-noise/
1•ingve•6m ago•0 comments

Taipy – Alternative to Streamlit

https://taipy.io/
1•amai•8m ago•0 comments

Node-Fetch on latest Node Update broken

https://github.com/nodejs/node/issues/63989
1•DDerTyp•10m ago•0 comments

Business Intelligence as Code

https://evidence.dev/
1•janandonly•12m ago•0 comments

SSD Prices in 2026

https://i.imgur.com/ekYqwY6.png
1•toilet•13m ago•1 comments

Show HN: I built an 11-LLM consensus engine to detect AI hallucination

https://github.com/jaquelinejaque/quorum-saas-starter
1•jaquelinejaque•15m ago•0 comments

Why Social Media Bans Alone Can't Solve the Age Verification Dilemma

https://about.fb.com/news/2026/06/how-to-verify-age-online/
1•kerim-ca•19m ago•1 comments

Utopia (By Fable)

https://aiking.dwyer.co.za/utopia
1•sixhobbits•20m ago•0 comments

Noumena Code

https://code.noumena.com
1•Marius77•21m ago•0 comments

Show HN: I built a Wu-Tang name generator (wutangname.online)

https://wutangname.online/
1•chenliang001•22m ago•0 comments

Sweden may oppose Tesla's supervised self-driving tech in Europe over speeding

https://www.reuters.com/business/autos-transportation/sweden-may-oppose-teslas-supervised-self-dr...
1•JumpCrisscross•25m ago•0 comments

Barret Zoph is out at OpenAI again after just five months

https://www.theverge.com/ai-artificial-intelligence/952837/barret-zoph-openai-thinking-machines-lab
2•alecco•25m ago•2 comments

The Tokenminning Manifesto

https://www.tokenminning.com/
1•claudiacsf•26m ago•0 comments

Show HN: Alert for real time application including video and audio

https://sf-voice.sh
1•ThatDumbGirl•27m ago•0 comments

Nanowar of Steel – Kotlin (Official Power Point Video)

https://www.youtube.com/watch?v=BsfXZjKLT9A
1•napolux•32m ago•1 comments

WPoptic, A growing public database of WordPress plugin usage

https://wpoptic.com/
1•WPoptic•33m ago•0 comments

AI has granted America new power

https://www.economist.com/leaders/2026/06/18/ai-has-granted-america-vast-new-power
1•isaacfrond•35m ago•0 comments

Use your own language model key in VS Code

https://code.visualstudio.com/blogs/2026/06/18/byok-vscode
2•subset•35m ago•1 comments

The Secret Drone Operation That's Changing the Ukraine War

https://www.politico.com/news/magazine/2026/06/19/ukraine-russia-drones-attack-00967074
2•0in•36m ago•0 comments

Lisuan Tech LX Pro 24GB GPU

https://www.techpowerup.com/gpu-specs/lx-pro.c4408
1•CapricornNoble•37m ago•1 comments

Conservatives plan nationwide protest against AI data centers

https://www.axios.com/2026/06/18/conservatives-protest-ai-data-centers
4•johnbarron•38m ago•0 comments

EU to soon classify AWS and Azure as gatekeepers under DSA

https://www.heise.de/en/news/Report-EU-to-soon-classify-AWS-and-Azure-as-gatekeepers-under-DSA-11...
7•snowpid•41m ago•0 comments

FDA committee recommends a new mRNA flu vaccine

https://www.npr.org/2026/06/18/nx-s1-5863570/flu-vaccine-mrna-moderna-fda
1•isaacfrond•41m ago•0 comments

Rolls-Royce secures deal to build small nuclear reactors for Sweden

https://www.euronews.com/business/2026/06/16/rolls-royce-secures-deal-to-build-small-nuclear-reac...
1•isaacfrond•42m ago•0 comments

Sometimes you get stuck in a sinkhole for a few years

https://www.avabear.xyz/p/sometimes-you-get-stuck-in-a-sinkhole
2•jger15•43m ago•0 comments

How Russia's nuclear-powered 'Skyfall' missile works

https://www.npr.org/2026/06/18/nx-s1-5843252/russia-nuclear-powered-missile-burevestnik
2•rolph•45m ago•0 comments

Rethinking Modularity in Ruby Applications

https://noteflakes.com/articles/2026-06-18-syntropy-modules
1•ciconia•46m 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.