frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

1•headmonkey•1s ago

Ask HN: What is the underlying stack behind multi-agent platforms?

1•throwaw12•1m ago•0 comments

Show HN: nocal is a calendar that turns your week into a workspace

https://nocal.app/
1•bcmuse•1m ago•0 comments

Simplex Algorithm

https://en.wikipedia.org/wiki/Simplex_algorithm
1•tosh•2m ago•0 comments

Capacity

https://dahl.dev/capacity
1•aleda145•5m ago•0 comments

Another Israeli terrorist attacking a school

https://twitter.com/swilkinsonbc/status/2052752104817603002
3•juliusceasar•10m ago•1 comments

Forking the Web

https://dillo-browser.org/lab/web-fork/
2•wrxd•17m ago•0 comments

The Rebels Who Fought Enterprise Java – Spring: The Documentary [video]

https://www.youtube.com/watch?v=0Gb1z-2SjHY
1•arbayi•22m ago•0 comments

Show HN: Anycrap – REST API for 35k absurdist AI-generated products

https://anycrap.shop/developers
2•astrokaf•23m ago•0 comments

Architecting on Cloudflare

https://architectingoncloudflare.com/
1•Lwrless•27m ago•0 comments

Show HN: Concord – Feature rich TUI for discord

https://github.com/chojs23/concord
3•jpellamo•28m ago•1 comments

The groundbreaking AI tool helping Victorian rangers protect native species

https://www.abc.net.au/news/2026-04-27/ai-helps-parks-victoria-manage-native-species-pests-after-...
1•aeonfox•30m ago•0 comments

UniPool: A Globally Shared Expert Pool for Mixture-of-Experts

https://arxiv.org/abs/2605.06665
1•danborn26•31m ago•0 comments

A History of IDEs at Google

https://laurent.le-brun.eu/blog/a-history-of-ides-at-google
1•laurentlb•36m ago•0 comments

Aids Creeps Back in Parts of Zambia, a Year After U.S. Cuts to HIV Assistance

https://www.nytimes.com/2026/04/25/health/pepfar-hiv-aids-zambia.html
2•susiecambria•36m ago•0 comments

Project Cybersyn: Chile's Radical Experiment in Cybernetic Socialism (2023)

https://thereader.mitpress.mit.edu/project-cybersyn-chiles-radical-experiment-in-cybernetic-socia...
1•pseudolus•42m ago•0 comments

The Audience Nobody Saw

https://fromthelittoral.substack.com/p/the-audience-nobody-saw
2•MrVandemar•44m ago•0 comments

Nvidia releases CUDA-Oxide 0.1 for experimental Rust-to-CUDA compiler

https://www.phoronix.com/news/NVIDIA-CUDA-Oxide-0.1
2•birdculture•46m ago•0 comments

Musk vs. Altman week 2: OpenAI fires back, and Shivon Zilis reveals that Musk tr

https://www.technologyreview.com/2026/05/08/1137008/musk-v-altman-week-2-openai-fires-back-and-sh...
1•joozio•48m ago•0 comments

GpxFix – A tool to repair recordings of outdoor activities

https://www.gpxfix.eu/
1•taccp•50m ago•0 comments

LLMs are underutilized due to sub optimal management

https://alexzhang13.github.io/blog/2026/mgh/
1•melonmars•52m ago•0 comments

Show HN: DuoSolve – Daily grammer practice game

https://duobook.co/duosolve
1•celltalk•55m ago•0 comments

Vladimir Putin is losing his grip on Russia

https://www.economist.com/by-invitation/2026/05/06/vladimir-putin-is-losing-his-grip-on-russia
21•bazzmt•55m ago•9 comments

Practice reviewing risky AI-generated engineering output

https://www.proreview.dev/
1•shaad1337•57m ago•0 comments

Your Computer Doesn't Belong to You Anymore

https://aquisthoughts.substack.com/p/your-computer-doesnt-belong-to-you
6•ethanplant•1h ago•0 comments

Show HN: Memory Vault – local-first memory, hybrid search, knowledge graph

https://github.com/MihaiBuilds/memory-vault
1•mihaibuilds•1h ago•0 comments

Show HN: Aptmatic – a TUI for managing apt across a bunch of Debian boxes

https://crates.io/crates/aptmatic
2•growse•1h ago•0 comments

Kanvly – notes and boards with AI, now on iOS

https://kanvly.com
1•trotskomain•1h ago•0 comments

Lua as a practical "soft-bedrock" language

https://portal.mozz.us/gemini/zaibatsu.circumlunar.space/~solderpunk/gemlog/lua-as-a-practical-so...
3•karl42•1h ago•2 comments

Agentwerk: A minimal Rust crate for agentic apps

https://github.com/canvascomputing/agentwerk
1•schirrmacher•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.