frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Filipino virtual assistants behind LinkedIn's "thought leadership" content mill

https://restofworld.org/2026/virtual-assistant-linkedin-engagement/
1•_tk_•1m ago•0 comments

Bluesky Names Toni Schneider CEO

https://bsky.social/about/blog/07-10-2026-toni-schneider-ceo
1•ilreb•2m ago•0 comments

Show HN: Willow Voice – Free AI Dictation

https://willowvoice.com/
1•LiuLawrence45•2m ago•0 comments

How to think about span of control

https://www.rubick.com/span-of-control/
1•sciurus•4m ago•0 comments

Typocalypse – A free online game I made

https://typocalypse.fun/
1•Aurelius101•6m ago•0 comments

War Atlas: An interactive cartography of every named war in human history

https://waratlas.org
2•NaOH•7m ago•0 comments

SpaceX wants to launch 100k more Starlink satellites – for 100x the bandwidth

https://www.zdnet.com/home-and-office/networking/spacex-wants-to-launch-100000-more-starlink-sate...
5•CrankyBear•8m ago•0 comments

Uiua - A tacit array programming language

https://www.uiua.org/
1•weinzierl•9m ago•0 comments

Train the Agent, Then Replace It

https://allthesethings.substack.com/p/train-the-agent-then-replace-it
1•taubek•10m ago•0 comments

"Disk Not Ejected Properly": What It Means

https://bombich.com/blog/2026/07/07/disk-not-ejected-properly
1•speckx•11m ago•0 comments

Generating Effects

https://othermeans.substack.com/p/generating-effects
1•Tomte•11m ago•0 comments

Bun vs. Deno vs. Node.js 2026: Real Benchmarks Mislead

https://byteiota.com/bun-vs-deno-vs-node-js-2026-real-benchmarks-mislead/
3•h1696UOuk•12m ago•0 comments

The Work of Helping A.I. Destroy Work

https://www.nytimes.com/2026/07/10/business/ai-white-collar-jobs.html
1•apparent•12m ago•0 comments

The 2025–2026 Evolution of Generative Spatial AI

https://hal9.com/articles/the-2025-2026-evolution-of-generative-spatial-ai
1•javierluraschi•12m ago•0 comments

Alarm over launch of facial recognition in UK shops that instantly alerts police

https://www.theguardian.com/technology/2026/jul/10/facewatch-facial-recognition-uk-shops-instantl...
3•pseudolus•14m ago•0 comments

Why Stone-Faced Fascists Keep Getting Antiquity Wrong

https://www.thebulwark.com/p/why-stone-faced-fascists-keep-getting-antiquity-wrong-x-twitter-elon...
1•Tomte•16m ago•0 comments

Property Graphs in PostgreSQL

https://www.postgresql.org/docs/19/ddl-property-graphs.html
1•throwaway7783•17m ago•0 comments

Boom Prize: $750k to the first amateur RC plane that breaks the sound barrier

https://boomsupersonic.com/prize
2•dwwoelfel•17m ago•1 comments

Disable autoplay and infinite scroll or risk fines, EU tells Meta

https://arstechnica.com/tech-policy/2026/07/disable-auto-play-and-infinite-scroll-or-risk-massive...
2•OptionOfT•19m ago•0 comments

I Think I Know How to Solve the Video Game Industry's Problems

https://ggtribune.com/2026/07/10/opinion-i-think-i-know-how-to-solve-the-video-game-industrys-pro...
1•qdot76367•19m ago•0 comments

MagicView Advertising for Startups

https://www.magicview.com/
1•wesley-zheng•19m ago•0 comments

The Road to Housing Act Might Pass

https://inpractice.yimbyaction.org/p/the-road-to-housing-act-might-actually
2•viajante1882•21m ago•0 comments

China recaptures the first stage of a rocket to reuse it

https://phys.org/news/2026-07-china-page-spacex-recaptures-stage.html
2•miohtama•22m ago•0 comments

Dangerzone: Convert potentially dangerous documents into safe PDFs

https://dangerzone.rocks/
1•Cider9986•22m ago•0 comments

PQC Readiness and Migration Tool

https://postq.dev
1•PallabPaul•23m ago•0 comments

The Difference Between Watercolor and Gouache Paints

https://www.jetpens.com/blog/The-Difference-Between-Watercolor-and-Gouache-Paints/pt/963
2•ynac•23m ago•0 comments

Big Tech Doubles Debt Load to $350B in AI Spending Spree

https://www.bloomberg.com/news/articles/2026-07-10/big-tech-doubles-debt-load-to-350-billion-in-a...
2•thm•24m ago•1 comments

Hackachu: Building Pokémon-inspired games to earn hardware

https://hackachu.hackclub.com/
1•Plastuchino•24m ago•0 comments

Blood Cell 'Nurseries' Upend Understanding of Human Physiology

https://news.feinberg.northwestern.edu/2026/07/02/blood-cell-nurseries-upend-understanding-of-hum...
1•gmays•26m ago•0 comments

How to Read Scientific Papers (Or Give Good Dating Advice)

https://serenakrejcipapa.substack.com/p/how-to-read-scientific-papers-or
1•herbertl•26m 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.