frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

FAA probes Amazon after delivery drone snaps internet cable in Texas

https://www.reuters.com/business/retail-consumer/faa-probes-amazon-after-delivery-drone-snaps-int...
1•pseudolus•7m ago•0 comments

Can You Build a Product with Hard Single-Stack Developers?

https://oneknightinproduct.substack.com/p/can-you-really-build-a-product-with
1•imjacobclark•8m ago•0 comments

ML LLVM Project: Compiler Infrastructure for ML-Driven Optimizations

https://github.com/IITH-Compilers/ml-llvm-project
2•ingve•10m ago•0 comments

Lightweight Linux-compatible kernel written in Rust

https://github.com/maestro-os/maestro
1•coolcoder613•11m ago•0 comments

AISDR Human-First Alternative

https://dealmayker.com/alternative/aisdr
1•aleksam•11m ago•0 comments

SoftBank's 40% Slide from Peak Shows Worry over Giant OpenAI Bet

https://www.bloomberg.com/news/articles/2025-11-26/softbank-s-40-slide-from-peak-reflects-jitters...
1•zerosizedweasle•13m ago•0 comments

Plinko PIR Tutorial

https://vitalik.eth.limo/general/2025/11/25/plinko.html
1•sygma•14m ago•0 comments

AutoITE – An Algorithm for Estimating ITE

https://github.com/HotProtato/AutoITE
1•HotProtato•14m ago•1 comments

Show HN: YTShortsDL: A Bulk Downloader Built for Shorts Content Repurposing

https://ytshortsdl.net/
1•Franklinjobs617•16m ago•1 comments

A Tsunami of Cogs

https://betterthanrandom.substack.com/p/a-tsunami-of-cogs
1•gmays•23m ago•0 comments

Linux Kernel Establishes Official AI Coding Guidelines

https://lunduke.substack.com/p/linux-kernel-establishes-official
4•amcclure•24m ago•1 comments

Neural Annealing: Directing Psychedelic Trips Towards Healing

https://psychotechnology.substack.com/p/neural-annealing-directing-psychedelic
1•eatitraw•24m ago•0 comments

Show HN: Constitutional AI Agent OS (governance enforced at kernel level)

https://github.com/kimeisele/steward-protocol
2•harekrishna108•24m ago•1 comments

You're a Bad Parent but You Don't Need to Be

https://nurtureos.ai/
2•hamandcheese•25m ago•1 comments

Cloudflare Rewrote Their Core in Rust, Then Half of the Internet Went Down

https://lunduke.substack.com/p/cloudflare-rewrote-their-core-in
2•amcclure•25m ago•1 comments

Color.io Is Going Offline

3•hilti•27m ago•1 comments

Antigravity: More marketing hype than real IDE progress

https://visualstudiomagazine.com/articles/2025/11/21/googles-antigravity-ide-sparks-forking-debat...
1•birdculture•31m ago•0 comments

Private Debt Defaults Set to Climb as Middle-Market Firms Wobble

https://www.bloomberg.com/news/articles/2025-11-25/private-debt-defaults-set-to-climb-as-middle-m...
1•zerosizedweasle•32m ago•0 comments

Show HN: RapGenerator – Turn lyrics/ideas into full rap tracks (no music skills)

https://rapgenerator.online/
1•chenliang001•33m ago•0 comments

Microplastics pose a human health risk in more ways than one

https://news.exeter.ac.uk/research/microplastics-pose-a-human-health-risk-in-more-ways-than-one/
1•JeanKage•35m ago•0 comments

Libinput 1.30 Released with Support for Writing Plug-Ins in Lua

https://www.phoronix.com/news/libinput-1.30-Released
1•todsacerdoti•35m ago•0 comments

Ask HN: Is Google Meet down for you?

1•jsonc•35m ago•2 comments

GrapheneOS: "We now have experimental support for the Pixel 10 "

https://grapheneos.social/@GrapheneOS/115613410154853462
2•SpaghettiCthulu•36m ago•0 comments

FreeCAD Release 1.1 Rc1

https://github.com/FreeCAD/FreeCAD/releases/tag/1.1rc1
1•yehoshuapw•39m ago•0 comments

Which AI tools have you used every day for the past year?

1•fazlerocks•42m ago•0 comments

Income, PTO, schedule → actual trips. Meet Roamie

https://www.roamie.gg
1•Brianwongjh•44m ago•1 comments

CISA warns spyware crews are breaking into Signal and WhatsApp accounts

https://www.theregister.com/2025/11/25/cisa_spyware_gangs/
2•Brajeshwar•48m ago•1 comments

Tokyo Overtaken as World's Biggest City

https://news.sky.com/story/jakarta-and-dhaka-topple-tokyo-to-become-worlds-biggest-megacities-134...
2•austinallegro•49m ago•0 comments

'Enshittification': how we got the internet no one asked for [audio]

https://www.theguardian.com/news/audio/2025/nov/24/enshittification-how-we-got-the-internet-no-on...
1•Brajeshwar•50m ago•0 comments

Show HN: Anthony Bourdain's Lost Li.st's

https://bourdain.greg.technology/
2•gregsadetsky•51m 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.