frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Health in the Age of Intelligence: tragedy of the cognitive commons?

https://www.learning.foundation/2026/08/09/health-workforce-development-in-the-age-of-intelligenc...
1•redasadki•22s ago•0 comments

Prime Agent: A Self-Improving RLM Agent

https://github.com/PrimeIntellect-ai/prime-agent
1•swills•2m ago•0 comments

Recursive Language Models: the paradigm of 2026

https://www.primeintellect.ai/blog/rlm
1•swills•3m ago•0 comments

Show HN: Flyn, a link shortener that counts bots separately from humans

https://www.flyn.to
1•bhakunikaran•4m ago•0 comments

How should we evaluate memory for AI agents?

https://x.com/AgentMemoryL
1•IreneAI•4m ago•0 comments

OIDC/SSO Moves to Planka Pro

https://github.com/plankanban/planka/issues/1754
1•petecooper•4m ago•0 comments

Old Rover Data Reveals Water Amounts on Mars

https://www.universetoday.com/articles/scientist-constructs-big-picture-of-mars-water-from-rover-...
1•rbanffy•6m ago•0 comments

Switching from GPT-5.5 to GPT-5.6 Made Me Less Productive

https://www.vincentschmalbach.com/gpt-5-6-made-me-less-productive/
2•vincent_s•6m ago•0 comments

Show HN: TBD: a native, minimalist macOS front end for yt-dlp

https://github.com/eliorpom-cmd/to-be-downloaded
1•eliorpom•6m ago•1 comments

Amazon plans gigantic gas power plant for new AI data center

https://www.heise.de/en/news/Amazon-plans-gigantic-gas-power-plant-for-new-AI-data-center-1140405...
1•olivier-tille•9m ago•0 comments

A global pipeline-investment boom is under way

https://www.economist.com/business/2026/08/05/a-global-pipeline-investment-boom-is-under-way
1•baxtr•9m ago•0 comments

The Argentine ranch where tech CEOs plan to ride out the apocalypse

https://www.ft.com/content/0e9c3c2e-1d67-4b70-981b-73bcdf409a6c
2•vrganj•9m ago•1 comments

MoE routing is just branch prediction

https://ssenthilnathan3.github.io/blog/branching-in-moe/
1•nathaah3•11m ago•0 comments

Influencers face backlash over Meta 'pervert glasses' content

https://www.theguardian.com/technology/2026/aug/09/i-kept-catching-people-giving-me-dirty-looks-t...
1•Markoff•13m ago•0 comments

You Are Not Late (2014)

https://kk.org/thetechnium/you-are-not-late/
2•downbad_•14m ago•0 comments

Eclipse 2026 Live

1•carlostkd•14m ago•0 comments

Harry Potter fans force reroute of £430M undersea cable to avoid Dobby's 'grave'

https://www.theguardian.com/environment/2026/aug/10/harry-potter-fans-force-relocation-of-430m-un...
1•mellosouls•15m ago•0 comments

What Is Involution?

https://skandergarroum.substack.com/p/e7fe37d3-6f20-4508-b51e-8295fc9fe910
1•chrismatic•15m ago•0 comments

Malaysia Was Confident in Its Social Media Ban, but Kids Are Still on TikTok

https://www.nytimes.com/2026/08/10/world/asia/malaysia-social-media-ban-delayed.html
1•01-_-•16m ago•0 comments

Royal commission into artificial intelligence launched in South Australia

https://www.abc.net.au/news/2026-08-10/artificial-intelligence-royal-commission-announced-in-sa/1...
1•01-_-•17m ago•0 comments

What Biology Can (and Cannot) Tell Us About Conscious Machines [video]

https://www.youtube.com/watch?v=tGA8WLUqJ8M
3•yllberisha•21m ago•1 comments

Reservation Apps Have Made Getting into a Restaurant a Nightmare

https://www.wsj.com/business/restaurant-reservation-apps-30a29e6b
1•thm•22m ago•0 comments

Remembering the pre-Google web, when search was an experiment

https://arstechnica.com/gadgets/2026/08/remembering-the-pre-google-web-when-search-was-an-experim...
1•rbanffy•23m ago•0 comments

Revolut gets French bank license

https://www.reuters.com/business/finance/revolut-gets-french-bank-license-2026-08-10/
2•matthieu_bl•25m ago•1 comments

Custom, open-source Raspberry Pi camera with a modular 3D-printed body

https://github.com/Irtaza2009/PiShot
1•Irtaza1•25m ago•0 comments

Hetzner Experiments Platform: Inference API

https://experiments.hetzner.com/docs/inference
5•sparkling•27m ago•4 comments

ICTP Announces 2026 Dirac Medal Recipients (Physics)

https://www.ictp.it/news/2026/8/ictp-announces-2026-dirac-medal-recipients
2•rramadass•28m ago•1 comments

My AI story begins in 2018

https://filtar.web.app
1•kindsocial•29m ago•0 comments

I've Built a Lot. Now I'm Looking for What's Next

https://www.vijeetshah.com/
1•vijeet_•30m ago•2 comments

Grigori Perelman Documentary (2014)[video]

https://www.youtube.com/watch?v=Ng1W2KUHI2s
2•num42•31m 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.