frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How and Why Netflix Built a Real-Time Distributed Graph: Part 3

https://netflixtechblog.com/how-and-why-netflix-built-a-real-time-distributed-graph-part-3-queryi...
1•dalvrosa•3m ago•0 comments

Show HN: Bun-boss – Bun-native fork of the pg-boss queue package

https://www.npmjs.com/package/bun-boss
1•khromov•5m ago•0 comments

Tim O'Reilly – Google's Westinghouse Bet

https://asimovaddendum.substack.com/p/googles-westinghouse-bet
1•rmason•5m ago•0 comments

QTC – An old-school-cool terminal client for MeshCore messaging – Linux / macOS

https://github.com/initsixdev/QTC
1•brna-2•6m ago•0 comments

What a California License Plate Taught Me About How AI "Knows"

https://techunpacked.substack.com/p/32-what-a-california-license-plate
1•groverneev•8m ago•0 comments

Show HN: OutageDeck – one view of 172 provider status feeds

https://outagedeck.com/stack
1•koko3tallah•11m ago•0 comments

Divers recover a bottle of Guinness from a 162-year-old shipwreck

https://www.washingtonpost.com/science/2026/08/08/divers-recover-bottle-guinness-162-year-old-shi...
3•bookofjoe•15m ago•1 comments

Open-source interactive map for the Aug 12 total solar eclipse

https://eclipsefan.org/?v=2&t=max&layers=eclipse%2Cbesselian%2Cumbra-live%2Cshadow-3d%2Ccloud-pro...
4•MarcoDewey•25m ago•0 comments

OpenAI to pause some work on AI model Astra due to security concerns

https://www.theguardian.com/technology/2026/aug/08/openai-astra-security-concerns
3•tzmlab•27m ago•1 comments

QVAC – Decentralized, Local AI in a Single API

https://qvac.tether.io/
1•conferza•28m ago•0 comments

Apple's war on OpenAI is about who owns the Attachment Economy

https://www.machinesociety.ai/p/apples-war-on-openai-is-really-about
2•mikelgan•28m ago•1 comments

Show HN: Dive into Amiga.games

https://classicreload.com/platform/amiga%20os
1•kilian-ai•29m ago•0 comments

Show HN: HolyCode Cloud – persistent Linux workstations for AI

https://holycode.cloud
1•CoderLuii•33m ago•0 comments

KubeTective: Deterministic Incident Investigation for Kubernetes

https://github.com/GlediLami/kubetective
1•Gledis•34m ago•0 comments

ACM Europe Summer School on MLIR 2026: Streamed Live, August 10-14

https://mlir-school.github.io/summer-2026/program/
1•matt_d•36m ago•0 comments

We have a chance to fix the Jones Act

https://www.abundanceandgrowth.org/p/we-have-a-chance-to-fix-the-jones
2•JumpCrisscross•36m ago•0 comments

The Costs of Environmental Land Use Regulation

https://mtabarrok.com/publications/environmental-land-use
2•JumpCrisscross•37m ago•0 comments

Show HN: Zero-bloat, client-side utility suite with zero telemetry

https://summit-side-utilities.pages.dev/
1•james_utils•38m ago•1 comments

Whisked: The Food Corridor's Shared Kitchen Summit [video]

https://www.youtube.com/watch?v=frhsHb8CFDs
1•mooreds•38m ago•0 comments

The Architecture of Open Source Applications

https://aosabook.org/en/
3•amperleft•38m ago•0 comments

Picking berries is my meditation

https://www.tsoon.com/posts/picking-berries-meditation/
2•mooreds•39m ago•1 comments

The German Mittelstand

https://kieranvelasquez.substack.com/p/on-the-german-mittelstand
1•mooreds•40m ago•0 comments

OWASP-amass – In-depth attack surface mapping and asset discovery

https://github.com/owasp-amass/amass
1•gurjeet•42m ago•0 comments

Benchmarking LLMs on File System Design and Implementation

https://arxiv.org/abs/2608.00280
2•matt_d•44m ago•0 comments

Subdomain Center – Largest Subdomain Database

https://www.subdomain.center/
1•gurjeet•44m ago•0 comments

Thomas Wolf thread on the AISI incident

https://twitter.com/Thom_Wolf/status/2085084718320464230
1•cyanbane•49m ago•0 comments

Show HN: agent-hop – reverse-engineered session formats to resume in any agent

https://github.com/hetpatel-11/agent-hop
1•HetPatel106•53m ago•0 comments

Differential heuristics: learning about a way to optimize the A* heuristic

https://www.redblobgames.com/blog/2026-08-08-differential-heuristics/
1•matt_d•54m ago•0 comments

MCP Server Budgeting Tool

https://www.designshippers.com/work/context-budget.html
1•krm01•54m ago•0 comments

AI and War Is Being Oversold

https://phillipspobrien.substack.com/p/ai-and-war-is-being-oversold-right
3•JumpCrisscross•55m 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.