frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A cozy home for your Goodreads books

https://reading-room.transitivebullsh.it
1•transitivebs•1m ago•0 comments

US Reading Scores Plummet on Global Exam

https://www.nytimes.com/2026/09/08/us/us-reading-test-scores-pisa.html
2•toomuchtodo•2m ago•1 comments

PyPI Blog: Incident File Hosting Errors

https://blog.pypi.org/posts/2026-09-08-file-hosting-errors/
2•miketheman•3m ago•0 comments

OpenAI stole mathematicians' private research from their own Codex chats

https://www.reddit.com/r/technology/comments/1waoiai/report_openai_stole_mathematicians_private/
3•nreece•3m ago•0 comments

I think Astra is absolutely amazing but I'm back to 5.6 for software engineering

https://twitter.com/mitsuhiko/status/2097318251403395471
3•tosh•4m ago•0 comments

List of mathematical discoveries by artificial intelligence

https://en.wikipedia.org/wiki/List_of_mathematical_discoveries_by_artificial_intelligence
1•frozenseven•4m ago•0 comments

Paramount Caught Using 'Astroturf' Group to Drum Up Fake Support for Merger

https://www.techdirt.com/2026/09/08/paramount-caught-using-astroturf-group-to-drum-up-fake-suppor...
2•hn_acker•5m ago•0 comments

The far right's win in Germany is sending a chill through Europe's establishment

https://www.cnn.com/2026/09/08/europe/germany-far-right-afd-election-europe-intl
3•firefax•6m ago•0 comments

Ask HN: Anyone using dictation with coding agents?

1•TomEleff•6m ago•0 comments

Does an AI have mercy in games? Fable 5.1 vs. GPT-6

https://paradise.glyphai.co/research/mercy/
1•simplybeing1•7m ago•1 comments

Show HN: Accounting and inventory software you can pip install

https://github.com/celerp/celerp
1•ngsevers•7m ago•1 comments

Show HN: Founder.best – A place for founders to keep their products discoverable

https://www.founder.best
1•NimeshikaP•8m ago•0 comments

Write better with Claude Fable 5.1

https://academy.dair.ai/resources/write-better-with-claude-fable-5-1
1•omarsar•9m ago•0 comments

The little holes in your bread are telling you something

https://edconway.substack.com/p/the-little-holes-in-your-bread-are
2•baud147258•11m ago•0 comments

DirectX Support Promoted to Official Target Within LLVM

https://www.phoronix.com/news/LLVM-DirectX-Backend-Official
1•Alephinitesimal•11m ago•0 comments

Cells Vivarium Simulator

https://mrqzzz.github.io/cells/
3•mrqzzz•11m ago•1 comments

Agent pasted a fake captcha into Terminal, it lived on my Mac for 30 days

https://medium.com/@gvschaitanya/i-pasted-a-captcha-into-terminal-it-lived-on-my-mac-for-30-days-...
1•gatreddi•12m ago•0 comments

Who Built AI? A Data Story

https://tylerberbert.com/whobuiltai
1•tbwriting•13m ago•0 comments

Slim-Vim: Vim as one translation unit

https://github.com/arbace/slim-vim
1•liszper•13m ago•0 comments

Ask HN: Anyone want my realtime-snapshots dataset of Hacker News?

https://track-hacker-news.com/
2•namiwang•13m ago•1 comments

A 1-frame billboard where visitors outbid each other in real time)

https://reigningfor.lol/
1•rodriguezlizarr•13m ago•0 comments

Ciphers with Arbitrary Finite Domains (2002) [pdf]

https://www.cs.ucdavis.edu/~rogaway/papers/subset.pdf
1•wslh•13m ago•0 comments

To write non-fiction, draw the trunk, then the rest of the tree

https://devz.cl/posts/how-to-write/
3•DanielVZ•14m ago•0 comments

I Asked 100 Agents to Hack Me

https://blog.sshh.io/p/i-asked-100-agents-to-hack-me
1•sshh12•15m ago•0 comments

The Growing Proof That Autonomous Cars Save Lives

https://spectrum.ieee.org/are-self-driving-cars-safe
1•Brajeshwar•17m ago•0 comments

An overview of how our family is prepared

https://michaelharley.net/posts/2026/08/29/an-overview-of-how-our-family-is-prepared/
10•surprisetalk•17m ago•3 comments

Show HN: ChronoVec, a versioned vector database for data that changes

https://github.com/mchl-labs/chronovec
1•mchl-labs•18m ago•0 comments

In-browser LaTeX parser written in Rust

https://faster-latex-demo.pages.dev/
2•matthova•21m ago•0 comments

Show HN: SiteTell: finds the areas of your site that read as AI-generic

https://www.getsitetell.com/
1•NotGeorgeHere•22m ago•0 comments

Apple 'Whistle Blower' on Israel

https://www.youtube.com/watch?v=vc-iH5GEPJ8
2•tachyons•22m 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.