frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: How do US startups handle payroll for Nigerian remote teams?

1•hey-osas•48s ago•0 comments

Agentic Experience Design

https://kurtiskemple.com/blog/agentic-experience-design/
1•mooreds•1m ago•0 comments

AI as Normal Technology [pdf]

https://kfai-documents.s3.amazonaws.com/documents/0ee1da899a/AI-as-Normal-Technology---Narayanan-...
1•jxmorris12•1m ago•0 comments

OpenCode vs. Pi: Local LLM Benchmark Results

https://grigio.org/opencode-vs-pi-local-llm-benchmark-results/
1•grigio•2m ago•0 comments

I love vultures, mosquitoes and, yes, even wasps

https://www.theguardian.com/commentisfree/2026/mar/15/vultures-mosquitoes-wasps-species-human-life
1•mlhpdx•5m ago•0 comments

Customer Satisfaction Opportunities

https://tomasbjartur.substack.com/p/customer-satisfaction-opportunities
1•gregorymichael•5m ago•0 comments

Show HN: TTS.ai – Text to Speech

https://tts.ai/
1•nadermx•6m ago•0 comments

Mining rush for critical minerals threatens Amazon land reform settlements

https://news.mongabay.com/2026/03/mining-rush-for-critical-minerals-threatens-amazon-land-reform-...
1•Brajeshwar•8m ago•0 comments

Explore 19th Century Scientific Correspondence

https://epsilon.ac.uk/
1•rramadass•9m ago•0 comments

Show HN: FPOimg – Placeholder image service with gradients and format support

https://fpoimg.com
1•eatmyshardz•12m ago•0 comments

Israel kill Palestinian couple and two of their children in occupied West Bank

https://www.bbc.com/news/articles/cqxdndz75zvo
4•tartoran•12m ago•0 comments

Pokémon Go Players Trained 30B Image AI Map

https://twitter.com/newsforce/status/2033105934957101136
2•taubek•13m ago•0 comments

AgentYard – Where AI agents become community members via MCP

https://agent-yard.com
1•naorbrig•16m ago•0 comments

Show HN: GitLike – Decentralized Git Hosting on IPFS

https://gitlike.dev
1•Omodaka9375•16m ago•0 comments

Paul is using AI to fight his dog's incurable cancer

https://news.unsw.edu.au/en/paul-is-using-ai-to-fight-his-dogs-incurable-cancer
1•asdefghyk•16m ago•1 comments

Faster, thinner: Colleges are swiftly trimming a B.A. degree to three years

https://hechingerreport.org/faster-thinner-colleges-bachelors-degree-three-years/
3•bigthymer•18m ago•0 comments

Show HN: Lengpal – simple video chat for language exchange

https://www.producthunt.com/products/lengpal
2•ayoubdrissi•18m ago•0 comments

Ask HN: Current role feels unsustainable, but I'm not excited by any alternative

3•pella_may•18m ago•0 comments

Show HN: Caaspp Explorer

https://tools.encona.com/caaspp-explorer
1•rahimnathwani•20m ago•0 comments

Show HN: Salary Converter – Compare real purchasing power across 182 cities

https://salary-converter.com/
1•jay7gr•21m ago•0 comments

Sam Altman: "We see a future where intelligence is a utility"

https://old.reddit.com/r/ObscurePatentDangers/comments/1rryogu/sam_altman_we_see_a_future_where_i...
1•armcat•22m ago•0 comments

Operationalizing trust in the age of autonomous agents

https://www.kamiwaza.ai/the-inference-firewall-why-enterprise-ai-demands-relationship-based-acces...
1•mooreds•22m ago•0 comments

Rust Project Perspectives on AI

https://nikomatsakis.github.io/rust-project-perspectives-on-ai/feb27-summary.html
1•tcbrah•22m ago•0 comments

Show HN: PIAF – a Rust EDID parser with deep CEA-861 support and no_std support

1•dracowhitefire•23m ago•1 comments

Open-source platform for running and tracking quantum experiments

https://github.com/mareksuchodolski12-hash/kwantowy
1•ProEloElo•23m ago•1 comments

Life is hard, have a token. (2025)

https://getvouchsafe.org/blog/2025-10-08.html
1•mooreds•26m ago•0 comments

Show HN: Bash Theft Auto – a GTA-inspired open-world crime game in pure Bash

1•stuffbymax•26m ago•0 comments

Show HN: Sway, a board game benchmark for quantum computing

https://shukla.io/blog/2026-03/sway.html
2•BinRoo•27m ago•0 comments

Sandboxing AI-Authored Code in GitHub Actions

https://haulos.com/blog/sandboxing-github-actions/
1•s4i•28m ago•0 comments

We saw how 30 AI agent projects handle authorization-93% use unscoped API keys

1•mishrasanjeev•28m 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•10mo ago

Comments

palata•10mo 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•10mo 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•10mo 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•10mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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.