frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Gemini 3 found a stack smash in a hex dump that I missed

1•leo_e•46s ago•0 comments

Quantica: A Python-like language with native quantum computing built in

https://github.com/Quantica-Foundation/quantica-lang
1•gurukasi2006•6m ago•0 comments

My car charger can boil water really fast [video]

https://www.youtube.com/watch?v=INZybkX8tLI
1•zdw•7m ago•0 comments

What's in a Button?

https://belkadan.com/blog/2025/11/Whats-in-a-Button/
2•todsacerdoti•12m ago•0 comments

Nvidia reportedly no longer supplying VRAM to GPU partners due to memory crunch

https://www.tomshardware.com/pc-components/gpus/nvidia-reportedly-no-longer-supplying-vram-to-its...
1•lysp•13m ago•0 comments

Jeffrey Epstein Was the Unofficial Advice Columnist for the Elites

https://defector.com/jeffrey-epstein-was-the-unofficial-advice-columnist-for-the-elites
1•tartoran•16m ago•0 comments

Former MIT scientist funded by Epstein made racist and sexist claims in private

http://www.bostonglobe.com/2025/11/21/metro/epstein-emails-mit-joscha-bach/
1•tartoran•17m ago•0 comments

Investigating a Possible Scammer in Journalism's AI Era

https://thelocal.to/investigating-scam-journalism-ai/
1•pseudolus•24m ago•0 comments

Ask HN: What's the point of starting a startup if the failure rate is so high?

2•anon115•25m ago•5 comments

Can RGB light strips produce 16M colors?

2•emmasuntech•32m ago•0 comments

Show HN: I built a website for games that catch my eye

https://alistof.games
1•RaycatRakittra•35m ago•0 comments

Show HN: RcloneView – a GUI for rclone with 50% Black Friday deal

https://rcloneview.com/
1•newclone•37m ago•0 comments

Software Freedom Conservancy 2025 Fundraiser launched with largest match yet

https://sfconservancy.org/news/2025/nov/26/2025-fundraiser-launched-with-largest-match-yet/
1•pabs3•47m ago•0 comments

Calcium Deposits in the Arteries Not Always a Worry (2023)

https://www.mcgill.ca/oss/article/medical/calcium-deposits-arteries-not-always-worry
1•stacktrust•53m ago•0 comments

Former Google chief accused of spying on employees through account 'backdoor'

https://www.latimes.com/business/story/2025-11-20/former-google-chief-accused-of-spying-on-employ...
3•perihelions•54m ago•1 comments

Clog and Clog Builder 2.4

https://github.com/rabbibotton/clog/releases/tag/v2.4
3•mike_ivanov•59m ago•1 comments

A Boy They Called a Horse

https://biblicalman.substack.com/p/the-boy-they-called-a-horse
2•koolhead17•1h ago•0 comments

Secure Programming with Static Analysis [pdf]

https://ptgmedia.pearsoncmg.com/images/9780321424778/samplepages/9780321424778.pdf
1•ibobev•1h ago•0 comments

Eric Schmidt's ex-mistress sues former Google CEO over alleged stalking, abuse

https://nypost.com/2025/10/20/business/eric-schmidts-ex-mistress-31-sues-former-google-ceo-70-ove...
2•perihelions•1h ago•0 comments

Baikonur launch pad damaged after Russian Soyuz launch to ISS

https://www.aol.com/articles/baikonur-launch-pad-damaged-russian-210512525.html
3•thunderbong•1h ago•1 comments

HunyuanVideo 1.5: High-Quality AI Video Generation with Stable Motion

https://www.hunyuanvideox.com
1•Viaya•1h ago•1 comments

How a bunch of Starbucks baristas built a labor movement (2022)

https://www.vox.com/recode/22993509/starbucks-successful-union-drive
1•thunderbong•1h ago•0 comments

Intellect-3: A 100B+ MoE trained with large-scale RL

https://www.primeintellect.ai/blog/intellect-3
1•anacleto•1h ago•1 comments

Taste and Adjust

https://blog.nilenso.com/blog/2025/11/26/how-to-work-with-product-taste-and-adjust/
2•sriharis•1h ago•0 comments

Are Electrons made of Light? (2025)

https://youtu.be/hYyrgDEJLOA
1•gxt•1h ago•0 comments

Visual Studio 2026

https://learn.microsoft.com/en-us/visualstudio/releases/2026/release-notes
3•jdironman•1h ago•1 comments

Ask HN: Are AI coding agents becoming more stupid?

1•andrecarini•1h ago•1 comments

Small changes to 'for you' feed on X can rapidly increase political polarisation

https://www.theguardian.com/technology/2025/nov/27/partisan-x-posts-increase-political-polarisati...
5•jethronethro•1h ago•0 comments

IntelliJ: Enabling Internal Mode

https://plugins.jetbrains.com/docs/intellij/enabling-internal.html
1•gjvc•1h ago•1 comments

Overlord: AI accountability that watches over you

https://overlord.app/
2•joshmit•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.