frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Timeline Shift AI – An AI self-reflection companion for difficult decisions

https://ai.thetimelineshift.co.uk/beta-access.html
1•seededhealthltd•1m ago•0 comments

Dark Hours

https://darkhours.io
1•jparise•2m ago•0 comments

Nirmal Purja, Renowned Mountaineer, Dies at 43 After Pakistan Avalanche

https://www.nytimes.com/2026/08/01/world/asia/nirmal-purja-dead-pakistan-avalanche.html
1•whack•7m ago•0 comments

Plants and their ants: When flora and fauna team up

https://knowablemagazine.org/content/article/living-world/2026/ants-and-plants-keep-symbiotic-par...
2•marojejian•10m ago•1 comments

the death of uppercase: a bet I made around 20 years ago (that i lost)

https://thepeoplesrepublicofcouch.org/the-bet/
1•gaws•11m ago•0 comments

AI will always find a difference

1•ghassenfaidi•11m ago•0 comments

China's tech advances are causing chaos from Silicon Valley to the White House

https://www.theguardian.com/technology/2026/aug/01/china-silicon-valley-white-house
1•Teever•12m ago•0 comments

Suffering

https://www.aaronbergman.net/p/on-suffering
1•barry-cotter•15m ago•0 comments

Jaron Lanier and DeGrasse Tyson on "There Is No AI"

https://www.youtube.com/watch?v=a_ZKYH8v_do
2•lifeisstillgood•23m ago•1 comments

The brief life and sudden death of Zyzz

https://www.theguardian.com/film/2026/aug/02/the-brief-life-and-sudden-death-of-zyzz-why-did-the-...
2•mellosouls•28m ago•1 comments

Walsh: Multi-agent research pipeline with risk manager that can veto trades

https://github.com/ats4321/walsh
1•atshu21•29m ago•0 comments

Dreamup+|+Dang.ai

https://dang.ai/tool/ai-art-generation-dreamup
1•thestbyguy•32m ago•0 comments

Ask HN: I still don't understand why AI agents need "skills"

2•skeptic_ai•34m ago•2 comments

Ablative Software

https://conikeec.substack.com/p/ablative-software
1•conikeec•35m ago•0 comments

Send and Pretend: Exploiting Transcript Consistency Issues in E2EE Group Chats

https://arxiv.org/abs/2607.27510
1•sbulaev•36m ago•0 comments

The Greenhouse and the Lens: Two Modes of Agentic AI Work

https://www.brethorsting.com/blog/2026/08/the-greenhouse-and-the-lens-two-modes-of-agentic-ai-work/
2•aaronbrethorst•37m ago•0 comments

Android SystemUI Crash-loop from a single Google Drive one link (STA whitepaper)

https://lostmon.blogspot.com/2026/07/resilience-gaps-in-android-ipc.html
1•Lostmon•41m ago•0 comments

Kobuk the Destroyer – Tales from the Wild, Unseen World of Test Engineering

https://wwnorton.com/books/9781324051299
2•ripe•41m ago•1 comments

Why Is Europe Burning?

https://www.newyorker.com/news/the-lede/why-is-europe-burning
2•littlexsparkee•42m ago•0 comments

European Search Perspective: Creating a new foundation for digital pluralism

https://www.eu-searchperspective.com/
1•TMWNN•43m ago•1 comments

Genomic findings and their implications for the evolutionary social sciences

https://www.sciencedirect.com/science/article/pii/S1090513824000722?via%3Dihub
2•geneticdrifts•50m ago•0 comments

A Uiua Type System

https://www.uiua.org/blog/a-uiua-type-system
2•xyzsparetimexyz•53m ago•1 comments

The Kurzgesagt Situation is Insane [video]

https://www.youtube.com/watch?v=OX1yHmeLPy8
3•julkali•54m ago•3 comments

RFC 10015: Deprecating Obsolete Key Exchange Methods in TLS 1.2 and DTLS 1.2

https://www.rfc-editor.org/rfc/rfc10015.html
6•Jimmc414•58m ago•0 comments

Ask HN: Anyone still do work on Intel Macs?

3•senor_digimon•59m ago•2 comments

Moore's Law for Everything (2021)

https://moores.samaltman.com/
3•eatitraw•59m ago•0 comments

Nomophobia

https://en.wikipedia.org/wiki/Nomophobia
2•andersonmvd•1h ago•1 comments

Surface – KDL Specification Format – Experimental

https://github.com/etoxin/surface
2•etoxin•1h ago•1 comments

New Rule: Commie by Your Name – Real Time with Bill Maher [video]

https://www.youtube.com/watch?v=dRIjYHVh5kI
3•Bender•1h ago•2 comments

A Taxonomy of R&D Orgs

https://analogue.press/p/a-taxonomy-of-r-and-d-orgs
2•arbesman•1h 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.