frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Linux Kernel 6.12.86 and 6.18.27 released

https://www.linuxcompatible.org/story/linux-kernel-61286-and-61827-released/
1•pamcake•1m ago•1 comments

What Changed My Mind About Dependency Injection in TypeScript

https://www.vswaroop04.com/writing/di-repository-adapter
1•vswaroop04•2m ago•0 comments

My Initial Thoughts on Thunderbird Pro

https://kevquirk.com/my-inital-thoughts-on-thundermail
1•herbertl•3m ago•0 comments

Llama and Spec: MTP Support

https://github.com/ggml-org/llama.cpp/pull/22673
1•jhoho•3m ago•0 comments

What it feels like to swap

https://ruibento.medium.com/what-it-feels-like-to-swap-96d83a545c5e
1•jgrahamc•4m ago•0 comments

Can I delete the Chrome's OptGuideOnDeviceModel safely? (2025)

https://superuser.com/questions/1930445/can-i-delete-the-chromes-optguideondevicemodel-safely-its...
1•jjgreen•4m ago•0 comments

Show HN: Design proteins from one formula, zero training data – runs in browser

https://aidoctrine.github.io/uct-protein/
1•AlekseN•4m ago•0 comments

Fooling large language models just keeps getting simpler

https://www.theregister.com/software/2026/04/29/fooling-large-language-models-just-keeps-getting-...
1•speckx•5m ago•0 comments

Show HN: I vibe-coded an illegal streaming platform

https://streamvaults.ru/
1•hannil55•6m ago•0 comments

Open-Source Framework to Stop Spamming Your Users (and Increase Conversions)

https://github.com/furkatkasimov/lamf/
1•qatlama•7m ago•0 comments

The GRU's Hogwarts: Inside[..]elite spy school for Russian military intelligence

https://theins.press/en/inv/292314
1•defly•11m ago•0 comments

PS5-Linux

https://github.com/ps5-linux/ps5-linux-loader
2•26d0•11m ago•0 comments

Two Chapters on Code Reviews Worth Your Afternoon

https://verbosemode.dev/p/two-chapters-on-code-reviews-worth
1•ablx000•14m ago•0 comments

Motivation, Productivity Barriers, and Engineering Friction

https://pankajpipada.com/posts/2026-05-07-motivation-productivity-barriers/
1•ppipada•16m ago•1 comments

VoidZero Announces Rolldown 1.0

https://voidzero.dev/posts/announcing-rolldown-1-0
3•crousto•16m ago•0 comments

Anthropomorphism Is the New Skeuomorphism

https://danielgrantco.substack.com/p/anthropomorphism-is-the-new-skeuomorphism
1•djgrant•17m ago•0 comments

Spoiler-free character descriptions for ePub novels

https://github.com/Fank1/curie
1•fank1•19m ago•1 comments

I got prompt-injected asking Claude on iOS to recommend a cycling route app

https://menno.sh/prompt-injection.html
2•menno-sh•21m ago•0 comments

Tell HN: Calculated the price for Canny at 1k/5k/50k users–see how it adds up

1•luodaint•21m ago•0 comments

A new hash table for Lwan

https://tia.mat.br/posts/2026/05/06/a-new-hash-table-for-lwan.html
1•g0xA52A2A•22m ago•0 comments

File72 – Send files instantly, no account required

https://file72.com/
1•ihorko•23m ago•0 comments

Dutch government extends DigiD contract with US takeover target

https://www.dutchnews.nl/2026/05/dutch-government-extends-digid-contract-with-us-takeover-target/
2•ritzaco•24m ago•0 comments

Show HN: We added a way to jump from clipboard search back to original context

1•ProtsenkoAlex•29m ago•0 comments

Unofficial Kotlin Lsp

https://github.com/Hessesian/kotlin-lsp
1•hawk0120•29m ago•0 comments

Jeffrey Snover on .NET and Windows: "Not a Happy Marriage"

https://xcancel.com/AndrewPlaTech/status/2052062704714612858#m
2•aragonite•29m ago•0 comments

Woman covertly filmed for 'humiliating' social media content – then told to pay

https://www.bbc.co.uk/news/articles/cwy87wqz0q9o
1•mindracer•30m ago•0 comments

Show HN: Desktop Agent Center – Local AI Automation via Hotkeys

1•Tint6666•34m ago•1 comments

Is AI Creative?

https://negativestarinnovators.com/blog/does-ai-actually-have-creativity
1•pizzly•35m ago•0 comments

PHP's Biggest Problem

https://stitcher.io/blog/php-biggest-problem
3•eyupcanakman•36m ago•0 comments

Ask HN: Real life autonomous AI Agents

1•gagarwal123•36m 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.