frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Vulnerability Identity Crisis

https://research.empiricalsecurity.com/research/the-vulnerability-identity-crisis
1•pgl•46s ago•0 comments

Theories of Ageing [pdf]

https://iubmb.onlinelibrary.wiley.com/doi/abs/10.1080/15216540601178067
1•thunderbong•6m ago•0 comments

The Qbeast split-plane SaaS Architecture

https://qbeast.io/blogs/the-qbeast-split-plane-saas-architecture
1•fpj•7m ago•0 comments

It's time to reserve your WhatsApp username

https://blog.whatsapp.com/its-time-to-reserve-your-whatsapp-username?_fb_noscript=1
1•Anon84•7m ago•0 comments

Show HN: A Free AI Visibility Tracker

https://www.archytasdigital.com/
1•pastamania•9m ago•0 comments

Ask HN: How is Claude Slack app performing in your organisation?

1•akarshhegde18•9m ago•0 comments

Slint and the Node.js Event Loop

https://slint.dev/blog/slint-and-the-nodejs-event-loop
1•ogoffart•10m ago•0 comments

Apple iPhone 18 Pro supplier list, parts and photos exposed in Tata data leak

https://www.reuters.com/business/media-telecom/apple-iphone-18-pro-supplier-list-parts-photos-exp...
1•RaSoJo•12m ago•0 comments

Show HN: The Three Idempotencies of an Agent

https://agentsxbackend.substack.com/p/the-three-idempotencies-of-an-agent
1•Venky1729•14m ago•0 comments

"flows": a custom Markdown runtime for visualizing long-running agent loops

https://github.com/samleeney/flows
1•samleeney•17m ago•0 comments

A history of John Romero wishing Sandy Petersen well before nuking his tweets

https://www.pcgamer.com/gaming-industry/a-short-history-of-john-romero-wishing-sandy-petersen-wel...
1•Michelangelo11•19m ago•0 comments

Top 1 Million Analysis – June 2026: Ten Years of Web Security

https://scotthelme.co.uk/top-1-million-analysis-june-2026-ten-years-of-web-security/
1•moebrowne•22m ago•0 comments

You're Right

https://youre-absolutely-right-one.vercel.app/
1•senko•27m ago•0 comments

Antares Achieves Criticality of Mark-0 Reactor

https://antaresindustries.com/updates/antares-achieves-criticality
3•clarionbell•28m ago•1 comments

The Shape of the Whole

https://shapeofthesystem.com/the-shape-of-the-whole
2•charlieirish•35m ago•0 comments

RPC Endpoints

https://rpc.uquad.org/
1•uquad•35m ago•0 comments

After 12 years of being a customer, Uber is dumping PagerDuty

https://twitter.com/GergelyOrosz/status/2071709320199164184
2•tosh•37m ago•0 comments

The Invisible Architecture of Lock-In

https://blog.documentfoundation.org/blog/2026/06/30/the-invisible-architecture-of-lock-in/
2•ilreb•42m ago•0 comments

Show HN: Rheo 0.4.0

https://github.com/freecomputinglab/rheo
1•breezykermo•42m ago•0 comments

Database Traffic Control

https://planetscale.com/blog/introducing-database-traffic-control
1•religio•45m ago•0 comments

Paris deputy mayor blames the US's carbon emissions for deadly heat wave

https://www.foxnews.com/media/paris-deputy-mayor-blames-united-states-carbon-emissions-deadly-hea...
2•TMWNN•45m ago•0 comments

Show HN: Crosswalk mapping AI-agent design controls to NIST, ISO 42001, OWASP

https://www.agent-kits.com/agentaz-crosswalk
1•stoicstoic•46m ago•0 comments

Gojek founder Nadiem Makarin sentenced to jail in Indonesia corruption case

https://www.bbc.com/news/articles/c79yvw23yr9o
1•doppp•48m ago•0 comments

FitAge – functional age from 8 physical tests (open source)

https://fitage.thehumanruntime.com/
1•filipacsr•49m ago•1 comments

Show HN: Availability Tracker – A Simple Way to Track Items

https://availabilitytracker.app/
1•jkferland•50m ago•0 comments

History of T

https://paulgraham.com/thist.html
2•tosh•52m ago•0 comments

Show HN: Window Switcher – Better same-app window switching for macOS

https://github.com/hanguokai/window-switcher
1•hanguokai•53m ago•0 comments

Oura Ring 5 Review

https://www.theguardian.com/technology/2026/jun/30/oura-ring-5-review-smart-ring-health-tracking
2•tosh•53m ago•0 comments

Show HN: Escalate – human as a service for your agent

https://escalateto.me/landing
1•oleh_vell•54m ago•0 comments

Webhookvault

https://webhookvault.onrender.com/login
1•hydra2297•54m 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.