frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

GameSentenceMiner – An All-in-One toolkit for learning Languages through games

https://github.com/bpwhelan/GameSentenceMiner
1•bbno4•53s ago•0 comments

Quantum computing production expands with Shenzhen's factory project in China

https://dig.watch/updates/quantum-computing-production-expands-with-shenzhens-factory-project-in-...
1•rguiscard•58s ago•0 comments

Stanford Agentic Reviewer

https://paperreview.ai/
1•kpw94•3m ago•0 comments

Webfoundry gets GPT 5.1 Codex HTML generation through voice assistant

https://www.webfoundry.app/
1•guiprav•6m ago•1 comments

The price of gold: In Venezuela, mining threatens Indigenous Pemón

https://news.mongabay.com/2025/11/the-price-of-gold-in-venezuela-mining-threatens-indigenous-pemon/
1•PaulHoule•9m ago•0 comments

Linux compatible reliable C# boost for NATS messaging

https://github.com/nats-io/nats.net
1•northlondoner•10m ago•0 comments

Show HN: NBPro – NanoBanana Pro prompt library (100 prompts)

https://nbpro.org/
1•qzcanoe•12m ago•0 comments

Rare Layoffs at Apple Impact Dozens in Sales Roles

https://www.macrumors.com/2025/11/24/apple-eliminates-sales-roles/
1•mgh2•13m ago•0 comments

Towards Better Word

https://aartaka.me/better-word.html
1•freediver•14m ago•0 comments

Nvidia's rebuttal to Michael Burry's criticism

https://www.businessinsider.com/read-nvidia-rebuttal-michael-burry-criticism-other-claims-ai-boom...
1•mgh2•16m ago•0 comments

MetaOCaml: Ten Years Later System Description

https://www.sciencedirect.com/science/article/pii/S0167642325001364
1•matt_d•16m ago•0 comments

Seekdb: The AI-Native Search Database

https://github.com/oceanbase/seekdb
1•zyh888•18m ago•0 comments

The lesson I learnt in the USSR that still fools millions

https://youtu.be/gI1VcTVmqA8
1•burnt-resistor•19m ago•0 comments

Show HN: I Built a Small Startup Idea Validation Platform

https://b4zero.vercel.app/
1•mhpro15•21m ago•0 comments

Four Top Contenders at Apple to Succeed Tim Cook

https://www.wsj.com/tech/apple-ceo-tim-cook-successors-67b1bf84
1•sebastian_z•23m ago•0 comments

China's Xi Jinping Raises Future of Taiwan in Call with Donald Trump

https://www.theguardian.com/world/2025/nov/25/china-taiwan-xi-jinping-call-with-donald-trump
3•drivebyhooting•23m ago•0 comments

CS 61A: Structure and Interpretation of Computer Programs

https://cs61a.org
1•swatson741•24m ago•0 comments

Ask HN: MSRC silently patched my report (Status: "Complete") but denied bounty?

2•mambazz•25m ago•1 comments

Google is bringing Fuchsia OS to Android devices in pKVM microfuchsia VM (2024)

https://www.androidauthority.com/microfuchsia-on-android-3457788/
1•transpute•26m ago•1 comments

How should we self-assemble and launch "Naybor SOS" (Neighbor 911)?

https://www.neighbor911.us
1•davidharmsless•32m ago•0 comments

I built a Linux "recovery drive" that doubles as persistent portable workstation

https://www.xda-developers.com/linux-recovery-drive-persistent-portable-workstation/
3•teleforce•32m ago•0 comments

Cooking in Maximum Security

https://pluralistic.net/2025/11/24/moca-moka/#culinary-apollo-13
1•gessha•32m ago•0 comments

Codex can read sensitive files outside the CWD without approval

1•thomas34298•32m ago•0 comments

The US is on a dangerous course without AI regulation

https://proton.me/blog/ai-regulation-us
3•jethronethro•33m ago•0 comments

Show HN: Image to STL – Free AI-powered image to 3D printable model converter

https://imagetostl.org
2•Ethanya•34m ago•0 comments

PHP 8.5.0 / 8.4.15 / 8.3.28 for PHP Devserver

https://www.easyphp.org/
1•codacode•38m ago•0 comments

DragonFire laser to be fitted to Royal Navy ships after acing drone-zapping

https://www.theregister.com/2025/11/24/royal_navy_dragonfire_laser/
3•perihelions•39m ago•0 comments

Lecithin

https://en.wikipedia.org/wiki/Lecithin
2•perihelions•40m ago•0 comments

GPT-5 helped mathematician Ernest Ryu solve a 40-year-old open problem

https://openai.com/index/gpt-5-mathematical-discovery/
2•soheilpro•44m ago•1 comments

New "Generation Y" Hierarchy of Root and Intermediate Certificates

https://letsencrypt.org/2025/11/24/gen-y-hierarchy.html
1•soheilpro•44m 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.