frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Work on the Fairphone 6 is turning it into the most modern pmOS smartphone

https://catcrafts.net/posts
1•pizzaiolo•6m ago•0 comments

Show HN: Proxy-or-Not, Proxy Detector

https://arcades.click/proxy-or-not
1•jwally•6m ago•0 comments

Adobe, RapidRAW, and the End of Selling Software as a Product

https://danunparsed.com/p/rapidraw-adobe
1•sambellll•8m ago•0 comments

Suggest some uncensored AI for photo genaration?

3•tafijul•11m ago•0 comments

A Lost Civilization Is Baffling Experts and Rewriting China's Origin Story

https://www.wsj.com/world/china/a-lost-civilization-is-baffling-experts-and-rewriting-chinas-orig...
1•cwwc•11m ago•0 comments

Free ATS keyword checker after friends sprayed 200 resumes

https://medium.com/@grhawk/i-built-a-free-ats-keyword-checker-after-watching-friei-built-a-free-a...
1•applyboost•15m ago•0 comments

Moscow Is Speaking [video]

https://www.youtube.com/watch?v=_d1AmMt6A9s
1•consumer451•17m ago•0 comments

Counting the Days, Revisited

https://dotat.at/@/2026-08-09-rata-die.html
1•fanf2•22m ago•0 comments

Ask HN: Anyone that has built a marketplace, what has been your experience?

2•mfisc_019•26m ago•2 comments

Show HN: OpsCart – Read-only Kubernetes triage with incident history

https://github.com/opscart/opscart-k8s-watcher
2•opscart•29m ago•0 comments

Turn messy AliExpress dropshipping listings into clean products with AI

https://importer.omniicore.com/
2•omniicore•43m ago•1 comments

A Comprehensive Guide to InnoDB Locking

https://jahfer.com/posts/innodb-locks/
2•shay_ker•47m ago•0 comments

ChatGPT starts blocking direct requests to copy an author's style

https://arstechnica.com/ai/2026/07/chatgpt-stops-cloning-famous-writers-voices-but-may-capture-a-...
6•Eloissssss•52m ago•0 comments

Six Little Lines of Fail [video]

https://www.youtube.com/watch?v=VvUdvte1V3s
2•ruckfool•53m ago•0 comments

Waits: Arthur Samuel's Checkers

https://timereshared.com/waits-samuel-checkers/
2•abrax3141•54m ago•0 comments

Interview with Amit Patel (Red Blob Games) on Making Things

https://digitalseams.com/blog/amit-patel-on-making-things
2•bobbiechen•57m ago•0 comments

The phone book that led us to Assad's spy chief in hiding

https://www.bbc.com/news/articles/c4gyrzn8p94o
12•cwwc•58m ago•1 comments

Model Genome: Fingerprinting Whether an LLM Was Trained from Scratch or Derived

https://huggingface.co/blog/mayafree/model-dna
2•prof_ai_cn•1h ago•0 comments

Opus 4.6 Was the Last Coding Model That Changed How I Work

https://awaitinginput.substack.com/p/opus-46-was-the-last-coding-model
3•bsovran•1h ago•0 comments

A weapon that could help red squirrels in their Battle of Britain

https://www.economist.com/britain/2026/01/10/a-weapon-that-could-help-red-squirrels-in-their-batt...
3•geneticdrifts•1h ago•0 comments

"Coding is solved" misses the point

https://blog.mastykarz.nl/coding-is-solved-misses-the-point/
3•listless•1h ago•0 comments

Incentives Are for Losers

https://www.experimental-history.com/p/incentives-are-for-losers
4•bkudria•1h ago•0 comments

Ask HN: What is your database size

2•kureikain•1h ago•1 comments

The State of Google

2•3dedb728-3f77•1h ago•1 comments

I built a video editor in Rust with extensive AI-powered features

https://github.com/heng30/wayshot
2•heng30•1h ago•0 comments

Aftermath of Catastrophic Fires in Spokane

https://www.kuow.org/climate/2026-08-07/its-apocalyptic-a-look-at-the-aftermath-of-catastrophic-f...
3•andsoitis•1h ago•0 comments

Archive of Animal Photography Reveals 18,000 Species and Counting

https://www.smithsonianmag.com/science-nature/this-amazing-archive-of-animal-photography-reveals-...
3•pseudolus•1h ago•0 comments

A viral mosquito-killing laser device could be coming to the U.S.

https://www.npr.org/2026/06/07/nx-s1-5839969/a-viral-mosquito-killing-laser-device-could-be-comin...
9•toomuchtodo•1h ago•3 comments

The AI Apocalypse Is Here

https://www.compactmag.com/article/the-ai-apocalypse-is-already-here/
27•reasonableklout•1h ago•18 comments

Show HN: Aidress – LangChain integration for cross-agent discovery and trust

https://docs.langchain.com/oss/python/integrations/tools
2•mehulv24•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.