frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I built a Twitch social network

https://chattr.online/login
1•michaelbrooks•1m ago•0 comments

Show HN: Real-time aviation Pirep dashboard built on Cloudflare Workers and D1

https://github.com/Jay9185/PIREP
1•jerr9185•3m ago•0 comments

Simplifying Two Millennium Prize Problems

https://metamagic.substack.com/p/simplifying-two-millennium-prize
1•r0ze-at-hn•5m ago•0 comments

FB >> HTTPS://Www.facebook.com/JetterixPressureNozzleUnitedKingdom/

https://www.facebook.com/JetterixPressureNozzleUnitedKingdom
1•natashawonk•7m ago•0 comments

AI images are being used in insurance scams

https://www.bbc.com/news/articles/cm2rr9pg4jzo
1•1659447091•9m ago•0 comments

Prism License Framework (a modular license generator)

1•Scientific_AJ•13m ago•0 comments

Rust Maintainer Fund

https://nlnet.nl/maintainers/rust/
1•pabs3•13m ago•0 comments

Netflix Cofounder Reed Hastings Is Leaving the Company

https://www.businessinsider.com/netflix-cofounder-reed-hastings-is-leaving-the-company-sarandos-p...
2•doppp•14m ago•0 comments

Prism License Framework (a modular license generator)

https://www.google.com/search?q=https://github.com/ScientificAJ/prism-license-framework
1•Scientific_AJ•14m ago•0 comments

Show HN: Viche – OSS private registry for agent communication

https://github.com/viche-ai/viche
1•nanojoel•16m ago•0 comments

Approve agents and track progress while you're on the go

https://github.com/grainulation/farmer
3•woptober•18m ago•0 comments

Treating enterprise AI as an operating layer

https://www.technologyreview.com/2026/04/16/1135554/treating-enterprise-ai-as-an-operating-layer/
1•joozio•19m ago•0 comments

Show HN: CrossTrack – Cross-platform identity resolution as a service

2•jamespeng•22m ago•0 comments

Ask HN: What are the machine requirements for a LLM like Llama-3.1-8B?

2•wasimsk•26m ago•0 comments

Reed Hastings to step down from Netflix board

https://www.theguardian.com/media/2026/apr/16/netflix-chair-reed-hastings
2•abawany•26m ago•0 comments

Single Stage Rocket Technology (SSRT) Delta Clipper Experimental (DC-X)(1993) [video]

https://www.youtube.com/watch?v=J6ZyDSmC-d0
1•o4c•29m ago•0 comments

Engram – context spine for AI coding agents, 88% proven token savings

https://github.com/NickCirv/engram
1•NickCirv•30m ago•0 comments

Deleteduser.com – A $15 PII Magnet

https://mike-sheward.medium.com/deleteduser-com-a-15-pii-magnet-c4396eb21061
2•p4bl0•35m ago•2 comments

MongoDB Compass Alternative

https://visualeaf.com/blog/visualeaf-as-mongodb-compass-alternative/
1•RoxiHaidi•37m ago•0 comments

I'm tired about hearing about AI startups

1•geuis•42m ago•2 comments

Observational constraints project a ~50% AMOC weakening by end of this century

https://www.science.org/doi/10.1126/sciadv.adx4298#sec-3
2•Kaibeezy•43m ago•1 comments

Drivers sue San Jose over nearly 500 police cameras used to track drivers

https://www.nbcnews.com/tech/tech-news/san-jose-drivers-sue-city-police-flock-cameras-rcna331750
4•blessedwhiskers•45m ago•0 comments

IETF: Meow

https://www.ietf.org/archive/id/draft-meow-mrrp-00.html
4•michaelsshaw•48m ago•1 comments

Dog Bed Database

https://aosabook.org/en/500L/dbdb-dog-bed-database.html
3•tosh•49m ago•0 comments

Why is the unit of measure placed before the value for currencies? (2016)

https://english.stackexchange.com/questions/34013/why-is-the-unit-of-measure-placed-before-the-va...
2•fittingopposite•50m ago•1 comments

'Middle Class' Actors Are Getting 'Squeezed Out' of Hollywood

https://variety.com/2026/tv/news/kirk-acevedo-sold-house-middle-class-actors-hollywood-1236722809/
5•Michelangelo11•50m ago•1 comments

House punts on FISA, extends spy powers program for two weeks

https://www.politico.com/news/2026/04/17/spy-powers-expiration-closes-in-as-house-procedural-vote...
1•Cider9986•51m ago•0 comments

A Stunning New Verdict Rewrites the Rules of Corporate Morality

https://www.nytimes.com/2026/04/17/opinion/a-stunning-new-verdict-rewrites-the-rules-of-corporate...
1•mitchbob•51m ago•3 comments

First bikebell against noise-canceling headphones

https://www.welovecycling.com/wide/duobell/
11•mccolly•53m ago•4 comments

Intel Core Ultra 7 270K Plus Performance in 340 Linux Benchmarks Review

https://www.phoronix.com/review/intel-core-ultra-7-270k-plus
2•rbanffy•54m 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•11mo ago

Comments

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

https://reportmill.com/SnapCode

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