frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Openrobots

https://openrobots.vercel.app
1•richard_baecker•1m ago•0 comments

Show HN: I made a list of the vulnerabilities I got on my blog

https://seiji.reachpad.app/cves.html
1•sakuraiben•2m ago•0 comments

Least convenient location in Los Angeles

https://notes.secretsauce.net/notes/2015/08/16_least-convenient-location-in-los-angeles-from-kore...
1•dima55•4m ago•0 comments

$15M effort to get to Alpha Centuri in 80K years

https://arstechnica.com/space/2026/09/private-group-wants-to-launch-cheapest-possible-mission-to-...
1•gumby•4m ago•0 comments

Copernicus: Daily global sea surface temperature breaks 2024 record

https://climate.copernicus.eu/copernicus-daily-global-sea-surface-temperature-breaks-2024-record
2•gmays•6m ago•0 comments

Yogurt and human health across history, culture, and science

https://www.sciencedirect.com/science/article/pii/S1279770726001752
2•geox•8m ago•0 comments

We have a loop that grabs every available EC2 node in the classes we need

https://twitter.com/samlambert/status/2096072501831106975
1•tosh•14m ago•0 comments

"MP3 is dead" missed the real, better story (2017)

https://marco.org/2017/05/15/mp3-isnt-dead
3•Tomte•14m ago•0 comments

The Hugging Face attack surprised me

https://www.planned-obsolescence.org/p/the-hugging-face-attack-surprised
3•gmays•14m ago•0 comments

Mapping codebases via 3js force graphs

https://creview.io/
3•swupel•19m ago•2 comments

James Bond, pt. 1 (a View to Kill)

https://007.danieldeboulay.com
1•deboulaymxf•20m ago•0 comments

Google restricted Gmail after press outreach; five appeals stayed system-only

https://dossier.reasoner.pl/#google-track
2•marekfocus•21m ago•0 comments

Health warnings could reduce youth's hours spent on social media

https://www.euronews.com/health/2026/09/05/health-warnings-could-reduce-youths-hours-spent-on-soc...
3•Markoff•21m ago•0 comments

Job postings show early signs of AI automation impact

https://www.dallasfed.org/research/economics/2026/0901
2•theanonymousone•23m ago•1 comments

Google skates

https://pluralistic.net/2026/09/05/divorce-court/
3•hn_acker•27m ago•0 comments

Effective Bureaucracy

https://sackfield.substack.com/p/effective-bureaucracy
2•sackfield•29m ago•0 comments

Migrating a Redis Cluster Across Clouds Without Chaos

https://charanvasu.com/posts/migrating-redis-cluster-cross-cloud/
1•whiteros_e•30m ago•0 comments

Dogs can distinguish between fearful and angry or sad human faces

https://www.theguardian.com/world/2026/aug/10/dogs-distinguish-fearful-angry-sad-human-faces-brai...
2•howard941•31m ago•0 comments

Take-Two's Leak-Burying DMCA Attempts Snared GameStop and Gaming Journalist

https://www.techdirt.com/2026/09/04/take-twos-leak-burying-dmca-attempts-snared-gamestop-gaming-j...
2•hn_acker•32m ago•1 comments

Flathub bans AI-coded apps – with some exceptions

https://www.omgubuntu.co.uk/2026/06/flathub-bans-ai-coded-apps
3•TiredOfLife•32m ago•0 comments

GPT-6 Astra is now #1 on Code Arena

https://twitter.com/arena/status/2096290434700247250
4•tosh•33m ago•0 comments

A meme-shaped test of your post-AI SWE skills

https://codeset.ai/fried/swe
3•Nfsaavedra•34m ago•0 comments

GoEven – Free, ad-free group expense splitter built with Go, gRPC, and Flutter

https://goeven.app
2•Xainpro•35m ago•0 comments

Architectural Deep Dive: Building a Zero-Overselling Flash Sale Engine

https://medium.com/@kumar62.shivu/architectural-deep-dive-building-a-zero-overselling-flash-sale-...
2•kumardhananjaya•35m ago•0 comments

KV Cache as an Agent Runtime

https://research.yandex.com/blog/the-kv-cache-as-an-agent-runtime
2•puhsu•36m ago•1 comments

China completes first commercial brain-computer interface implant

https://www.scmp.com/tech/big-tech/article/3360684/china-completes-worlds-first-commercial-brain-...
4•Anon84•41m ago•1 comments

Ask HN: How are you monitoring Chain of Thought in Fable 5.1?

3•taariqlewis•41m ago•0 comments

Show HN: Agents Debugging Design

https://www.debugging.design/
2•aievangel•42m ago•0 comments

Show HN: Ditch; Build multiple products at once

https://theditch.dev
1•0xmtn•43m ago•0 comments

A Turing Machine Is Just a Finite Automaton with Two Stacks (2018)

https://scholarworks.utep.edu/cs_techrep/1228/
2•peter_d_sherman•44m 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•1y ago

Comments

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

https://reportmill.com/SnapCode

palata•1y 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•1y 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•1y 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•1y 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•1y 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•1y 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•1y 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.