frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I built a tool to generate Cornell notes from YouTube videos

1•cristyg0101•1m ago•1 comments

Mojo by Example

https://ruhati.net/mojo/
1•ivell•1m ago•0 comments

Vale: Linter for Prose

https://github.com/vale-cli/vale
1•saikatsg•2m ago•0 comments

Ksumiyo – AI music generation with producer-level controls

https://www.ksumiyo.com
1•umangbhardwaj•7m ago•0 comments

The Python documentation is now available in Russian

https://blog.python.org/2026/08/the-python-documentation-is-now-available-in-russian/
1•runningmike•8m ago•1 comments

The Zen of AI

https://www.dtlarson.com/zen
1•derek-larson•9m ago•0 comments

A Test for AI Consciousness

https://gruhn.me/blog/2026-08-16/
1•saikatsg•11m ago•0 comments

Kestrel – I built a 900 KB macOS browser because Chrome ate my 8 GB Mac

https://github.com/bishosilwal/kestrel-browser
1•bisho_silwal•19m ago•0 comments

ISO 24495 [pdf]

https://cdn.standards.iteh.ai/samples/78907/d194fac21d6a45f38bfcfec9657f7498/ISO-24495-1-2023.pdf
1•saikatsg•21m ago•0 comments

Show HN: Zuse" One agent coordinating 20 Linear issues in worktrees

https://www.zuse.sh/
1•swarajbachu•22m ago•0 comments

Show HN: Sol-Luna Orchestrator – let Codex decide whether to delegate

https://www.npmjs.com/package/sol-luna-orchestrator
1•mahadansar•25m ago•0 comments

Markdown Without the Split Screen

https://medium.com/@chris.ahrweiler/markdown-without-the-split-screen-36627b3d7a55
1•docjojo•25m ago•0 comments

Show HN: Open sourcing MonsterWriter, piece by piece

https://www.monsterwriter.com/open-source.html
1•WolfOliver•27m ago•1 comments

Why aren't my two Cortex-A9 cores cache coherent?

https://thejpster.org.uk/blog/blog-2026-08-22/
2•signa11•33m ago•0 comments

Unitree G1 vs. Human: This Robot Learned Tennis by "Watching" Amateurs [video]

https://www.youtube.com/watch?v=fLp-75h-Bn8
1•mgh2•34m ago•0 comments

Steve French (SMB3/CIFSFS Linux kernel maintainer) has died

https://www.phoronix.com/news/SMB3-CIFS-Maintainer-Change
2•starkparker•35m ago•0 comments

The Asymptote of Reality: The Hard Limit of Multimodal Models

https://medium.com/@lizka.k/the-asymptote-of-reality-the-hard-limit-of-multimodal-models-c68a1a09...
1•lizakatz•39m ago•0 comments

Stalking the Wily Hacker: 40 years later – Cliff Stoll [video]

https://www.youtube.com/watch?v=656058JxTM0
2•EvanAnderson•42m ago•1 comments

Extraterritoriality

https://en.wikipedia.org/wiki/Extraterritoriality
1•peter_d_sherman•51m ago•0 comments

The only floating national park [video]

https://www.bbc.com/reel/video/p0nb7pnb/watch
1•koolhead17•51m ago•0 comments

Show HN: Ditdah – A Morse App for the Terminal

https://encse.github.io/ditdah/
1•encse•59m ago•0 comments

Opportunity Cost in Strategy Games

https://blog.idleverse.gg/opportunity-cost-in-strategy-games/
1•jonbaer•59m ago•0 comments

Unlocking hidden revenue streams with market models

https://www.technologyreview.com/2026/08/20/1142070/unlocking-hidden-revenue-streams-with-market-...
3•joozio•1h ago•0 comments

Fast is better than slow

https://dubroy.com/blog/fast-is-better-than-slow/
1•fagnerbrack•1h ago•0 comments

Show HN: 2048bid.lol – Rank your product by playing 2048

https://2048bid.lol/
2•voladd•1h ago•0 comments

Ask HN: What websites do you visit daily to stay informed?

6•chistev•1h ago•2 comments

Show HN: Leaderbid – Pay to Rank Leaderboard

https://leaderbid.lol
3•docuru•1h ago•0 comments

What Makes Australia Australia?

https://walkingtheworld.substack.com/p/what-makes-australia-australia
4•Michelangelo11•1h ago•0 comments

Simulating the Information Horizon in Chaos

https://github.com/rayrrr21/Structure-of-Reality
2•rayrrrr•1h ago•0 comments

Show HN: SubtitleGenerator - Fix subtitles with a low-confidence review queue

https://subtitlegenerator.app
2•mujia•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.