frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Big Reveal in China's New Five-Year Plan

https://heatmap.news/podcast/shift-key-s3e37-china-five-year-plan
1•leonidasrup•1m ago•1 comments

Android CLI: Build Android apps 3x faster using any agent

https://android-developers.googleblog.com/2026/04/build-android-apps-3x-faster-using-any-agent.html
1•ingve•3m ago•0 comments

Show HN: Online Sound Decibel Meter

https://soundmeterx.com/
1•artiomyak•4m ago•0 comments

Thinking about building agents for humans

https://frontierai.substack.com/p/build-agents-for-humans
2•tajshaik24•4m ago•0 comments

Zipper: the archival utility for macOS you didn't know you needed

1•krishshah5•5m ago•1 comments

Ask HN: How do you maintain flow when vibe coding?

2•fny•5m ago•0 comments

What's the point of the App Store, if it can't protect users?

https://www.macworld.com/article/3115356/whats-the-point-of-the-app-store-if-it-cant-protect-user...
3•cdrnsf•8m ago•0 comments

Ask HN: To open-source, or not to open-source

1•tracker1•8m ago•0 comments

openDoJa — full reimplementation of DoCoMo's DoJa SDK in modern Java

https://github.com/GrenderG/openDoJa
1•Lammy•10m ago•0 comments

Future Long Range Assault Aircraft Officially Named MV-75 Cheyenne II

https://news.bellflight.com/en-US/264304-future-long-range-assault-aircraft-officially-named-mv-7...
1•uticus•10m ago•1 comments

Text of OS age verification bill (HR 8250) [pdf]

https://www.congress.gov/119/bills/hr8250/BILLS-119hr8250ih.pdf
4•asdfglkjh•13m ago•0 comments

Gravtory – crash-proof Python workflows on your existing database

1•vatryok•13m ago•0 comments

Slint 1.16 Released

https://slint.dev/blog/slint-1.16-released
1•jandeboevrie•14m ago•0 comments

Stakes high as Supreme Court set to rule on Monsanto's weed-killing pesticide

https://www.theguardian.com/us-news/2026/apr/16/supreme-court-monsanto-glyphosate
1•mitchbob•14m ago•0 comments

Fire risks and ugly designs are stalling EV charger adoption

https://restofworld.org/2026/ev-charger-backlash-fire-safety-aesthetics/
1•PaulHoule•14m ago•0 comments

Show HN: HyperFrames – Render Video from HTML via Chrome's BeginFrame API

https://github.com/heygen-com/hyperframes
3•bored_hacker•14m ago•0 comments

Ask HN: How to Launch First SaaS

1•nicck1•15m ago•1 comments

Djangocon EU: when SaaS is not allowed: shipping Django as a desktop app

https://reinout.vanrees.org/weblog/2026/04/16/7-django-as-desktop-app.html
1•jandeboevrie•17m ago•0 comments

Show HN: Claude Opus 4.7: Everything You Need to Know

1•anju-kushwaha•17m ago•1 comments

The Unpleasant Side of Life with Horses in Cities

https://www.newyorkalmanack.com/2021/02/the-unpleasant-side-of-life-with-horses-in-cities/
1•ohjeez•18m ago•0 comments

How a subsea cable is repaired

https://www.onesteppower.com/post/subsea-cable-repair
1•slicktux•18m ago•0 comments

Ternary Bonsai: Top Intelligence at 1.58 Bits

https://prismml.com/news/ternary-bonsai
4•throwaway2027•18m ago•1 comments

An interesting art style: Warli Art

https://portraitart.app/photo-to-indian-warli
1•bethemoly•19m ago•0 comments

Open-world evaluations for measuring frontier AI capabilities [pdf]

https://cruxevals.com/open-world-evaluations.pdf
1•randomwalker•19m ago•0 comments

New undersea cable cutter risks Internet's backbone

https://arstechnica.com/gadgets/2026/04/china-tests-an-undersea-cable-cutter-as-suspected-sabotag...
3•pseudolus•21m ago•0 comments

Show HN: Open-source Perplexity clone one file back end, streaming answers

https://github.com/oncellai/oncell-research
6•anupsing_ai•23m ago•0 comments

Cavalry Is Now Free

https://cavalry.studio/en/
1•Seich•23m ago•1 comments

I Made the "Next-Level" Camera and I love it

https://thelibre.news/i-made-the-next-level-camera-and-i-love-it/
3•ndr•24m ago•0 comments

Leaving Gas Town – What Happens When the AI Bubble Bursts?

https://slowlywilliam.com/2026/04/12/leaving-gas-town.html
4•quicklywilliam•26m ago•1 comments

Show HN: Constellate – Finding patterns by reasoning about groups, not pairs

https://constellate.fyi
1•harthor•27m 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.