frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Demolishing the Oldest House in Nevada

https://jonpauluritis.com/articles/demolishing-the-oldest-house-in-nevada/
1•jppope•12s ago•0 comments

Operation Easy Chair

https://en.wikipedia.org/wiki/Operation_Easy_Chair
1•lisper•47s ago•0 comments

I almost drowned in space when my helmet filled with water

https://www.newscientist.com/article/2521138-i-almost-drowned-in-space-when-my-helmet-filled-with...
1•Brajeshwar•4m ago•0 comments

Tell the Model What to Do, Not What to Avoid

https://vexjoy.com/posts/positive-framing-agents-skills/
1•AndyNemmity•6m ago•0 comments

The stay-at-home boyfriend is now an economic trend as more women than men work

https://fortune.com/2026/03/28/men-home-women-workforce-economics-gender-change/
1•drgo•7m ago•0 comments

Storm Response Grid Restoration

https://gridstrong-80d8b8cf.base44.app
1•wesley-Alan•10m ago•0 comments

Ropes: An Alternative to Strings (1995) [pdf]

https://www.cs.tufts.edu/comp/150FP/archive/hans-boehm/ropes.pdf
1•tosh•11m ago•0 comments

EU and CPTPP agree to progress with "historic" digital trade deal, Canada says

https://www.reuters.com/world/americas/eu-cptpp-agree-progress-with-historic-digital-trade-deal-c...
1•vrganj•12m ago•0 comments

Docker Sandboxes

https://docs.docker.com/ai/sandboxes
1•iBelieve•14m ago•0 comments

Wikipedia bans AI-generated content in its online encyclopedia

https://www.theguardian.com/technology/2026/mar/27/wikipedia-bans-ai
1•Brajeshwar•14m ago•0 comments

Show HN_Mnemosyne: A 10^38 Joule Thermodynamic Barrier for Post-Quantum Edge AI

https://www.researchgate.net/profile/Bo-Jun-Han
1•ElyricFandross•17m ago•0 comments

How AI Will Reshape Public Opinion

https://www.conspicuouscognition.com/p/how-ai-will-reshape-public-opinion
1•Anon84•18m ago•0 comments

Stop telling agents what not to do

https://github.com/jwbron/egg/blob/main/docs/design/capability-removal.md
1•jwbron•19m ago•0 comments

What major works of literature were written after age of 85? 75? 65?

https://statmodeling.stat.columbia.edu/2026/03/25/what-major-works-of-literature-were-written-aft...
1•paulpauper•19m ago•0 comments

Learn Something Old Every Day, Part XVIII: How Does FPU Detection Work?

https://www.os2museum.com/wp/learn-something-old-every-day-part-xviii-how-does-fpu-detection-work/
1•kencausey•19m ago•0 comments

The Claim Upon the Training Data

https://www.jonadas.com/writing/essays/the-claim-upon-the-training-data
1•paulpauper•20m ago•0 comments

Seeing Like a Spreadsheet

https://davidoks.blog/p/how-the-spreadsheet-reshaped-america
1•paulpauper•20m ago•0 comments

The First Post-Reality Political Campaign

https://www.theatlantic.com/ideas/2026/03/hungary-first-post-reality-political-campaign/686565/
1•vrganj•21m ago•0 comments

The Explore-Exploit Tradeoff for AI Tools

https://www.normallydistributed.dev/the-explore-exploit-tradeoff-for-ai-tools/
1•jillcates•22m ago•0 comments

rpg.actor Game Jam

https://rpg.actor/jam
2•Kye•22m ago•0 comments

Agents for Security: The Tipping Point for Offensive AI

https://menlovc.com/perspective/agents-for-security-the-tipping-point-for-offensive-ai/
1•tcbrah•23m ago•0 comments

Circuit-level PDP-11/34 emulator

https://github.com/dbrll/ll-34
2•elvis70•25m ago•0 comments

Immich vs. ente photos – the photo backup showdown

https://alexandmanu.com/blog/immich-vs-ente-photos/
1•birdculture•31m ago•0 comments

Microsoft Set for Worst Quarter Since 2008

https://finance.yahoo.com/news/microsoft-set-worst-quarter-since-103556906.html
3•dvfjsdhgfv•35m ago•3 comments

In defense of social friction- Sycophantic AI distorts judgments and behaviors

https://www.science.org/doi/full/10.1126/science.aeg3145
1•tortilla•35m ago•0 comments

Lace Lithography raises $40M to replace chip-making light with helium atoms

https://thenextweb.com/news/lace-lithography-40m-series
2•shaicoleman•41m ago•0 comments

Designing a single-file MMAP-backed read-only hashed multi-table database

https://notes.volution.ro/v1/2026/03/notes/53ac09b0/
2•ciprian_craciun•43m ago•0 comments

Militarized snowflakes: The accidental beauty of Renaissance star forts

https://bigthink.com/strange-maps/star-forts/
15•Brajeshwar•45m ago•0 comments

PromptPaste – Voice Input for Claude Code and Codex CLI

https://www.promptpasteapp.com/
1•yanivnoema•46m ago•0 comments

How a Bill Gates-Backed Company Landed in a Fight Between Congo and Belgium

https://www.wsj.com/world/africa/congo-belgium-bill-gates-company-6d0e4be0
2•ViktorRay•46m 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.