frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Talking with Synopsys about the Physics of Chip Design at DAC 2026

https://chipsandcheese.com/p/talking-with-synopsys-about-the-physics
1•rbanffy•59s ago•0 comments

Show HN: Code Stitcher Godot Support

1•aihatterer•2m ago•0 comments

Blog about things you don't understand yet

https://www.seangoedecke.com/blog-about-things-you-dont-understand-yet/
1•gfysfm•2m ago•0 comments

Tether Completes the Largest Inaugural Financial Audit in History

https://tether.io/news/tether-completes-the-largest-inaugural-financial-audit-in-history/
2•latchkey•3m ago•1 comments

Trump Gives Green Light to U.S. Companies to Aim Hacks at Cybercriminals

https://www.nytimes.com/2026/08/13/us/politics/trump-private-companies-hacking-cybercriminals.html
1•whyage•5m ago•0 comments

Standard RAG returns funny neighbors. Multi-vector fixes the signal

https://github.com/insightitsGit/VectorPrism
1•parvaamin•5m ago•0 comments

What We Lost When Computers Became Easier to Use [video]

https://www.youtube.com/watch?v=XHeMsXDyw2A
1•pierres7•12m ago•1 comments

Google Has Most of My Email Because It Has All of Yours (2014)

https://mako.cc/copyrighteous/google-has-most-of-my-email-because-it-has-all-of-yours
2•downbad_•16m ago•0 comments

Company Knowledge in ChatGPT (Business, Enterprise, and Edu)

https://help.openai.com/en/articles/12628342-company-knowledge-in-chatgpt-business-enterprise-and...
1•ssuds•20m ago•0 comments

Dangerous things should be difficult to do by accident

http://fexpr.blogspot.com/2011/05/dangerous-things-should-be-difficult-to.html
3•b-man•23m ago•0 comments

How AI text watermarking works

https://declaude.org/watermarking/
1•padolsey•25m ago•0 comments

Show HN: YazSes – offline hold-to-talk voice dictation for Linux/macOS/Windows

https://github.com/MSKazemi/yazses
1•mskazemi•26m ago•0 comments

I tried the new ChatGPT Desktop App for Linux – but I'll stick to my browser

https://www.zdnet.com/article/openai-brings-the-chatgpt-desktop-app-to-linux/
1•CrankyBear•26m ago•0 comments

Does anyone run Postgres without PgBouncer?

https://brandur.org/fragments/postgres-without-pgbouncer
1•birdculture•28m ago•0 comments

Oral History of John Chowning (Computer History) [video]

https://www.youtube.com/watch?v=e1Xn3030IvM
1•Rochus•29m ago•0 comments

AI is learning clinical judgment by practicing on simulated patients

https://www.echohive.ai/ai-clinical-residency
1•echohive42•33m ago•0 comments

Science investigation casts doubt on genes hailed for warding off Alzheimer's

https://www.science.org/content/article/science-investigation-casts-doubt-genes-hailed-warding-al...
1•sbulaev•35m ago•0 comments

Move FreeBSD System Between ZFS Disks

https://vermaden.wordpress.com/2026/08/14/move-freebsd-between-zfs-disks/
1•vermaden•35m ago•0 comments

PBS loses 70 years of TV history after cloud storage vendor goes defunct

https://www.tomshardware.com/software/cloud-storage/nine-pbs-loses-access-to-70-years-of-data-aft...
15•doener•36m ago•2 comments

The Coldcard Hack: A Postmortem

https://praveenperera.com/blog/coldcard-mk3-weak-rng-wave1/
1•abrowne2•37m ago•0 comments

Inside North Korea's Operation to Conquer the American Job Market

https://www.wsj.com/business/media/inside-north-koreas-operation-to-conquer-the-american-job-mark...
1•bookofjoe•39m ago•1 comments

The Evolving Role of the Red Team in the Era of Agentic Security

https://blog.google/security/the-evolving-role-of-the-red-team-in-the-era-of-agentic-security/
1•shaunpud•47m ago•0 comments

An anchoring layer between facts and AI memory

https://github.com/Anchorstate-Lab/GMR
1•Zongming•49m ago•1 comments

Further Developments About Internal AI Models Hacking Things

https://thezvi.substack.com/p/further-developments-about-internal
1•gmays•51m ago•0 comments

Show HN: AI Slop Kitchen

https://play-kitchen.netlify.app/
1•admtal•52m ago•0 comments

Think of AI as a lens, not a person

https://aethermug.com/posts/gen-ai-is-a-lens-into-humanity
2•mrcgnc•56m ago•0 comments

Loyalty cards that live in Apple/Google Wallet, no app to install

https://www.fideliyapass.com/
2•zakox•59m ago•0 comments

The Trump administration's Most Dangerous Attack on Science Yet

https://www.realclearscience.com/articles/2026/08/11/the_trump_administrations_most_dangerous_att...
5•rbanffy•1h ago•0 comments

Seoul soars past Dubai as busiest international airport

https://www.ft.com/content/f3f3c945-6a75-4663-b8ec-d5251438c1c5
3•JumpCrisscross•1h ago•0 comments

Watch It Work

https://www.texturehq.com/blog/watch-it-work
2•victorquinn•1h 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.