frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The new political screening that's stalling NIH grants

https://www.nature.com/articles/d41586-026-01924-8
1•rguiscard•41s ago•0 comments

Men are funnier than women, study claims (2019)

https://www.bbc.com/news/newsbeat-50221046
1•doener•2m ago•0 comments

On the Efficacy of PyTorch for High-Performance Computing

https://dl.acm.org/doi/10.1145/3801487.3801838
1•matt_d•4m ago•0 comments

AI in higher ed: just like the shock of the Internet and the web?

https://nocodefunctions.com/blog/higher-education-AI-web/
1•seinecle•5m ago•0 comments

AI models' values are very different from most people's

https://www.economist.com/briefing/2026/06/25/ai-models-values-are-very-different-from-most-peoples
1•pseudolus•11m ago•1 comments

Trump to lift limits on Anthropic's Fable model

https://www.politico.com/news/2026/06/30/anthropic-wh-lifting-export-limits-00980865
3•cyunker•12m ago•1 comments

Panasonic's new residential CO₂ air-to-water heat pump:coeff of performance=6.1

https://www.pv-magazine.com/2026/06/29/panasonic-launches-co%E2%82%82-air-to-water-heat-pump-with...
3•bookofjoe•13m ago•0 comments

Zhuangzi and the Case Against Meritocracy

https://aeon.co/essays/zhuangzi-and-the-case-against-meritocracy
1•herbertl•16m ago•0 comments

Marketnow Free Skills

https://marketnow.site
1•eddyflores•17m ago•1 comments

Claw Patrol Security firewall for agents

https://clawpatrol.dev/
1•steilpass•25m ago•0 comments

Catalyst: Automating a task forever should be easier than doing it manually once

https://www.serval.com/serval-news/introducing-catalyst-automating-a-task-forever-should-be-easie...
3•emot•27m ago•0 comments

NASA makes moves to dodge costly delays on its path to build a $30B moon base

https://www.cnn.com/2026/06/30/science/nasa-moon-base-announcement
1•mooreds•27m ago•0 comments

We Live Like Royalty and Don't Know It

https://www.thenewatlantis.com/publications/we-live-like-royalty-and-dont-know-it
3•mooreds•29m ago•1 comments

Anthropic launches AI drug discovery program

https://www.google.com/url?q=https://www.cnbc.com/2026/06/30/anthropic-launches-ai-drug-discovery...
1•benchtobedside•31m ago•0 comments

STMZ Kinetic

1•Stmz_Kinetics•31m ago•0 comments

What a Russian Army Collapse Might Look Like

https://www.thebulwark.com/p/what-a-russian-army-collapse-might-look-like-ukraine-drones-logistic...
5•mooreds•36m ago•3 comments

Australia sues Amazon for making allegedly unfair contracts with subscribers

https://www.bbc.com/news/articles/c20yz9rzwy0o
2•aussieguy1234•38m ago•0 comments

Solid-state material converts sunlight into UV light

https://phys.org/news/2026-06-solid-state-material-visible-high.html
1•indynz•39m ago•0 comments

I like Claude Desktop, so I created my own

https://www.zandrey.com/blog/i-like-claude-desktop-so-i-created-my-own
2•rats•40m ago•0 comments

Show HN: Hinge for Trading

https://www.retail-intelligence.ai/
4•chips2011•41m ago•0 comments

Find Top Shopify Development Services for Your ECommerce Success

https://www.techwrath.com/top-shopify-development-services-ecommerce-success/
1•techwrath11•44m ago•0 comments

Cool way to grow early stage revenue

https://x.com/kyaagents
1•Johnall_n•44m ago•0 comments

Commonplace: Self-hosted, privacy-tiered memory for your AI agents

https://github.com/itsmeduncan/commonplace
1•itsmeduncan•47m ago•0 comments

Trump Reports at Least $1.4B in 2025 Crypto Earnings

https://www.bloomberg.com/news/articles/2026-06-30/trump-reports-at-least-1-2-billion-in-crypto-e...
7•petethomas•49m ago•0 comments

Reddit will require you to log in to use old.reddit.com

https://arstechnica.com/gadgets/2026/06/reddit-will-require-you-to-log-in-to-use-old-reddit-com/
10•righthand•50m ago•3 comments

Quran MCP

https://mcp.quran.ai/
3•abdelhousni•51m ago•0 comments

Scalable GANs with Transformers

https://arxiv.org/abs/2509.24935
1•MediaSquirrel•51m ago•0 comments

Vroni Is a Software Delegate

https://www.vroni.com/
2•doener•55m ago•0 comments

AWS Service Availability Updates

https://aws.amazon.com/about-aws/whats-new/2026/06/aws-service-availability/
3•dabinat•55m ago•0 comments

Kids online safety package clears House

https://www.nbcnews.com/tech/tech-news/kids-internet-and-digital-safety-act-passes-house-free-spe...
3•Cider9986•56m 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•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.