frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

March, 19-21: God is a comedian

https://no01.substack.com/p/march-19-21-god-is-a-comedian
1•tastyface•3m ago•0 comments

Show HN: Knitting – shared-memory function calls for JavaScript workers

https://knittingdocs.netlify.app/
1•mimiMonads•3m ago•0 comments

MagicAudio – Free Noise, Echo and Background Music Remover

https://magicaudio.pro/
1•polayan•4m ago•0 comments

Mixing Post-Quantum KEMs into Noise

https://runxiyu.org/comp/nkem1/
1•runxiyu•9m ago•0 comments

Modular 26.2: Image Generation and Upgraded AI Coding with Mojo

https://www.modular.com/blog/modular-26-2-state-of-the-art-image-generation-and-upgraded-ai-codin...
1•tosh•9m ago•0 comments

A Billionaire-Backed Startup Wants to Grow 'Organ Sacks' to Replace Animal Test

https://www.wired.com/story/a-billionaire-backed-startup-wants-to-grow-organ-sacks-to-replace-ani...
1•joozio•10m ago•0 comments

Women Are Falling in Love with A.I. It's a Problem for Beijing

https://www.nytimes.com/2026/02/26/technology/china-ai-dating-apps.html
1•Markoff•14m ago•0 comments

What Does the AGPL Require?

https://runxiyu.org/comp/agpl/
3•runxiyu•17m ago•0 comments

A simple feed to keep up with AI drops

https://www.a2i.now/
1•markke•17m ago•0 comments

Low-level Git plumbing library in pure Go

https://github.com/runxiyu/furgit
1•runxiyu•18m ago•0 comments

AI Proteomics Competition 2026 – $13K Prize, Internships and Compute Support

https://www.bohrium.com/competitions/9813928053?tab=introduce
1•choubao•18m ago•1 comments

Opera: Rewind The Web to 1996 (Opera at 30)

https://www.web-rewind.com
2•thushanfernando•19m ago•0 comments

CDP Alternatives for Startups and Small Teams

https://www.sentohq.com/posts/cdp-alternatives-small-teams
2•adrved•21m ago•0 comments

The Death of Character in Game Console Interfaces

https://vale.rocks/posts/game-console-interfaces
1•rockstar2001•23m ago•0 comments

Papal-American Tax Problems and a Solution

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5340391
1•nxobject•23m ago•0 comments

Nvidia CEO Jensen Huang says 'I think we've achieved AGI'

https://www.theverge.com/ai-artificial-intelligence/899086/jensen-huang-nvidia-agi
3•iugtmkbdfil834•24m ago•1 comments

Show HN: ProofShot – Give AI coding agents eyes to verify the UI they build

https://proofshot.argil.io/
2•jberthom•27m ago•0 comments

Helios: 14B open source video model, real time at 19.5fps, runs on 6GB VRAM

https://github.com/PKU-YuanGroup/Helios
1•steveharing1•28m ago•0 comments

How good is Claude, really?

https://alinpanaitiu.com/blog/how-good-is-claude-really/
1•imaq•28m ago•0 comments

Show HN: Kern – One agent. One folder. One mind. Every channel

https://github.com/oguzbilgic/kern-ai
1•obilgic•29m ago•0 comments

Liquid Glass Is Permanent

https://mjtsai.com/blog/2026/03/23/liquid-glass-is-permanent/
1•imaq•30m ago•0 comments

A Minimal NixOS Config That Still Feels Premium

https://slicker.me/nixos/premium_minimal.html#premium
1•weatherlight•32m ago•0 comments

JP Morgan's Monitors Employee's Keystrokes and Meetings; for Their Wellbeing

https://www.inc.com/moses-jeanfrancois/jp-morgans-junior-banker-tech-monitoring/91319918
3•tuananh•33m ago•2 comments

Show HN: Prompts Directory for Data Analyst

https://mljar.com/ai-prompts/data-analyst/
1•pplonski86•36m ago•0 comments

Ask HN: How are you monitoring what OpenClaw does when it runs autonomously?

1•jialu1•37m ago•0 comments

Tech Founders Can Access Investors and What Davos and Tulum Has to Do with It

https://irishtechnews.ie/how-tech-founders-can-access-investors/
1•ybelkin•37m ago•0 comments

Someone Forked Systemd to Strip Out Its Age Verification Support

https://itsfoss.com/news/systemd-fork-strips-out-age-verification/
1•KnuthIsGod•38m ago•0 comments

Long-Running Sandbox in Dockers for Coding Agents (100% POSIX Compatible)

https://sandock.ai/
1•chepy•39m ago•0 comments

Ask HN: System Programming as a LLM shelter

1•AloysB•39m ago•0 comments

Rye

https://ryelang.org/
3•tosh•40m 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•11mo ago

Comments

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

https://reportmill.com/SnapCode

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