frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

About Universal Claude.md – cut Claude output tokens by 63%

https://github.com/drona23/claude-token-efficient
2•killme2008•2m ago•0 comments

Parsing a Chinese Poem as a Formal System That Runs

https://jimiwen.substack.com/p/si-wu-zi-4d7
1•jimiwen•5m ago•0 comments

Don't overthink electric car charging (we should be doing it differently)

https://www.youtube.com/watch?v=5NG4hycq8n0
1•em-bee•5m ago•0 comments

Six cloned horses help rider win prestigious polo match (2016)

https://www.science.org/content/article/six-cloned-horses-help-rider-win-prestigious-polo-match
1•pinkmuffinere•6m ago•1 comments

What I Talk About When I Talk About Grading

https://unintendedconsequenc.es/what-i-talk-about-when-i-talk-about-grading/
1•paulorlando•10m ago•0 comments

Maybe Finance Asset Sale

https://maybefinance.notion.site/asset-sale
1•raybb•13m ago•0 comments

Small ways the App Store could be improved for developers

https://lapcatsoftware.com/articles/2026/3/13.html
1•walterbell•14m ago•0 comments

Show HN: Cut your tail latencies by 74% with zero config

https://pkg.go.dev/github.com/bhope/hedge
1•soniccontroller•14m ago•0 comments

Rust's next-generation trait solver

https://lwn.net/SubscriberLink/1063124/81483612b1c8a493/
1•dabinat•16m ago•0 comments

A Man and the Elevator

https://joseantunes.tech/life/2026/03/22/the-elevator.html
1•zemike•19m ago•1 comments

Whispr Flow – Vision Flow

https://github.com/tanayvin1216/VisionFlow
1•tanay_vin•20m ago•1 comments

GTabs – AI tab organizer for Chrome that works with any LLM

https://github.com/vaddisrinivas/gtabs
1•srinivasvaddi•21m ago•0 comments

Yes, you need a Mac Mini

https://hyperengineering.bottlenecklabs.com/p/yes-you-actually-need-a-mac-mini
1•Areibman•21m ago•0 comments

Ask HN: Is anyone still resisting the slop onslaught?

2•0xDEFACED•21m ago•1 comments

The AI Shift: Will software engineers survive agentic AI?

https://www.ft.com/content/7325e967-5f4e-40b1-af3f-7d2351781843
1•mooreds•25m ago•0 comments

Think tank collaborate and earn bata testing

https://solve-hive-pro.base44.app
1•wesley-Alan•27m ago•0 comments

Ask HN: After three years of open source software, I can't stand it

https://github.com/drl990114/MarkFlowy
3•drl5•33m ago•0 comments

Adding custom webhooks to my Samsung smart ring

https://github.com/TheVellichor/SamsungOpenRing
1•_vellichor•41m ago•1 comments

Proposal for adding a useful pipe operator to JavaScript

https://github.com/tc39/proposal-pipeline-operator
1•jcbhmr•42m ago•0 comments

Review: The Wireless Cookbook

https://www.helpnetsecurity.com/2025/10/28/review-the-wireless-cookbook/
1•teleforce•43m ago•0 comments

Managing API keys and launching coding agents across providers

https://getaivo.dev
1•spirit23•44m ago•0 comments

What Happens When AI Stops Being Artificially Cheap

https://danielmiessler.com/blog/ai-stops-being-artificially-cheap
3•davikr•46m ago•1 comments

Using AI to inflate your ego

https://blog.avas.space/ai-ego/
1•davikr•46m ago•0 comments

Book Review: Building a Debugger

https://blogs.newardassociates.com/blog/2025/book-review-building-a-debugger.html
1•teleforce•47m ago•0 comments

Ask HN: What TLD would AI companies be using if .ai wasn't an option?

1•Cider9986•51m ago•0 comments

Coatue Projected $1.995T Valuation for Anthropic in 2030

https://www.newcomer.co/p/coatue-projected-1995-trillion-valuation
1•aanet•54m ago•0 comments

The Terrarium

https://www.lesswrong.com/posts/znbfRXHq285nS7NAh/the-terrarium
1•johnfn•55m ago•0 comments

Naga siren – song of the siren [video]

https://www.youtube.com/watch?v=Rs0vhQFIKx4&list=RDRs0vhQFIKx4
1•marysminefnuf•55m ago•0 comments

Cheese ingredients included in certain Hello Fresh brand meal kits recalled

https://recalls-rappels.canada.ca/en/alert-recall/cheese-ingredients-included-certain-hello-fresh...
1•gnabgib•57m ago•0 comments

Emerging Litigation Risks in Financing AI Data Centers Boom

https://www.quinnemanuel.com/the-firm/publications/client-alert-emerging-litigation-risks-in-fina...
2•pier25•57m 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.