frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

King Charles has hesitations about AI

https://techcrunch.com/2026/09/17/even-the-king-of-england-has-his-hesitations-about-ai/
1•soltanov•56s ago•0 comments

The Harms of Modern Lighting and the Fight to Bring Back Incandescent Bulbs

https://www.midwesterndoctor.com/p/the-hidden-harms-of-modern-lighting
1•bilsbie•1m ago•0 comments

Show HN: Using a diffusion model to write docs quickly

https://www.cortee.ai
1•nandorb1•5m ago•0 comments

Making a game for the GBA and PC from the same codebase

https://mattgreer.dev/blog/making-a-game-for-gba-and-pc/
1•birdculture•5m ago•0 comments

lonely 20 questions, a game for people with no friends

https://20questions.foxmoss.com/
1•foxmoss•5m ago•0 comments

Don't Trust the Super-App: A Case Study of Russia's Max

https://arxiv.org/abs/2609.11814
2•pchr8•7m ago•0 comments

Does this mean it's fine to use Claude subscriptions with third party harnesses?

2•jakemanger•8m ago•0 comments

New cat species identified for the first time in a century

https://www.cbc.ca/news/science/tilcayo-tiger-cat-new-species-9.7349140
4•rdmuser•12m ago•1 comments

Moving Share Homes for Ukraine data's code to open source

https://mhclgdigital.blog.gov.uk/2026/09/18/moving-share-homes-for-ukraine-datas-code-to-open-sou...
1•edent•12m ago•0 comments

Grep your Claude Code/Codex history and jump back into the exact session

1•ayushgzip•14m ago•0 comments

Hjfjhg

1•MgAungPhyoThu•14m ago•0 comments

Building an Integrated Vector Database System in PostgreSQL

https://arxiv.org/abs/2608.15994
1•pykello•15m ago•0 comments

Albanins discovering the long-banned car (1992)

https://www.washingtonpost.com/archive/politics/1992/03/29/albanians-discovering-the-long-banned-...
1•edward•15m ago•1 comments

Backgrounding My Way to Japan – How to learn truth from fiction

https://aethermug.com/posts/backgrounding
1•mrcgnc•15m ago•0 comments

Show HN: Jawz – macro market state for AI agents, now a ChatGPT app (no login)

https://jawz.ai
1•nunespv•15m ago•0 comments

Query Plan Rewriting in PostgreSQL

https://theconsensus.dev/p/2026/09/13/query-plan-rewriting-in-postgresql.html
3•eatonphil•19m ago•0 comments

If materialism is true, the United States is probably conscious

https://www.jstor.org/stable/24704177
1•ashergill•20m ago•0 comments

Deploying Monorepos Sucks

https://dominikkoch.dev/blog/deploying-monorepos-sucks
2•DominikKoch•21m ago•0 comments

NeverLose – Crash-proof any Python function with one decorator

https://github.com/neverlose-io/neverlose
2•NeverLose_io•24m ago•0 comments

The 2.5-hour AI-generated Odyssey movie is 2.5 hours too long

https://www.theverge.com/entertainment/996499/ai-odyssey-movie-review
1•robenkleene•25m ago•0 comments

RepoGuard – CLI to stop Cursor and Copilot from bypassing architecture

https://github.com/taylormatematica-beep/repoguard
1•taylor_matemati•27m ago•0 comments

Show HN: OpsGraph – evidence-first PostgreSQL investigations

https://opsgraph-site-seven.vercel.app/
2•arittrabag•28m ago•0 comments

Show HN: I built a small tool to turn my essays into visual stories for YouTube [video]

https://www.youtube.com/watch?v=Sv1u6Oeum5k
1•devrob•28m ago•0 comments

Are AIs Still Struggling with CAPTCHAs?

https://www.schneier.com/blog/archives/2026/09/are-ais-still-struggling-with-captchas.html
1•danaris•28m ago•0 comments

Show HN: Qpilot – run your manual test cases without writing test code

https://github.com/broxhq/qpilot
2•broxhq•29m ago•0 comments

Allelify: Run commands in parallel while storing logs in /tmp to limit noise

https://www.npmjs.com/package/allelify
2•vismit2000•30m ago•0 comments

Grandmother falsely accused of bank theft after alleged AI facial recognition

https://abcnews.com/US/grandmother-falsely-accused-bank-theft-after-alleged-ai/story?id=136536444
1•OutOfHere•31m ago•0 comments

Models train, from gradient descent to Adam

https://stochastic.blog/how-models-train-from-gradient-descent-to-adam/
1•Anon84•31m ago•0 comments

I Thought Running to Christ Will Save Me from My Demons

https://etechx.co.ke/i-thought-running-to-christ-will-save-me-from-my-demons
2•ndegekmw•31m ago•0 comments

Auditing in the age of (good enough) AI

https://blog.trailofbits.com/2026/09/18/auditing-in-the-age-of-good-enough-ai/
2•ingve•33m 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.