frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Art is not being replaced by AI

https://www.nicolasdeory.com/thoughts/ai-wont-replace-art
1•nicodeory•1m ago•0 comments

"We had to kill the gecko in order to save it"

https://www.theguardian.com/environment/2026/mar/22/i-discovered-three-new-geckos-in-cambodia-lim...
1•zabzonk•3m ago•1 comments

Joy – Trust Network for AI Agents (7k agents registered)

https://joy-connect.fly.dev
1•savvyllm•4m ago•0 comments

Show HN: Mamba SSM in Rust – training and inference with custom CUDA kernels

https://github.com/silvermpx/mamba-rs
1•silvermpx•9m ago•0 comments

How Is a Fish Like a Number?

https://derangedmathematician.substack.com/p/how-is-a-fish-like-a-number
1•nill0•10m ago•0 comments

Iceberg Causes Postgres Acquisitions?

https://www.scalingpostgres.com/episodes/409-iceberg-causes-postgres-acquisitions/
1•aamederen•11m ago•0 comments

Escher's Print Gallery, and the tour of complex analysis (3b1b) [video]

https://www.youtube.com/watch?v=ldxFjLJ3rVY
1•vismit2000•11m ago•0 comments

Just One More Prompt (Peter Steinberger)

https://steipete.me/posts/just-one-more-prompt
1•jxmorris12•12m ago•0 comments

FedEx has started delivering AI training to over 400k workers

https://www.cnbc.com/2026/03/21/fedex-jobs-ai-training.html
1•petethomas•18m ago•0 comments

The data wall is billions of years of evolution (2024)

https://dynomight.net/data-wall/
1•andsoitis•20m ago•0 comments

CECbot: A TV box botnet that grabs the remote and maps the house

https://github.com/deepfield/public-research/blob/main/cecbot/report.md
2•bashtoni•22m ago•0 comments

Nvidia DGX Station systems available at last GB300 and GB200 workstations

https://www.servethehome.com/nvidia-dgx-station-systems-available-at-last-gb300-gb200-workstation...
1•teleforce•23m ago•0 comments

IPv6 Adoption Across the TopK Web Hosts

https://commoncrawl.org/blog/ipv6-adoption-across-the-top-100k-web-hosts
1•miyuru•25m ago•0 comments

Show HN: DockAutoHide – auto-hide the macOS Dock only when a window overlaps it

https://github.com/nshcr/DockAutoHide
1•wwhxd•25m ago•0 comments

LaGuardia Airport Closed After Plane Collided with Ground Vehicle

https://www.bloomberg.com/news/articles/2026-03-23/laguardia-closed-after-report-plane-collided-w...
1•SheinhardtWigCo•25m ago•0 comments

Your rights when an airport checkpoint is staffed by ICE agents

https://papersplease.org/wp/2026/03/22/your-rights-when-an-airport-checkpoint-is-staffed-by-ice-a...
4•greyface-•28m ago•0 comments

Teardown of a 2026 Lego Smart Brick

https://hackaday.com/2026/03/18/teardown-of-a-2026-lego-smart-brick/
1•swq115•30m ago•0 comments

Angel Links

https://en.wikipedia.org/wiki/Angel_Links
1•marysminefnuf•30m ago•0 comments

Who is that actor on the screen? Emacs/LLM/Fun Redux

https://lars.ingebrigtsen.no/2025/09/24/who-is-that-actor-on-the-screen-emacs-llm-fun-redux/
1•signa11•33m ago•0 comments

The Balance That Keeps Climate Stable Is Out of Whack, U.N. Report Finds

https://www.nytimes.com/2026/03/22/climate/energy-imbalance-un-report.html
1•mikhael•34m ago•0 comments

Voice AI in 2026 – An intro to building voice agents today

https://kingstonkuan.com/blog/voice-ai-in-2026/
1•kstonekuan•37m ago•0 comments

Freemium Task Management Software

https://mytracker.today/
1•rakanalalami•39m ago•0 comments

Programming Languages for Data Science and Analytics

https://csweb.rice.edu/academics/graduate-programs/online-mds/blog/programming-languages-for-data...
1•teleforce•40m ago•0 comments

Diffusion Large Language Models Papers

https://github.com/ML-GSAI/Diffusion-LLM-Papers
1•manbash•41m ago•0 comments

Death Note

https://news.ycombinator.com/newsguidelines.html
1•amosri•44m ago•1 comments

While the world watches Iran, Ukraine dismantles Russia

https://xcancel.com/Tweet4AnnaNAFO/status/2035881456518504841
4•doener•47m ago•0 comments

Did the Agile Manifesto, Scrum and open source kill the programmer?

https://nial.se/blog/agile-manifesto/
1•nialse•49m ago•0 comments

How Griductive Puzzles Are Made: Guaranteeing One Unique Solution

https://www.griductive.com/blog/how-griductive-puzzles-are-made
2•arvin8613•52m ago•0 comments

AntiX-26 released Fast, Tiny, very Useful OS: Debian based, systemd free

https://antixlinux.com/category/releases/
2•Guestmodinfo•53m ago•0 comments

The Trillion Dollar Race to Automate Our Lives

https://www.wsj.com/tech/ai/claude-code-cursor-codex-vibe-coding-52750531
5•thm•57m 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•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.