frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: How can we care more about fewer things?

1•robalni•2m ago•0 comments

I Let My Students Watch Me Struggle with a Masterpiece. It Changed Everything

https://www.nytimes.com/2026/08/17/opinion/higher-ed-dostoevsky-attention.html
1•sonabinu•3m ago•0 comments

On The Origin of Continents

https://worksinprogress.co/issue/on-the-origin-of-continents/
1•karakoram•3m ago•0 comments

Ask HN: If you're burning tokens at scale, what are you using them for?

2•simonw•3m ago•0 comments

Judge sets framework for Nine PBS to retrieve archival data

https://current.org/2026/08/judge-sets-framework-for-nine-pbs-to-retrieve-archival-data/
3•qingcharles•4m ago•0 comments

Session Visualization with Obsidian

https://jimmyislive.dev/posts/session-visualization/
2•jimmyislive•5m ago•0 comments

Show HN: Making every company programmable like a computer [video]

https://www.youtube.com/watch?v=JCXmYEV9OIQ&list=PLdf47QnV4_58
2•Marten42•5m ago•0 comments

The risk of weather data sabotage is rising

https://www.technologyreview.com/2026/07/17/1140622/weather-data-sabotage/
3•jonbaer•6m ago•0 comments

Show HN: Classifier and browser extension to detect rule violating HN comments

https://classify.stylometry.net/
2•costco•12m ago•0 comments

Show HN: OpenWebSearch – A router for web search indexes

https://openwebsearch.ai
2•yoeven•13m ago•1 comments

Trivially bypass text watermarks by requesting a Base64 response

1•hanneshdc•14m ago•0 comments

Covert advertising and its takeover of social media

https://outofbound.net/posts/covert-advertising/
1•naaaaaaat•14m ago•0 comments

LLM City – 3D render of all Kimi K3's weights as 2.5mm tiles

https://magik.net/llmcity/
2•devttyeu•15m ago•1 comments

Big Walk by House House

https://bigwalk.game/
1•duck•15m ago•0 comments

Ask HN: Is GitHub Fried Today?

2•johncole•16m ago•1 comments

Theory of Fluids Enters the 21st Century

https://www.quantamagazine.org/theory-of-fluids-enters-the-21st-century-20260817/
1•librasteve•19m ago•1 comments

UL-SMF – Open-source linear-complexity KV-cache compression

https://github.com/liventruth/UL-SMF-Cache-Compression
1•liventruth•20m ago•0 comments

The Primitive Puppet Show

https://spiffworks.substack.com/p/the-primitive-puppet-show
1•danfunk•20m ago•1 comments

Instagram blocked the search terms. Its algorithm serves the videos anyway

https://thenextweb.com/news/meta-glasses-harassment-videos-instagram-algorithm-recommends
1•mikelgan•20m ago•1 comments

AI Terms Explained with Simple Examples Using a Dosa Analogy

https://qainsights.com/ai-terms-explained-with-simple-examples-using-a-dosa-analogy/
1•qainsights•20m ago•1 comments

Practical multi-agent orchestration in Codex

https://twitter.com/pvncher/status/2080707291603407077
1•tosh•22m ago•0 comments

I ditched Google Maps' offline mode for this app

https://www.xda-developers.com/i-ditched-google-maps-offline-mode-for-organic-maps-and-now-i-neve...
1•DemiGuru•22m ago•0 comments

Vendo.run: Your product, shaped to every customer

https://vendo.run
1•grncdr•23m ago•0 comments

Every Disease Is a Policy Failure

https://worksinprogress.co/issue/future-of-medicine/
1•karakoram•24m ago•0 comments

Ubuntu is growing faster on Windows than on Linux to become its biggest base

https://www.xda-developers.com/ubuntu-is-growing-faster-on-windows-than-on-linux-and-it-could-soo...
2•DemiGuru•24m ago•1 comments

AI scrapers use bogus URL tracking tags to make website visits seem legit

https://disassociated.com/ai-scraper-bogus-url-tracking-tags/
1•speckx•24m ago•0 comments

Universal Health Coverage Could Save $1T and 114,000 Lives a Year, Yale Study

https://ysph.yale.edu/news-article/universal-health-coverage-could-save-one-trillion-dollars-and-...
122•karakoram•26m ago•85 comments

Show HN: AI-Generated Flash Fiction Arena

https://worldsenoughstudios.com/flash-fight/
1•eykd•26m ago•1 comments

Humanity in Open Source

https://43081j.com/2026/08/humanity-in-open-source
2•onlyspaceghost•28m ago•0 comments

Models are smart as heck but they are not wise

https://subjunct.bearblog.dev/these-models-are-smart-but-they-are-not-wise/
1•alexh•29m 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.