frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Mullvad Alternatives?

1•rpastuszak•45s ago•0 comments

Show HN: Khazad – Transparent Semantic Cache for LLM Calls on Redis Vector Sets

https://github.com/GuglielmoCerri/khazad
2•guglielmoce•5m ago•0 comments

Show HN: Xenoeye – analyze network without AI using netflow, PostgreSQL, Grafana

https://github.com/vmxdev/xenoeye
1•vmxdev•6m ago•0 comments

Show HN: A local-first eBook reader with a journal for each book you read

https://forgottenmachine.itch.io/ms-penrose-in-the-library
2•forgatmachine•9m ago•1 comments

AEB: A Case Study Using Comma.ai Dataset (2019)

https://comma-ai.medium.com/aeb-a-case-study-using-comma-ai-dataset-2fc08a2397f4
1•LorenDB•11m ago•0 comments

New York's War on Compute

https://www.city-journal.org/article/new-york-data-centers-moratorium-ai-compute
2•fortran77•12m ago•0 comments

Underwater Suit-Wearing Cyborg Insect Capable of Diving and Terra-Aqua Travel

https://www.nature.com/articles/s41467-026-74235-1
1•gscott•12m ago•0 comments

$22,000 per Hour: Assistants Use a Legislative Loophole to Outearn Surgeons

https://www.nytimes.com/2026/06/29/upshot/assistant-surgeons-loophole-pay.html
2•littlexsparkee•14m ago•1 comments

Simplified Sparse Attention via Gist Tokens

https://arxiv.org/abs/2604.20920
1•E-Reverance•14m ago•0 comments

League Loom an MCP Server for ESPN/Sleeper/Fantrax in ChatGPT/Claude

https://leagueloom.com/
1•cmtemkin•14m ago•0 comments

Howdy HN: fur.tea.laser

1•fur-tea-laser•17m ago•0 comments

Show HN: go-iroh – iroh compatible networking for Go

https://github.com/tmc/go-iroh
2•traviscline•19m ago•0 comments

Google's New reCAPTCHA Wants Your Camera Access and 21 Points of Your Hand

https://reclaimthenet.org/googles-new-recaptcha-wants-your-camera-access-and-21-points-of-your-hand
4•Cider9986•20m ago•2 comments

Nondelegation and the Unitary Executive [pdf]

https://afj.org/wp-content/uploads/2020/02/Nondelegation-and-the-Unitary-Executive.pdf
1•qwefasg•20m ago•0 comments

Core – Deterministic governance rules for AI-generated code (pip installable)

https://github.com/DariuszNewecki/CORE
1•d_newecki•21m ago•0 comments

Three FOSS projects for developers, procrastinators, and media wranglers

https://www.theregister.com/software/2026/06/26/three-foss-projects-for-developers-procrastinator...
1•rbanffy•23m ago•0 comments

A Good Animation Disappears

https://frigade.com/blog/a-good-animation-disappears
1•pancomplex•24m ago•0 comments

Proxylity: Academic and Non-Profit Program

https://www.proxylity.com/academic
1•mlhpdx•28m ago•0 comments

Ask HN: Should HN Get 2FA?

2•roschdal•29m ago•3 comments

China's first AI-powered cancer vaccine production line set to launch in Beijing

https://www.scmp.com/business/china-business/article/3358689/chinas-first-ai-powered-cancer-vacci...
3•msalsas•30m ago•1 comments

Feedback around "Tech enforcement layer for AI governance"

https://trust-layer-ai.de/
1•YUZHEN200495•30m ago•1 comments

The Next Chapter of PrimeTek

https://primeui.dev/nextchapter
2•nallerooth•31m ago•0 comments

3D necroprinting: Leveraging biotic material as the nozzle for 3D printing

https://www.science.org/doi/10.1126/sciadv.adw9953
3•jacquesm•34m ago•0 comments

Australian ballista spider builds a spring-loaded snare for a single ant species

https://phys.org/news/2026-06-newly-australian-ballista-spider-snare.html
2•wglb•34m ago•1 comments

Magicbookshelf.org – a spoiler-aware companion for public domain classics

https://magicbookshelf.org/
1•philipfweiss•35m ago•0 comments

Show HN: Fleet – a local-first console for managing Dockerized Hermes AI Agents

https://github.com/matt454/agent-fleet-console
1•matt454•35m ago•0 comments

Freedom of Intelligence

https://slack.org/freedom-of-intelligence
2•sixhobbits•35m ago•0 comments

Show HN: Apex Trading Signals – AI commodity trade ideas, free Android beta

https://play.google.com/apps/testing/com.apextradingsignals
1•dmaso191•36m ago•0 comments

Stop Killing the Internet

https://www.stopkillingtheinternet.net/
1•nobody9999•36m ago•0 comments

How AI Is Changing the Way Politicians Run for Office

https://www.nytimes.com/2026/06/29/us/politics/political-campaigns-ai-tech.html
2•m-hodges•37m 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.