frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

New accessibility features powered by Apple Intelligence

https://www.apple.com/newsroom/2026/05/apple-unveils-new-accessibility-features-and-updates-with-...
2•interpol_p•1m ago•0 comments

Remote work is bad for you

https://mrmarket.bearblog.dev/remote-work-is-bad-for-you/
1•mrmarket•2m ago•0 comments

Actions-cool/issues-helper GitHub Action Compromised

https://www.stepsecurity.io/blog/actions-cool-issues-helper-github-action-compromised-all-tags-po...
2•choult•4m ago•0 comments

Agentic Diaries – a welfare protocol for AI in deployment, install via MCP

https://agenticdiaries.com
1•kandistag•4m ago•0 comments

Get over yourself. Embrace the minivan [video]

https://www.youtube.com/watch?v=oEruzTKteRE
1•surprisetalk•5m ago•0 comments

Google, Blackstone to Create AI Cloud Firm with In-House Chips

https://www.bloomberg.com/news/articles/2026-05-19/google-to-create-ai-cloud-business-with-blacks...
1•mgh2•7m ago•0 comments

Quantum computing is reaching its make-or-break moment

https://www.scientificamerican.com/article/quantum-computing-is-reaching-its-make-or-break-moment/
1•beardyw•7m ago•0 comments

The EU's plan to tackle 'cookie fatigue'

https://www.euronews.com/next/2026/05/18/the-eus-plan-to-tackle-cookie-fatigue
1•rustoo•7m ago•0 comments

Bloomberg Podcasts: Foundering: The Killing of Bob Lee

https://www.youtube.com/playlist?list=PLe4PRejZgr0NBaiIbGrG9fOwQVekCWV8c
1•throwaway2037•8m ago•1 comments

Python Parsers for NASA General Coordinate Network Notices

https://github.com/peppedilillo/gcn-notice-parser
1•deppep•9m ago•1 comments

Show HN: Privacy-First PDF Converter

https://privapdf.net
1•omertt27•9m ago•0 comments

Evacuations ordered after wildfire breaks out Southern California [video][42sec]

https://www.youtube.com/watch?v=VXAnn2o5OHE
1•Bender•11m ago•0 comments

10Gb/s Ethernet: using mini-heatsinks with a 10GBASE-T SFP+ module

https://www.gilesthomas.com/2026/05/10g-ethernet-sfpplus-mini-heatsinks
1•ibobev•12m ago•0 comments

Why are we getting worse at software engineering?

https://www.bitlog.com/2026/05/19/why-are-we-getting-worse-at-software-engineering/
2•jakevoytko•12m ago•0 comments

Show HN: Good Terminal Color Schemes Are Rare, So I Wrote a Generator

https://octalwave.com/posts/good-terminal-color-schemes-are-rare-so-i-wrote-a-generator/
1•ivoronin•12m ago•0 comments

Polynomial Quantum Attack on Module-LWE over Power-of-2 Cyclotomics

https://arxiv.org/abs/2605.17412
1•sbulaev•13m ago•0 comments

The AI Goddess of all-to-all matchmaking

https://x.com/alethy137
1•Ken_en•15m ago•0 comments

Canonical launches Ubuntu Core 26

https://canonical.com/blog/canonical-launches-ubuntu-core-26
1•dgavrilov•15m ago•0 comments

Show HN: AIPS – A Claude Code plugin to stop re-doing AI setup every project

https://github.com/kernalix7/AIPS
2•kernalix7•18m ago•0 comments

Ask HN: How often do you code the expected way instead of a better one?

1•recycling•19m ago•0 comments

Netquel: Browser Multiplayer Spaceship Builder

https://netquel.com/
1•avarev•19m ago•0 comments

SEC to propose tokenized stock framework as Wall Street efforts deepen

https://www.coindesk.com/policy/2026/05/18/sec-to-propose-tokenized-stock-framework-as-wall-stree...
1•Anon84•20m ago•0 comments

Cctest.ai: Claude Detection Platform

https://cctest.ai/en
1•csmantle•21m ago•0 comments

Sainsbury Wing 1990 letter False Column

https://www.theartnewspaper.com/2024/08/27/sainsbury-wing-contractors-find-1990-letter-from-donor...
1•baden1926•22m ago•0 comments

Gateway 2000's infuriating descent from awesome to bad ads in the 90s (Part I)

https://buttondown.com/suchbadtechads/archive/gateway-2000-part-1/
1•rfarley04•27m ago•0 comments

The Linux Kernel Working on a Rust-Based Untrusted Data API

https://www.phoronix.com/news/Linux-Kernel-Untrusted-Data-API
1•Bender•28m ago•0 comments

What's so special about Emacs? [video]

https://www.youtube.com/watch?v=mJZDmO5yOxE
3•floathub•29m ago•0 comments

Towards a Linear-Algebraic Hypervisor

https://arxiv.org/abs/2604.12902
1•bmc7505•29m ago•0 comments

Energy-intensive industries in Germany see 15-percent production fall

https://www.cleanenergywire.org/news/energy-intensive-industries-germany-see-15-percent-productio...
1•leonidasrup•33m ago•0 comments

Tagging Blog Posts with BERTopic and LLMs

https://vickiboykis.com/2026/05/18/tagging-my-blog-posts-with-bertopic-and-llms/
1•mpbart•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.