frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How are you feeling about the first Trillionaire?

https://trulytyped.com/post/BRCYJA
1•dwa3592•1m ago•0 comments

Linux 7.1

https://lkml.iu.edu/2606.1/13340.html
1•geoffbp•3m ago•0 comments

The Great Erase

https://www.neondystopia.com/?p=100043466
1•dangle1•6m ago•0 comments

Surpassing Frontier Performance with Fusion

https://openrouter.ai/blog/announcements/fusion-beats-frontier/
1•stared•9m ago•0 comments

For Retired Engineers

https://telescoper.blog/2026/06/14/for-retired-engineers/
1•mathgenius•12m ago•0 comments

Peace deal between US and Iran, Pakistan says, with Strait of Hormuz to re-open

https://www.theguardian.com/world/2026/jun/14/trump-calls-for-restraint-israel-airstrikes-beirut-...
2•srameshc•12m ago•0 comments

Bran flakes to be classed as junk food under new health plan

https://www.telegraph.co.uk/money/consumer-affairs/bran-flakes-to-be-classed-as-junk-food/
2•ivewonyoung•15m ago•0 comments

Making 'food out of thin air' (2024)

https://www.noemamag.com/making-food-out-of-thin-air/
2•muchweight•15m ago•0 comments

Windows 11 users are tired of MS account requirements creeping into everything

https://www.windowscentral.com/microsoft/windows-11/windows-11-users-are-tired-of-microsoft-accou...
5•josephcsible•19m ago•0 comments

The Magic Roundabout of Seattle Area

https://kirklandroundabouts.com
1•DenisM•19m ago•1 comments

Highly intelligent people are more likely to ditch old habits for better ideas

https://www.psypost.org/highly-intelligent-people-are-more-likely-to-ditch-old-habits-for-better-...
1•randycupertino•19m ago•2 comments

The Chinese parents dancing on live streams to help their children fight cancer

https://www.sixthtone.com/news/1018060
1•thisislife2•20m ago•0 comments

Zerostack v1.5 – A Unix-inspired coding agent written in pure Rust

https://crates.io/crates/zerostack/1.5.0#zerostack
1•gidellav•21m ago•0 comments

Lithos

https://lithosgraphein.com/
1•serhack_•22m ago•0 comments

Ask HN: Is anyone growing further from capitalism?

4•holistio•22m ago•1 comments

Risk of Portable Electronic Devices in Patients with Implanted Devices

https://www.ahajournals.org/doi/10.1161/CIRCEP.121.010646
2•bookofjoe•22m ago•1 comments

We Built a CLI That Gets Smarter Every Time You Use It

https://medium.com/@vektormemory/via-v0-4-0-we-built-a-cli-that-gets-smarter-every-time-you-use-i...
2•vektormemory•23m ago•0 comments

Scientists Identify 2 Distinct Subtypes of Autism in the Brain

https://www.sciencealert.com/scientists-identify-2-distinct-subtypes-of-autism-in-the-brain
2•andsoitis•23m ago•0 comments

8 Years of Refinement

https://alt-tab.app/changelog
2•behnamoh•26m ago•0 comments

Calculations Suggest It'll Be Impossible to Control a Super-Intelligent AI

https://www.sciencealert.com/calculations-suggest-itll-be-impossible-to-control-a-super-intellige...
1•andsoitis•26m ago•0 comments

Luddite

https://en.wikipedia.org/wiki/Luddite
3•d4ng•28m ago•1 comments

RFC 9396: OAuth 2.0 Rich Authorization Requests

https://ciamweekly.substack.com/p/rfc-9396-oauth-20-rich-authorization
1•mooreds•28m ago•0 comments

Show HN: V-COS – Governance layer that keeps AI coding agents coherent

https://github.com/vagnerfirminopro/v-cos
1•vagnerfirmino•28m ago•0 comments

A bitter lesson for medicine, or a benchmark problem?

https://sparsethought.com/2026/06/14/what-did-they-actually-measure/
1•galsapir•30m ago•0 comments

The Small-Business Owners Managing Whole Armies of A.I. Employees

https://www.nytimes.com/2026/06/04/magazine/ai-agents-openclaw-small-business.html
1•mooreds•30m ago•0 comments

AI and the Red Queen

https://huntersoftwareconsulting.com/posts/2026-06-14-ai-red-queen/
1•mooreds•31m ago•0 comments

The Role of a Software Engineer

https://eli.cx/blog/the-role-of-a-software-engineer
1•chronicom•33m ago•0 comments

ISC License

https://opensource.org/license/isc
1•doener•35m ago•0 comments

Show HN: Nodrix – open-source IoT cloud that runs in your own Cloudflare account

https://nodrix.live/
1•decoded_cipher•38m ago•0 comments

Ethereum can quantum-proof accounts for just 7 cents, says Kohaku project leader

https://cointelegraph.com/news/ethereum-quantum-proof-accounts-7-cents-researcher
1•ytNumbers•40m 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.