frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Did the Giant Heads of Easter Island Once Walk?

https://www.nytimes.com/2025/11/26/science/archaeology-easter-island-rapa-nui.html
3•Stratoscope•7m ago•1 comments

Americans are holding onto devices longer than ever and it's costing the economy

https://www.cnbc.com/2025/11/23/how-device-hoarding-by-americans-is-costing-economy.html
1•cardamomo•7m ago•0 comments

Ask HN: Do you use your phone as hotel/free WiFi condom for laptops?

1•ebfe1•12m ago•1 comments

Apple projected to beat Samsung in smartphone shipments first time since 2011

https://www.foxbusiness.com/markets/apple-projected-beat-samsung-smartphone-shipments-first-time-...
1•andsoitis•13m ago•0 comments

A neuropsychology of political orientation: ideology in patients w lesions

https://pmc.ncbi.nlm.nih.gov/articles/PMC7935085/
1•DrierCycle•18m ago•2 comments

Why Use React?

https://adactio.com/journal/22265
1•nnx•24m ago•0 comments

Show HN: Non-Custodial Cryptocurrency Payment Gateway

https://coinpayportal.com
2•cranberryturkey•29m ago•1 comments

The Racist, AI-Generated Future of Entertainment

https://www.theatlantic.com/culture/2025/11/will-stancil-show-ai/685058/
4•jdkee•33m ago•4 comments

Tim Sweeney thinks Steam should stop labelling games as being made with AI

https://www.pcgamer.com/software/ai/epic-boss-tim-sweeney-thinks-stores-like-steam-should-stop-la...
1•evo_9•37m ago•0 comments

CoinTracker Third-party security incident (Mixpanel)

3•dotmanish•37m ago•0 comments

Can Management Be Outsourced?

1•ymanagers•40m ago•0 comments

Google Hotels API

https://github.com/johnisanerd/Apify-Google-Hotels-API
1•johncole•43m ago•0 comments

Show HN: I built a D2C supply chain for my village's Makhana farmers using Bolt

https://earthborn-barsoi.vercel.app/
1•Vikkyv•44m ago•1 comments

Cryo-electron microscopy shows how statins harm muscles

https://medicalxpress.com/news/2025-11-statins-muscles.html
3•walterbell•45m ago•0 comments

People as Foundation: The Productive Capacity Theory of Money – Part 1

https://danieltan.weblog.lol/2025/11/people-as-foundation-the-productive-capacity-theory-of-money...
1•danieltanfh95•49m ago•0 comments

My Idea of What's in the Female Erotica Section of the Bookstore

https://markusstrasser.org/smut
2•eatitraw•57m ago•0 comments

Show HN: Upgrade Charm Crush with search in 9 lines

https://anduil.neocities.org/blog/?page=mcp
1•andai•58m ago•0 comments

Show HN: Turkey Time – A little game about cooking turkey

https://turkey-time.replit.app
1•rootforce•58m ago•0 comments

DIY NAS: 2026 Edition

https://blog.briancmoses.com/2025/11/diy-nas-2026-edition.html
21•sashk•1h ago•10 comments

Graph Algorithms in Rayon

https://davidlattimore.github.io/posts/2025/11/27/graph-algorithms-in-rayon.html
2•todsacerdoti•1h ago•0 comments

Watch and

https://u.fsf.org/escape-to-freedom
1•genxlaura•1h ago•0 comments

The Zero-Width Space-Place

https://starikov.co/zero-width-space/
1•thunderbong•1h ago•0 comments

Green Card Interviews End in Handcuffs for Spouses of U.S. Citizens

https://www.nytimes.com/2025/11/26/us/trump-green-card-interview-arrests.html
50•nxobject•1h ago•8 comments

The Legend of Kipp Hickman

https://www.feistyduck.com/newsletter/issue_131_the_legend_of_kipp_hickman
1•smitty1e•1h ago•0 comments

Vibe coding: What is it good for? Absolutely nothing

https://www.theregister.com/2025/11/24/opinion_column_vibe_coding/
4•galaxyLogic•1h ago•3 comments

CDE – Common Desktop Environment – Release 2.5.3

https://sourceforge.net/p/cdesktopenv/code/ci/e945fc8b08a4882769e29f20fbbb29afe6019da1/
2•marcodiego•1h ago•0 comments

ArXiv Monthly Submissions Chart

https://arxiv.org/stats/monthly_submissions
1•highfrequency•1h ago•0 comments

'The narwhals stop calling': how noise from ships silences wildlife in Arctic

https://www.theguardian.com/environment/2025/nov/25/shipping-noise-arctic-whales-narwhals-sound-q...
1•andsoitis•1h ago•0 comments

Explore the Independent Web

https://ghost.org/changelog/ghost-explore/
2•gpi•1h ago•1 comments

Building a Home Assistant app for iOS for ancient iPads stuck on 9.3.5

https://www.markcipolla.com/homebutler
2•markcipolla•1h ago•1 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•7mo ago

Comments

palata•7mo 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•7mo 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•7mo 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•7mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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.