frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Zillow loses listings in fight over "hidden" homes

https://arstechnica.com/tech-policy/2026/05/zillow-loses-access-to-thousands-of-home-listings-ami...
1•Bender•1m ago•0 comments

AT&T sues California in attempt to shut off old phone network

https://arstechnica.com/tech-policy/2026/05/att-sues-california-in-attempt-to-shut-off-old-phone-...
1•Bender•2m ago•0 comments

EPA to End Some Limits on 'Forever Chemicals' in Drinking Water

https://www.nytimes.com/2026/05/18/climate/epa-forever-chemicals-pfas-drinking-water.html
1•igonvalue•3m ago•0 comments

How to Call an API from an Email

https://redo.com/eng-blog/how-to-call-an-api-from-an-email/
1•joshmoody24•3m ago•0 comments

Finland's bomb shelters draw world to Helsinki in quest for security

https://www.reuters.com/world/europe/finlands-massive-bomb-shelters-draw-world-helsinki-quest-sec...
1•JumpCrisscross•8m ago•0 comments

Tesla Announces Rollout of Fully Self-Driving Tech in China

https://www.wsj.com/business/autos/tesla-announces-rollout-of-fully-self-driving-tech-in-china-27...
2•bookofjoe•8m ago•1 comments

Show HN: Lumox – Wirelessly mirror multiple iPhones on Mac – Ditching QuickTime

https://lumox.app/
1•modrena•8m ago•0 comments

Better CLI Interactions for Agents and Humans

https://www.pulumi.com/blog/better-cli-interactions-for-agents-and-humans/
2•cnunciato•8m ago•0 comments

GrapheneOS Power Usage Recommendations

https://discuss.grapheneos.org/d/35721-grapheneos-power-usage-recommendations
3•Cider9986•9m ago•0 comments

Creating a Full PII Framework for Agents

https://pii-firewall.com/
1•lamne•9m ago•0 comments

AI is killing the cheap smartphone

https://davidoks.blog/p/ai-is-killing-the-cheap-smartphone
2•d0ks•13m ago•0 comments

Shira: Anti Phishing Training Platform

https://shira.app/
2•carohadad•13m ago•1 comments

Spotify and Universal Music strike deal allowing fan-made AI covers and remixes

https://techcrunch.com/2026/05/21/spotify-and-universal-music-strike-deal-allowing-fan-made-ai-co...
1•cdrnsf•14m ago•0 comments

Show HN: A Turing machine simulating a Turing machine simulating a...

https://narcissus.exe.xyz/
1•thingoptimizer•18m ago•0 comments

A cross section of a road in England

https://old.reddit.com/r/interestingasfuck/comments/1tjxi3j/this_is_a_cross_section_of_a_road_in_...
1•n1b0m•19m ago•0 comments

Curtis Yarvin and the Political Evolution of Silicon Valley Reactionaries

https://www.dontbeasucker.blog/p/the-butterflies-in-your-stomach
15•betterthanever•19m ago•1 comments

The Typo Vibe Shift

https://www.theatlantic.com/culture/2026/05/typo-ai-trend-human/687237/
1•paulpauper•20m ago•0 comments

A phrase based on prejudice: 'Dutch courage' (2018)

https://wordhistories.net/2018/04/12/dutch-courage-origin/
1•petethomas•20m ago•0 comments

Show HN: Onda – a cross-platform alternative to DSView for DSLogic analyzers [video]

https://www.youtube.com/watch?v=EwHpt_CuFNc
1•johnwheeler•20m ago•0 comments

A blind taste competition launched the American wine industry

https://thehustle.co/newsletters/20-05-2026
1•paulpauper•21m ago•0 comments

Fertility and Financial Risk-Taking

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6559781
1•paulpauper•21m ago•0 comments

Amdahl's Law

https://en.wikipedia.org/wiki/Amdahl%27s_law
1•rzk•22m ago•0 comments

An explicit lower bound for the unit distance problem

https://arxiv.org/abs/2605.20579
1•rvz•25m ago•0 comments

Code Bubble: Clojure functions as bubbles on a canvas

https://github.com/ertugrulcetin/code-bubble
1•thenewguy077•26m ago•0 comments

OpenBSD 7.9 Released

https://lwn.net/Articles/1073933/
1•kazu11max17•26m ago•0 comments

InvizCrypt – Secure Cloud Documents

https://invizcrypt.com/
1•htewari•28m ago•0 comments

WebGPU support in llama.cpp

https://reeselevine.github.io/llamas-on-the-web/
2•relivin•32m ago•0 comments

Fraud Indicators Skyrocket in Minnesota Presidential Elections from 2016 Onwards

https://electiontruthalliance.substack.com/p/fraud-indicators-skyrocket-in-minnesota
2•filoeleven•32m ago•0 comments

Protégé Short Course 2026

https://protege.stanford.edu/shortcourse/
2•marcosmr•36m ago•1 comments

Lecture Notes on Statistical Physics and Neural Networks

https://arxiv.org/abs/2605.06394
2•Anon84•36m 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.