frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Google's Secret Warrant Fight over DOJ Pipe Bomb Probe Revealed

https://www.bloomberg.com/news/articles/2026-06-18/google-s-secret-warrant-fight-over-doj-pipe-bo...
1•rndsignals•3m ago•0 comments

Is the world becoming more predictable?

https://www.ft.com/content/b1f417eb-f120-4e3f-8c85-6db3013c33ee
1•petethomas•12m ago•0 comments

The Ghost in the Ledger

https://banapana.substack.com/p/the-ghost-in-the-ledger
1•ruzelmania•13m ago•1 comments

Applied AI Engineer/ Product Builder/ Data Science

1•ahorton•14m ago•0 comments

The Reason Your IT Team Isn't Getting Anything Done

https://techstrong.it/contributed-content/the-real-reason-your-it-team-isnt-getting-anything-done/
1•mooreds•18m ago•1 comments

Between backyards and nakamals: Shifting Australia–Vanuatu relations

https://www.lowyinstitute.org/publications/between-backyards-and-nakamals-shifting-australia-vanu...
1•mooreds•18m ago•0 comments

CS 153: Frontier Systems

https://cs153.stanford.edu/
1•mooreds•19m ago•0 comments

Ask HN: Has AI made digital distribution more powerful than code?

1•akashwadhwani35•19m ago•1 comments

Our game anticheat has no kernel driver, we catch not block

https://cyberlete.net
1•sunuam•27m ago•0 comments

Adama City Government Exposes 29 GB of Sensitive Ethiopian Citizens' Data

https://write-ups.security-chu.com/2026/06/Adama-Service-with-Data-Breach.html
1•news_rt•27m ago•0 comments

Writing for humans is the only SEO trick left

https://pithandpip.com/blog/the-best-aeo
1•maguay•28m ago•1 comments

SQLite Hub

https://oliverjessner.at/sqlite-hub/
1•jonbaer•30m ago•0 comments

A bold satellite rescue mission came together in record time, but will it work?

https://arstechnica.com/space/2026/06/a-bold-satellite-rescue-mission-came-together-in-record-tim...
2•Jtsummers•30m ago•0 comments

AI coding: loop engineering a translator

https://jeena.net/loop-engineering
1•jeena•30m ago•0 comments

The First Website Killed by Google: Their Online Answer Marketplace

http://answers.google.com/answers/browse/1200.html
1•noah34•34m ago•2 comments

Valve's Latest SteamOS Out

https://www.pcgamer.com/hardware/steam-machines/valves-latest-steamos-is-out-with-initial-support...
1•evo_9•34m ago•0 comments

Where the Light Falls: Who Was Johannes Vermeer?

https://harpers.org/archive/2026/07/where-the-light-falls-clare-bucknell-vermeer/
1•prismatic•34m ago•0 comments

Show HN: Iamspeed.dev – Fast.com Style but for LLMs

https://iamspeed.dev/
1•qainsights•44m ago•0 comments

We built a privacy-focused vector memory mobile app

https://medium.com/@vektormemory/we-built-a-privacy-focused-vector-memory-mobile-app-and-here-is-...
1•vektormemory•44m ago•0 comments

US Tells ASML It's Concerned China May Have Top Chip Tool

https://www.bloomberg.com/news/articles/2026-06-19/us-tells-asml-it-s-concerned-china-may-have-to...
4•htrp•45m ago•0 comments

Stack Overflow for Agents – Stack Overflow

https://stackoverflow.blog/2026/06/10/announcing-stack-overflow-for-agents/
1•tambourine_man•45m ago•0 comments

Moving Beyond Fork() + Exec()

https://lwn.net/Articles/1076018/
1•signa11•48m ago•0 comments

Agent Finder

https://github.com/agentfinder
1•jonbaer•49m ago•0 comments

Hierarchy of the Sciences

https://en.wikipedia.org/wiki/Hierarchy_of_the_sciences
1•o4c•50m ago•0 comments

DeepSWE v1.1

https://deepswe.datacurve.ai/blog/deepswe-v1-1
2•aesincs•55m ago•0 comments

Is It Time for a New Embedded Linux Build System?

https://yoebuild.org/blog/time-for-a-new-build-system/
1•kaycebasques•56m ago•0 comments

A tiny ingestible sensor can measure temperature from inside the body

https://news.mit.edu/2026/tiny-ingestible-sensor-can-measure-temperature-inside-body-0615
1•gmays•1h ago•1 comments

The gentrification of Harajuku: how the coolest city is becoming "uncool"

https://tokyofashiondiaries.com/harajuku-tokyo-gentrification-tokku/
1•totetsu•1h ago•0 comments

Grok Is More Important Than Clean Air, DOJ Says

https://www.motherjones.com/environment/2026/06/grok-doj-justice-naacp-clean-air-act-gas-turbine-...
2•plun9•1h ago•0 comments

Fractal OS

https://fractal-os.com
1•kristianpaul•1h 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.