frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Seed: Adding `vau` with an immutable dynamic environment to Chez Scheme

https://github.com/amirouche/seed
1•PaulHoule•20s ago•0 comments

US defense official overseeing AI reaped millions selling xAI stock

https://www.theguardian.com/us-news/2026/apr/09/pentagon-ai-xai-emil-michael
1•malshe•34s ago•1 comments

Show HN: Frictionless – scan any store and find out why customers don't buy

https://frictionlessai.net
1•FricitionlessAI•44s ago•0 comments

Spec Driven Development Isn't Waterfall

https://brooker.co.za/blog/2026/04/09/waterfall-vs-spec.html
2•nslog•2m ago•1 comments

Charcuterie – Visual similarity Unicode explorer

https://charcuterie.elastiq.ch/
2•rickcarlino•2m ago•0 comments

AI Changes Everything-and Nothing

https://greyenlightenment.com/2026/04/04/ai-changes-everything-and-nothing/
1•paulpauper•2m ago•0 comments

Dispatch – Open-source event routing for webhooks, APIs, and real-time data

https://dispatch.tech
4•arishaller•3m ago•2 comments

Discovering, detecting, and surgically removing Google's AI watermark

https://github.com/aloshdenny/reverse-SynthID
1•_tk_•4m ago•0 comments

Devoxx [video]

https://www.youtube.com/channel/UCCBVCTuk6uJrN3iFV_3vurg
1•__natty__•4m ago•0 comments

How Iran's Information War Machine Operates Online

https://www.nytimes.com/interactive/2026/04/09/business/iran-war-online-influence-propaganda.html
1•mikhael•4m ago•0 comments

What happens when an LLM becomes load-bearing infrastructure

https://kinarey.com/what-happens-when-ai-becomes-load-bearing/
1•indynz•5m ago•0 comments

Social media has become a freak show

https://www.natesilver.net/p/social-media-has-become-a-freak-show
1•neehao•6m ago•0 comments

Low-Rank KV Attention: 50% Less Memory, Better Models

https://fin.ai/research/low-rank-key-value-attention-reducing-kv-cache-memory-and-maintaining-hea...
1•destraynor•6m ago•0 comments

The Hubble Space Telescope Optical Systems Failure Report (1990) [pdf]

https://ntrs.nasa.gov/api/citations/19910003124/downloads/19910003124.pdf
1•susam•7m ago•0 comments

Darknet Market Mortality Risks

https://gwern.net/dnm-survival
2•blahaj•7m ago•0 comments

Bombshell Report Reveals Trump Was Begging for Iran to Join Ceasefire

https://newrepublic.com/post/208815/trump-asked-iran-ceasefire
1•n1b0m•8m ago•0 comments

TrueNAS 26 Beta Brings Linux 6.18 LTS, OpenZFS 2.4 Combination for NAS Devices

https://www.phoronix.com/news/TrueNAS-26-Beta
1•Bender•8m ago•0 comments

Imfing/hextra:Modern, batteries-included Hugo theme for creating beautiful blogs

https://github.com/imfing/hextra
2•freediver•9m ago•0 comments

Show HN: I built a tool to bootstrap VLESS and REALITY over SSH (with rollback)

1•insany•9m ago•0 comments

Linux 7.0 Adds Support for New Keys on Upcoming Laptops for Expanded AI Agent

https://www.phoronix.com/news/Linux-7.0-New-AI-Agent-Keys
2•Bender•9m ago•0 comments

Exclusive-Tesla is developing a new smaller, cheaper EV, sources say

https://finance.yahoo.com/sectors/technology/articles/exclusive-tesla-developing-smaller-cheaper-...
2•xnx•10m ago•0 comments

Unexplained Phenomena

https://en.wikipedia.org/wiki/Category:Unexplained_phenomena
2•firefax•10m ago•0 comments

Who has to register for Selective Service, and are there exceptions?

https://ktla.com/news/who-has-to-register-for-selective-service-and-are-there-exceptions/
2•Bender•10m ago•1 comments

There's a Good Reason You Can't Concentrate

https://www.nytimes.com/2026/03/27/opinion/technology-mental-fitness-cognitive.html
4•ingve•14m ago•0 comments

A Practitioner's Guide to AI-Assisted Development

https://perevillega.com/posts/2026-03-15-fulcrums-of-ai-developer-evolution/
3•kiyanwang•14m ago•0 comments

Show HN: WarpField, a Visualizer

https://davidcanhelp.github.io/WarpField/
2•DavidCanHelp•15m ago•1 comments

ToolPry – 15 free developer tools, client-side, no tracking

https://toolpry.com/
2•raag3arun•17m ago•1 comments

LinkedIn Pulse Lost 85% of Its Organic Traffic. Here's What Killed It.

https://growtika.com/blog/linkedin-pulse-research
2•Growtika•17m ago•0 comments

DeChambeau using 3D printed 5 iron at Masters

https://www.espn.com/golf/story/_/id/48431238/bryson-dechambeau-using-iron-made-3d-printer-masters
2•anonymousiam•17m ago•0 comments

Seedance 2.0 Is Live on fal

https://fal.ai/seedance-2.0
2•Bennettheyn•18m 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.