frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I made a flight simulator, except you're just a passenger

https://inflightsimulator.com
1•rkotcher•2m ago•0 comments

AI Myth – College Educate, Benefit from AI – Morgan Stanley

https://finvaulta.com/share/N4FZt0B1rE2bxHuo1rAjEg
1•campervans•2m ago•1 comments

Roff (Software)

https://en.wikipedia.org/wiki/Roff_(software)
1•vinhnx•4m ago•0 comments

My Complete Agentic Coding Setup Tech Stack Feb 21 2026 – Updated Jun 29 2026

https://hboon.com/my-complete-agentic-coding-setup-and-tech-stack/
1•Bluestein•11m ago•0 comments

Claude and I made a MAME attact mode app

https://www.coldbeamgames.com/ghostcade.html
1•Stargx•13m ago•0 comments

Ask HN: Can't input "double quotes" in Gmail web?

1•dgan•13m ago•0 comments

God Help Us, Let's Try to Learn About Mechanistic Interpretability Techniques

https://www.astralcodexten.com/p/god-help-us-lets-try-to-learn-about
2•AriFordsham•13m ago•0 comments

Can Europe build a competitive polysilicon industry?

https://www.pv-magazine.com/2026/05/20/can-europe-build-a-competitive-polysilicon-industry/
1•leonidasrup•14m ago•0 comments

Let your coding agents exchange nofollow backlinks

https://getlinkbunny.com/
2•Bluestein•14m ago•0 comments

How the Clash Between Money and Safety Created a Monumental Crisis for AI

https://www.wsj.com/tech/ai/openai-anthropic-crisis-money-safety-847bc1d6
2•thm•15m ago•0 comments

OpenAI Pauses IPO Plans Amid AI Safety Worries

https://www.pymnts.com/news/2026/openai-pauses-ipo-plans-amid-ai-safety-worries/
2•thm•16m ago•0 comments

Show HN: Blur. Sharpen. Repeat. Get Turing Patterns

https://www.maximevidal.com/turing-patterns
1•vmaxmc2•19m ago•0 comments

WebP

https://en.wikipedia.org/wiki/WebP
1•tosh•19m ago•0 comments

Whoop replacement noop 11.7 released

https://github.com/ryanbr/noop/releases
1•mp3geek•19m ago•0 comments

HN Is Getting Worse

5•ankonai•23m ago•3 comments

Worlds Upon The Wind: a peaceful roguelite deckbuilder about resettling a world

https://github.com/max99x/wutw-public
1•rdmuser•24m ago•1 comments

Show HN: Openstatus/health tree-shakable health endpoints for JavaScript servers

https://github.com/openstatusHQ/health
2•tibozaurus•25m ago•0 comments

The Archival Dystopia of Blade Runner 2049 and Aeon Flux

https://www.pop-archives.com/post/pop-archives-deep-thoughts-the-archival-dystopia-of-blade-runne...
2•october8140•33m ago•0 comments

When code is a maze, smart developers make maps

https://medium.com/@simonsmartiom/when-code-is-a-maze-smart-developers-make-maps-fbc452a48c1b
1•boxesnlines•35m ago•0 comments

Are generative models the next paintbrush?

https://wasi0013.com/2026/09/14/are-generative-models-the-next-paintbrush/
2•wasi0013•37m ago•0 comments

Immiserizing Growth

https://en.wikipedia.org/wiki/Immiserizing_growth
3•motionlessveloc•38m ago•0 comments

Kache v0.21:caching C/C++ links,nvcc objects,and the Clang-CL flags Firefox uses

https://github.com/kunobi-ninja/kache/releases/tag/v0.21.0
1•ainhoaa•41m ago•0 comments

A 386 PC for Your RP2350

https://github.com/rh1tech/frank-386
3•SamuraiLion•45m ago•0 comments

EuroBirdPortal – Live bird movements across Europe

https://www.eurobirdportal.org/ebp/en/
2•NKosmatos•45m ago•0 comments

Sharden: A mineable coin for paying miners

4•Shardhash•47m ago•0 comments

Reverse Engineering Google's TPUs

https://gherkinlabs.com/reverse-engineering-google-tpus
3•goldenarm•49m ago•0 comments

Disclock – Discord timestamp converter with timezone preview

https://disclock.io/
1•louisdc•52m ago•0 comments

Recursive Self-Improvement (RSI)

https://github.com/theseus-labs-rsi/awesome-rsi
1•jonbaer•53m ago•0 comments

This Year I Vibecoded My Taxes

https://capocasa.dev/this-year-i-vibecoded-my-taxes
1•capocasa•54m ago•0 comments

Ask HN: What do you run behind Kafka for log collection and search?

1•whsoul•56m 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.