frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Who Is Cami Clark? Anthropic CEO's Wife Asked Epstein to Invest in Porn Business

https://www.forbes.com/sites/alisondurkee/2026/08/14/who-is-cami-clark-anthropic-ceos-wife-asked-...
1•gpi•48s ago•0 comments

Apple launches ads in Apple Maps for businesses across the US and Canada

https://www.theapplepost.com/2026/08/14/71094/apple-launches-ads-in-apple-maps-for-businesses-acr...
1•mgh2•2m ago•0 comments

Did the AI Bubble Just Pop?

https://www.youtube.com/watch?v=wrFH8PvDPFE
1•cable2600•7m ago•0 comments

Show HN: GPT, Claude, Gemini. Ask them all. Pay for one

https://whizi.io/
1•not_wowinter14•10m ago•0 comments

Robots That Walk and Talk Are Coming to Car Factories

https://www.nytimes.com/2026/08/11/business/humanoid-robots-car-factories.html
2•m463•10m ago•0 comments

Patterns and Problems in Multiagent Systems

https://www.anthropic.com/research/multiagent-systems
1•jonbaer•10m ago•0 comments

A Proposal to Fix Go's Proposal Backlog

https://github.com/golang/go/discussions/80580
1•lr0•16m ago•0 comments

Show HN: NoiseDrop – describe a place, hear it

https://www.noisedrop.app/
1•jigarmody24•20m ago•0 comments

Show HN: I spent 3 months making desktop automation stop lying to AI agents

https://github.com/lahfir/agent-desktop/tree/main
1•lahfir•22m ago•0 comments

Sexually transmitted infections are surging in Europe

https://www.economist.com/europe/2026/08/09/sexually-transmitted-infections-are-surging-in-europe
3•alphabetatango•28m ago•0 comments

Single-provider vs. multi-provider architectures for multimodal AI apps

https://medium.com/@CometAPI_/how-to-architect-a-multimodal-app-for-chat-image-and-video-in-2026-...
1•WavyPeng•28m ago•0 comments

Show HN: AI Meeting Assistant in Browser

https://chatpanel.net/
1•earth2mars•30m ago•1 comments

France's constitutional authority strikes down social media ban for under-15s

https://www.france24.com/en/france/20260814-france-s-constitutional-authority-strikes-down-social...
3•Markoff•38m ago•1 comments

Agents on Rails: The LLM Benchmark Project

https://rubyonrails.org/2026/8/12/llm-benchmarking-project
1•ksec•42m ago•0 comments

Show HN: ThoughtDAG – An editable context graph for LLM conversations

https://chenxiachan.github.io/thoughtdag/
2•chatchan•47m ago•0 comments

Flink SQL vs. Flink Java API

https://www.reddit.com/r/apacheflink/s/TAzjpyYzSH
2•ganeshsivakumar•49m ago•0 comments

Best US- and EU-hosted abliterated models with no input/output prompt retention

https://next.abliteration.ai
3•thomadev0•1h ago•2 comments

Instagzam and Other Logo Redesigns

https://creolened.com/instagzam-and-other-logo-redesigns/
1•meetpateltech•1h ago•0 comments

The other Sean Byrne doesn't exist

https://conic.al/writing/the-other-sean-byrne-doesnt-exist/
10•rdl•1h ago•2 comments

Reconsidering O_CREAT|O_DIRECTORY

https://lwn.net/Articles/1085617/
2•pykello•1h ago•0 comments

BibleMigo- where the Bible meets technology and game mechanics

https://www.biblemigo.com/
1•mosesmanzana•1h ago•0 comments

App:Unforgetful

https://marco.org/2026/08/14/unforgetful
1•shivaraj1996•1h ago•0 comments

An Idea for a New Form of Media

3•tsydenzhap•1h ago•1 comments

Comma.ai Launches a PCIe Gen4 X4 to USB4 Dock with Open-Source Firmware

https://www.phoronix.com/news/Comma.ai-PCIe-Gen4-USB4-Dock
2•ferryth•1h ago•0 comments

Best AI solution to hunt for buffer overflows in open source apps?

1•firefax•1h ago•0 comments

VTCode

https://github.com/vinhnx/VTCode
1•handfuloflight•1h ago•0 comments

Vivodyne launches largest human biological datacenter

https://www.businesswire.com/news/home/20260812148428/en/Vivodyne-Launches-the-Worlds-Largest-Hum...
2•george_max•1h ago•0 comments

Peter Sarnak on "The AlphaZero Test" for Mathematics

https://www.ams.org/journals/notices/202607/noti3373/noti3373.html
1•the-mitr•1h ago•0 comments

People Who Will Thrive in the AI Age

https://www.theatlantic.com/ideas/2026/06/ai-open-ai-anthropic/687689/
9•jdkee•1h ago•1 comments

destruction-certificate.txt

https://stallman.org/articles/destruction-certificate.txt
4•lr0•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.