frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GAN-based colorization of SAR imagery into optical-style RGB

https://github.com/fahad-mughal-rehman/sar-colorization-gan
1•marklit•51s ago•0 comments

Show HN: Inspect URL Endpoints for A2A, ARD and MCP Misconfigurations

https://contextiq.trango-compute.com
1•contextiq•3m ago•0 comments

Ask HN: Is AI use not allowed in projects which is shared here to show?

1•rahuljha0403•4m ago•0 comments

Show HN: Remote controlled gun turrets you can fire online

https://shov.com/
1•dommm•4m ago•1 comments

Ask HN: Should we still learn coding?

2•NarcisMirandes•4m ago•0 comments

We're Making Tailscale Faster

https://tailscale.com/blog/making-tailscale-faster
2•kieto•5m ago•0 comments

Show HN: Filefew – Fast, no-signup file utility with exact-size PDF compression

https://filefew.com/
1•simonedepertis•5m ago•0 comments

Show HN: Whami is a daily trivia game that writes its own questions every night

https://whami.app/
1•BrendanSF•6m ago•0 comments

Jev Denies Racial Superiority Until Forced Choice Makes It Rank Groups

https://www.drjoshcsimmons.com/writing/it-refused-then-i-made-it-choose
1•joshcsimmons•6m ago•0 comments

Show HN: CircuitPilot – We built a physics engine to auto-route PCBs using LLMs

3•Dota-12•6m ago•0 comments

A Summer of AI Optimization

https://lemire.me/blog/2026/09/22/a-summer-of-ai-optimization/
1•vok•7m ago•0 comments

Tell HN: Couchsurfing.com is now vibe-coded and with official AI generated pics

1•Nales•7m ago•0 comments

The Dangers of Vibe Coding

https://thesimpledev.com/blog/opinion/vibe-coding-dangers/
2•eustoria•8m ago•0 comments

Show HN: Piary – Rethinking the human-agent interface beyond chat

https://piary.dev/
1•baranguneysel•10m ago•0 comments

Why prompt engineering in medicine beats picking a model

https://kevinmd.com/2026/09/why-prompt-engineering-in-medicine-beats-picking-a-model.html
1•eustoria•10m ago•0 comments

Justice: Small, dependency-free paragraph justification engine

https://justice.kitlangton.com/
1•luispa•11m ago•0 comments

Show HN: Word Duel – a two-player Wordle where you pick each other's word

https://www.wordunscrambler.net/games/word-duel/
1•mjirving•11m ago•0 comments

Op-eds, academic articles by Provost Santiago Schnell flagged as 'AI-written'

https://www.thedartmouth.com/article/2026/09/schnell-ai-writing
1•qsi•11m ago•0 comments

Show HN: Five yes/no questions read your X posts for $0.00004 a reading

https://postneedle.com/accounts
1•carbaj03•11m ago•0 comments

Fixing cringeworthy bugs in the OpenBSD console code

https://research.exoticsilicon.com/articles/unbreaking_utf8_on_the_console
3•eustoria•11m ago•0 comments

UN chief says 'Cracks have become canyons' as world faces four tests of power

https://news.un.org/en/story/2026/09/1168392
1•geox•12m ago•0 comments

Show HN: Sparrow – Slack for Agents

https://sparrow.land
1•jakequist•12m ago•0 comments

A self-evolving agentic system for automated execution of biological protocols

https://arxiv.org/abs/2606.31763
1•lawrenceyan•12m ago•0 comments

Where're All the AI Chips?

https://www.wheresyoured.at/wherere-all-the-ai-chips/
1•tolugenius•14m ago•0 comments

EU States plan "digital expropriation" of Europeans in the interest of AI comp

https://noyb.eu/en/ai-eu-member-states-plan-digital-expropriation-europeans-interest-ai-companies
2•_____k•16m ago•0 comments

Your Computer Might Demand Your Age Soon, No Matter Where You Live

https://uk.pcmag.com/security/167356/your-computer-might-demand-your-age-soon-no-matter-where-you...
1•smartmic•16m ago•0 comments

Transit Rewards

https://waymo.com/blog/2026/09/transit-rewards/
1•NWChen•16m ago•0 comments

Running Tailwind's engine against a shadow root, without a build step

https://blog.crossui.com/2026/09/shadcn-says-the-code-is-yours-so-why-cant-anything-edit-it
1•linb•17m ago•0 comments

New EVs from Saudi Arabia

https://cleantechnica.com/2026/09/21/ceer-saudi-arabia-evs-exobot-domestic-manufacturing/
1•gumby•17m ago•0 comments

Media Capture Doesn't Need the Newsroom

https://www.promarket.org/2026/09/22/media-capture-doesnt-need-the-newsroom/
1•01-_-•17m 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.