frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Airbus issues major A320 recall due to software/radiation problem

https://www.reuters.com/business/aerospace-defense/airbus-issues-major-a320-recall-after-flight-c...
1•thundergolfer•30s ago•0 comments

Relae – Stop losing webhooks with automatic retries and a dead letter queue

https://relaehook.com
1•everydaydev•43s ago•1 comments

FBI RFP for tool to scrape Gab, Parler, 8Kun, and Telegram (5k licenses) [pdf]

https://vault.fbi.gov/contract-15f06722c0000258
2•sans_souse•2m ago•0 comments

Nassau County exec plans wall of surveillance cameras at NYC-Long Island border

https://gothamist.com/news/nassau-county-exec-plans-wall-of-surveillance-cameras-at-nyc-long-isla...
2•geox•7m ago•0 comments

Xkcd: Python Environment

https://m.xkcd.com/1987/
4•thunderbong•9m ago•0 comments

The Origins of Scala (2009)

https://www.artima.com/articles/the-origins-of-scala
1•todsacerdoti•10m ago•0 comments

Buttered Cat Paradox

https://en.wikipedia.org/wiki/Buttered_cat_paradox
1•flyaway123•10m ago•0 comments

Show HN: No Environment Setups Anymore

https://www.gitarsenal.dev/
2•rohan2003•11m ago•0 comments

My Favorite Color Picker

https://github.com/madprops/semicolor
1•caliweed•11m ago•0 comments

Learning Feynman's Trick for Integrals

https://zackyzz.github.io/feynman.html
2•Zen1th•14m ago•0 comments

Canada can become a nation of jailbreakers

https://pluralistic.net/2025/11/28/disenshittification-nation/#post-american-internet
4•samizdis•15m ago•0 comments

NASA's Tess Spacecraft Triples Size of Pleiades Star Cluster

https://science.nasa.gov/missions/tess/nasas-tess-spacecraft-triples-size-of-pleiades-star-cluster/
1•bryanrasmussen•15m ago•0 comments

Love Against Probability

https://www.themarginalian.org/2025/11/24/love-probability/
2•herbertl•16m ago•0 comments

LLM Model Live Ranker

https://metrik-dashboard.vercel.app/
1•mbouassa•17m ago•0 comments

How hidden stars shape our search for technosignatures

https://www.universetoday.com/articles/how-hidden-stars-shape-our-search-for-technosignatures
1•rbanffy•18m ago•0 comments

OpenAI Partners Amass $100B Debt Pile to Fund Its Ambitions

https://www.ft.com/content/5605d086-289e-4b5f-803b-4c13666976a5
3•skx001•18m ago•1 comments

Post-Moore computing: a structural alternative to architecture stagnation

https://zenodo.org/records/17618948
1•flexionU•18m ago•0 comments

Shell climate change report – 28 November 1985

https://stories.workingclasshistory.com/article/10048/shell-climate-change-report
1•MaysonL•19m ago•0 comments

Vibe coding: What is it good for? nothing

https://www.theregister.com/2025/11/24/opinion_column_vibe_coding/
3•dxs•19m ago•0 comments

China's Tech Giants Take AI Model Training Offshore to Tap Nvidia Chips

https://www.ft.com/content/96fe9898-a3a4-4a33-be1d-da06bdb6cb2b
2•skx001•21m ago•0 comments

In Favor of Giving Things Up

https://www.raptitude.com/2025/11/in-favor-of-giving-things-up/
3•herbertl•23m ago•0 comments

AI Agents Care Less About Safety When Under Pressure

https://spectrum.ieee.org/ai-agents-safety
1•rbanffy•23m ago•0 comments

Suwa's C Tutorial

https://usamimi.info/~suwa/ctut.htm
1•trms•25m ago•0 comments

Tested: 1981 Datsun 280ZX Turbo

https://www.caranddriver.com/reviews/a69529696/1981-datsun-280-zx-turbo-archive-test/
2•RickJWagner•25m ago•2 comments

Tech predictions for 2026 and beyond – All Things Distributed

https://www.allthingsdistributed.com/2025/11/tech-predictions-for-2026-and-beyond.html
1•rbanffy•26m ago•0 comments

Be Like Clippy

https://be-clippy.com/
3•Aloha•27m ago•0 comments

Controversial genetics testing startup Nucleus Genomics raises $14M Series A

https://techcrunch.com/2025/01/30/controversial-genetics-testing-startup-nucleus-genomics-raises-...
2•paulpauper•28m ago•0 comments

Scientists may have solved why this ancient, advanced civilization vanished

https://www.washingtonpost.com/climate-environment/2025/11/27/indus-river-valley-civilization-cli...
3•paulpauper•29m ago•0 comments

Indian Govt. Issues SIM Binding Directions to WhatsApp and Telegram

https://www.medianama.com/2025/11/223-dot-sim-binding-directions-to-whatsapp-and-telegram/
3•LordAtlas•30m ago•0 comments

Does Drug Interdiction Work?

https://marginalrevolution.com/marginalrevolution/2025/11/does-drug-interdiction-work.html
1•paulpauper•30m 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.