frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Spectator, a Programming Language for Cybersecurity

1•CzaxTanmay•5m ago•0 comments

Show HN: Literalizer – convert JSON and YAML into native

https://github.com/adamtheturtle/literalizer
1•adamtheturtle•5m ago•0 comments

Schedule Claude Code tasks on the web

https://code.claude.com/docs/en/web-scheduled-tasks
5•iBelieve•17m ago•1 comments

How Natural Tradeoff and Failure Components?

https://www.astralcodexten.com/p/how-natural-tradeoff-and-failure
2•paulpauper•19m ago•0 comments

Implementing YOLOv8 Object Detection with OpenCV in Rust Using ONNX Models

https://linzichun.com/posts/rust-opencv-onnx-yolov8-detect/
2•auraham•20m ago•0 comments

Vibe Coding Ships Broken

https://wire.wise-relations.com/news/2026-03-27-vibe-coding/
2•chelm•22m ago•0 comments

Ohm's Peg-to-WASM Compiler

https://ohmjs.org/blog/2026/03/12/peg-to-wasm
1•azhenley•23m ago•0 comments

Show HN: Superfast – Cognitive Memory Graphs for Enterprise AI Agents

1•prabhatkr•26m ago•0 comments

Cross-platform desktop app with YOLOv8, Tauri, Rust, and SvelteKit

https://linzichun.com/posts/tauri-image-desktop-app-rust-sveltekit/
1•auraham•28m ago•0 comments

Goedel-Code-Prover: Hierarchical Proof Search for Open SotA Code Verification

https://goedelcodeprover.github.io/
2•matt_d•28m ago•0 comments

K8s security with graph-based attack paths (like Wiz, but affordable)

https://juliet.sh/
1•rodrickbrown•31m ago•0 comments

ABOM – Map your GitHub Actions supply chain (built after the Trivy compromise)

https://github.com/JulietSecurity/abom
1•rodrickbrown•35m ago•0 comments

What if you codebase was living all along and you were a surgeon

https://twitter.com/rs545837/status/2037382115457933720
1•as290608•36m ago•0 comments

JoyConf: A live emoji reaction app for presentations

https://tracyatteberry.com/posts/joyconf/
1•sea-gold•40m ago•0 comments

Ship with Claude – Free Starter Pack (Maintainable AI-Assisted Projects)

https://panavy.gumroad.com/l/skmaha
1•panavm•43m ago•1 comments

Developers are faster than ever. So why isn't anything shipping?

https://www.linkedin.com/pulse/bottleneck-cascade-timur-fatykhov-nm4ce
1•tfatykhov•44m ago•1 comments

Systemd-free antiX 26: Debian 13, in bonsai form

https://www.theregister.com/2026/03/24/antix_26_bonsai_trixie/
2•thunderbong•44m ago•0 comments

Ask HN: How has your DevOps/SRE changed since AI was adopted in your company?

1•paperplaneflyr•48m ago•1 comments

Show HN: Sylve – A management plane for FreeBSD (ZFS, VMs, jails, clustering)

https://sylve.io
2•arch1e•51m ago•0 comments

Does a hit song really need 9 writers? (2019)

https://www.bbc.com/news/entertainment-arts-48395059
1•1659447091•53m ago•0 comments

If you are a published author you may be entitled to compensation

https://www.anthropiccopyrightsettlement.com
2•october8140•57m ago•0 comments

Tom paxton – lyndon Johnson told the nation [video]

https://www.youtube.com/watch?v=uXcG3tXYNF8
2•marysminefnuf•1h ago•0 comments

OpenCodex – A developer hub to showcase projects and profiles

https://opencodex.app
1•barrazadev•1h ago•1 comments

Sign Errors in "The Four Laws of Black Hole Mechanics"

https://arxiv.org/abs/2603.25171
2•mellosouls•1h ago•0 comments

Show HN: Agent Kernel – 3 MD files that turn any AI into a self-aware Agent

https://agent-kernel.dev/?release=v1.23.0
2•obilgic•1h ago•0 comments

Show HN: AgentGuard – An open-source firewall to secure autonomous AI agents

https://github.com/Caua-ferraz/AgentGuard
2•millimercure•1h ago•0 comments

Why the Minnesota Starvation Experiment Doesn't Generalize to Modern Dieting

https://greyenlightenment.com/2026/03/21/why-the-minnesota-starvation-experiment-doesnt-generaliz...
2•paulpauper•1h ago•0 comments

Why most AI projects fail after the demo works

https://thenewstack.io/ai-demo-to-production/
1•msolujic•1h ago•0 comments

Scale AI X Prediction Markets

https://reppo.ai/
1•rgvrmdya•1h ago•1 comments

What's the Deal with Forward Deployed Engineers?

1•rubyrenegade•1h ago•2 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.