frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Guardio – control your AI Agent

https://github.com/radoslaw-sz/guardio
1•radoslaw-sz•39s ago•0 comments

America and Israel built military targeting machines: Software

https://www.economist.com/international/2026/03/11/how-america-and-israel-built-vast-military-tar...
1•supernikita•47s ago•1 comments

Physicality: The New Age of UI

https://www.lux.camera/physicality-the-new-age-of-ui/
1•tosh•7m ago•0 comments

Canadian Wind Farms

https://tech.marksblogg.com/canadian-wind-farms.html
1•marklit•9m ago•0 comments

Iran's Sea Mines Are One of Its Most Powerful Weapons

https://www.wsj.com/world/middle-east/iran-sea-mines-strait-of-hormuz-85e623b7
1•sorentwo•12m ago•0 comments

LipoJaro Review 2026: The Truth Behind the "Gelatin Trick"

https://www.facebook.com/LipoJaro.Fat.Burn
2•tayzjaik•12m ago•1 comments

Iran war oil shock accelerates Southeast Asia's EV revolution

https://www.scmp.com/week-asia/lifestyle-culture/article/3345751/iran-war-oil-shock-accelerates-s...
1•KnuthIsGod•13m ago•0 comments

Show HN: AI-powered one-click translator for Pokémon GBA ROM hacks

https://github.com/Olcmyk/Meowth-GBA-Translator
3•booffa•17m ago•1 comments

How long till every major provider sets their RSI loops in motion?

1•foxindustrial•20m ago•0 comments

GSD for Claude Code: A Deep Dive into the Workflow System

https://www.codecentric.de/en/knowledge-hub/blog/the-anatomy-of-claude-code-workflows-turning-sla...
1•kiyanwang•21m ago•0 comments

WordPress debuts a private workspace that runs in the browser

https://techcrunch.com/2026/03/11/wordpress-debuts-a-private-workspace-that-runs-in-your-browser-...
1•taubek•22m ago•0 comments

Show HN: Okapi yet Another Observability Thing

https://github.com/okapi-core/okapi
1•kushal2048•22m ago•0 comments

A Practical, Structured Guide That Delivers Confidence for the CCNA

1•Dexter7711•24m ago•0 comments

Show HN: Landlook – Interactive Landlock Profiler

https://github.com/cnaize/landlook
1•cnaize•25m ago•1 comments

Ask HN: Can a word game work as a competitive strategy esport?

1•itchymitchy•25m ago•0 comments

Behold The Power of std::meta::substitute

https://brevzin.github.io/c++/2026/03/02/power-of-substitute/
1•HeliumHydride•26m ago•0 comments

Decode Messenger

https://decodemessenger.lovable.app
1•genx__•26m ago•0 comments

Edition #6

https://forgeintelligence.substack.com/p/forge-intelligence-edition-6
1•beakmull•31m ago•0 comments

I Vibe Coded the Metaverse in a Week. Now What?

https://medium.com/meta-verses/i-vibe-coded-the-metaverse-in-a-week-d5a6b0579de6
3•mpesce•31m ago•1 comments

Anthropic seeks appeals court stay of Pentagon supply-chain risk designation

https://www.reuters.com/technology/anthropic-seeks-court-stay-pentagon-supply-chain-risk-designat...
3•SilverElfin•34m ago•0 comments

Dutch ISP forwarded customers' personal data to American AI company for years

https://nltimes.nl/2026/03/11/odido-routers-forwarded-customers-personal-data-american-ai-company...
2•sergdigon•37m ago•0 comments

Shadow AI and the Compliance Gap That Won't Close Itself

https://pablooliva.de/the-closing-window/shadow-ai-and-the-compliance-gap-that-wont-close-itself/
1•pablooliva•39m ago•0 comments

AI Will Fail Like the Music Industry [video]

https://www.youtube.com/watch?v=YTLnnoZPALI
1•mkesper•39m ago•0 comments

OpenBAO the Vault fork is now being supported by the same company as FluxCD

https://channellife.com.au/story/controlplane-unveils-enterprise-support-for-openbao
1•aiman_alsari•39m ago•0 comments

Why enterprise deals stall at security review

1•gatreddi•42m ago•2 comments

Dead Kennedys front man Jello Biafra in stable condition after stroke

https://www.sfgate.com/sf-culture/article/sf-punk-singer-stroke-22063807.php
4•pabs3•43m ago•0 comments

Show HN: Jurassic Park Unix System Kubernetes Viewer

https://github.com/jlandersen/k8s-unix-system
3•jlandersen•51m ago•2 comments

Off-grid Dublin data centre fuelled by own power plant

https://www.rte.ie/news/business/2026/0312/1562943-dublin-data-centre/
3•austinallegro•59m ago•1 comments

Show HN: I built an AI comic generator from scratch using only natural language

1•twwch•1h ago•1 comments

Barnum Effect

https://en.wikipedia.org/wiki/Barnum_effect
1•nomilk•1h 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•10mo ago

Comments

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

https://reportmill.com/SnapCode

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