frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tentris: A high-performance, disk-based RDF graph database

https://tentris.io/
1•sigalor•1m ago•0 comments

Can a blog post be handwritten?

https://diggingforfire.blog/posts/can-a-blog-post-be-handwritten/
1•birdculture•1m ago•0 comments

Who Cares About the Shrimp?

https://joinreboot.org/p/who-cares-about-the-shrimp
1•raybb•2m ago•0 comments

Show HN: I built self-hosted deployment automation tool for Windows and IIS

https://fdeploy.com/
1•dt3ft•3m ago•0 comments

Do You Still Need to Read AI Code?

https://adamtornhill.substack.com/p/controlling-the-uncertainty-machine
1•abrbhat•4m ago•0 comments

U.S. Rescinds Syria's Designation as a State Sponsor of Terrorism

https://www.state.gov/releases/office-of-the-spokesperson/2026/08/rescission-of-syrias-designatio...
3•x7ikmet•5m ago•0 comments

Online PS3 trophies have arrived on PC

https://blog.rpcs3.net/2026/08/25/online-ps3-trophies-support-has-arrived-on-pc/
1•cortex6429•8m ago•0 comments

A Tool to Create Moodboards

https://eightpotions.com/
1•yelboudouri•10m ago•0 comments

Ask HN: What eval harness holds up in practice, and what is still missing?

1•kiops•11m ago•0 comments

I should write more shell scripts than I do

https://utcc.utoronto.ca/~cks/space/blog/unix/WriteMoreShellScripts
1•ingve•12m ago•0 comments

Open-sourced FeelFX – a Vision+Speech powered motion graphics engine for video

https://feel-fx.vercel.app/
1•rewant•13m ago•1 comments

Free-AI-Tools-Hub.com Launch

1•horitechsolutio•14m ago•0 comments

DeepSeek V4 Flash Vision Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/deepseek-v4-flash-vision
1•theanonymousone•18m ago•0 comments

88x31 Badge Creator

https://dowdy.dev/utilities/badge-maker/
2•Peacefulz•18m ago•1 comments

How to Report a Bug to Microsoft (2017)

https://www.schveiguy.com/blog/2017/05/how-to-report-a-bug-to-microsoft/
2•thunderbong•20m ago•0 comments

Calendly WhatsApp integration on free Calendly plan

2•pocha•20m ago•1 comments

Exo: A recursive agent harness that can modify itself at runtime

https://github.com/exoharness/exo
1•lbw1215•20m ago•0 comments

The Download: kids outlearning AI, and space travel agents

https://www.technologyreview.com/2026/08/24/1142863/the-download-kids-outlearning-ai-space-travel...
1•joozio•22m ago•0 comments

Show HN: Today's Fortune Experience with Three.js

https://omikuji.hyungyu.app/
1•gusrb3164•25m ago•0 comments

CPU Shack – IBM PowerPC 615 x86 and PPC

https://www.cpushack.com/CIC/announce/1995/PowerPC615.html
2•rbanffy•27m ago•1 comments

Hot Chips 2026: IBM's first dual-ISA core

https://www.tomshardware.com/pc-components/cpus/ibms-first-dual-isa-core-natively-executes-arm-an...
1•rbanffy•28m ago•0 comments

Miraculin

https://en.wikipedia.org/wiki/Miraculin
2•soupspaces•29m ago•0 comments

Tiny World Model

https://paul.mou.dev/posts/2026-08-16-twm/
2•rcarmo•30m ago•0 comments

Built a Chrome extension to stop getting cut off by Claude

https://www.indiehackers.com/post/built-a-chrome-extension-to-stop-getting-cut-off-by-claude-70-u...
1•Anoop69_•31m ago•1 comments

The Flock on Your Block

https://flockonyourblock.com
3•tostrstrudel•35m ago•0 comments

Windows 95 released August 24, 1995

https://dfarq.homeip.net/happy-20th-birthday-to-windows-95/
2•giuliomagnifico•38m ago•0 comments

Pretendard – A system-UI alternative font for all cross-platform

https://github.com/orioncactus/pretendard
1•plaguna•39m ago•1 comments

I found an SSRF in Google's official AI tooling, and how Google reacted

1•AnasSyed28•49m ago•0 comments

Hot Chips 2026: Intel's Diamond Rapids

https://chipsandcheese.com/p/hot-chips-2026-intels-diamond-rapids
2•ingve•50m ago•0 comments

Screen time at ages 1 and 6 may matter more than parents realize

https://www.sciencedaily.com/releases/2026/08/260823094152.htm
5•01-_-•51m 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.