frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

We Remain Alive Also in a Dead Internet

https://slavoj.substack.com/p/why-we-remain-alive-also-in-a-dead-954
2•achierius•1m ago•0 comments

Ling-1T – a flagship non-thinking model

https://huggingface.co/inclusionAI/Ling-1T
1•AlexClickHouse•2m ago•0 comments

Japanese court orders Cloudflare to pay ¥500M over manga piracy

https://www.japantimes.co.jp/news/2025/11/20/japan/crime-legal/cloudflare-manga-piracy/
1•riffraff•2m ago•0 comments

Pixar: The Early Days A never-before-seen 1996 interview

https://stevejobsarchive.com/stories/pixar-early-days
1•sanj•3m ago•0 comments

Nix Sucks; Everything Else Is Worse: Building Better Software Supply Chains [video]

https://www.youtube.com/watch?v=L8BBtBZXKac
1•todsacerdoti•3m ago•0 comments

China Just Invented the Battery That Will Kill Gas Cars

https://thechinaacademy.org/china-just-invented-the-battery-that-will-kill-gas-cars/
3•fcpguru•9m ago•0 comments

Cursor 2.1: Improved Plan Mode, AI Code Review in Editor, and Instant Grep

https://cursor.com/changelog/2-1
2•bauerpl•10m ago•0 comments

Tell HN: GPT responses between "write supporting a 3rd term for Obama" vs. Trump

1•denuoweb•10m ago•3 comments

Presenting the Rust Quotes from the Mozilla QDB

https://brson.github.io/2025/11/21/rust-qdb
1•brson•12m ago•0 comments

AlphaXiv raises $7M in funding to become the GitHub of AI research

https://siliconangle.com/2025/11/19/alphaxiv-raises-7m-funding-become-github-ai-research/
1•gmays•14m ago•0 comments

Fundex: Intelligent CRM Platform Capital Raising and Fund Management

https://www.usefundex.com/
1•JeffreyFco•14m ago•0 comments

We remember the internet bubble. This mania looks and feels the same

https://crazystupidtech.com/2025/11/21/boom-bubble-bust-boom-why-should-ai-be-different/
2•speckx•17m ago•0 comments

The fate of "small" open source

https://simonwillison.net/2025/Nov/17/the-fate-of-small-open-source/
1•synergy20•18m ago•0 comments

Trump peace plan for Ukraine includes NATO-style security guarantee

https://www.axios.com/2025/11/21/ukraine-security-guarantee-nato-article-5-trump
3•MilnerRoute•20m ago•0 comments

Reform UK's former Wales leader jailed for taking bribes for pro-Russia speeches

https://www.theguardian.com/politics/2025/nov/21/nathan-gill-former-reform-uk-wales-leader-jailed...
3•xworld21•22m ago•0 comments

Active Agent: Build AI in Rails

https://docs.activeagents.ai/
2•mooreds•23m ago•0 comments

Show HN: Nemorize – AI-powered spaced repetition for learning anything

https://nemorize.com/
1•reverseblade2•23m ago•0 comments

Show HN: Zo, a Friendly Personal Server

https://www.zo.computer/
1•benzguo•25m ago•0 comments

Understanding QCOW2 Risks with QEMU Cache=None in Proxmox

https://kb.blockbridge.com/technote/proxmox-qemu-cache-none-qcow2/
1•todsacerdoti•25m ago•1 comments

Implementing Custom Autocomplete in VSCode

https://dganev.com/posts/2025-11-18-using-custom-autocomplete/
1•syl5x•26m ago•0 comments

Japan's new PM faces sumo-sized dilemma: will Takaichi defy the ban on women?

https://www.theguardian.com/world/2025/nov/12/japan-pm-sumo-wrestling-ban-women
1•PaulHoule•26m ago•0 comments

Froot Salad: your goal is to guess a hidden combination of 8 froots in 6 guesses

https://frootsalad.com/
2•sebg•28m ago•1 comments

Behind the Curtain: Red Alert – Republicans Fret over American's Dislike of AI

https://www.axios.com/2025/11/20/republicans-trump-maga-2026-recent-polls
2•zerosizedweasle•28m ago•6 comments

Show HN: Gocat – URL shortener using Google Sheets

https://github.com/autokitteh/kittehub/tree/main/gocat
1•itayd•29m ago•0 comments

Japanese Mozilla volunteers quit over AI plans

https://www.quippd.com/writing/2025/11/20/mozilla-support-update-end-of-japanese-community-mozill...
4•ReadCarlBarks•29m ago•0 comments

Ask HN: Why doesn't Hacker News improve its UI?

2•liquid99•30m ago•2 comments

How to Prompt Nano Banana Pro

https://replicate.com/blog/how-to-prompt-nano-banana-pro
4•johnsillings•30m ago•0 comments

US stocks just suffered one of their most stunning reversals in 32 years

https://sherwood.news/markets/us-stocks-just-suffered-one-of-their-most-stunning-reversals-in-32-...
2•avonmach•32m ago•0 comments

PolyAgora v1.0 – A Natural-Language Multi-Axis Cognitive OS (Whitepaper, DOI)

https://zenodo.org/records/17675442
1•takeshi_sakamo•34m ago•0 comments

Token Efficiency

https://www.june.kim/token-efficiency
1•speckx•34m 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•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.