frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AF_ALG "Nightmare" Being Further Limited In Linux 7.3 With New Sysctl Knob

https://www.phoronix.com/news/AF-ALG-Restrict-Sysctl-Linux
1•Bender•1m ago•0 comments

Show HN: YOLO mode, not on your laptop

http://docs.voids.run/blog/yolo-mode-not-on-your-laptop/
1•zhshhan•2m ago•0 comments

Anthropic is launching Claude Cowork on mobile and web

https://www.theverge.com/ai-artificial-intelligence/961978/anthropic-claude-cowork-mobile-web
1•ilreb•2m ago•0 comments

General Radio Company

https://mitmuseum.mit.edu/collections/organization/3901
1•stmw•3m ago•1 comments

The Bessent Doctrine (Essay by Mohammed El-Erian)

https://www.nytimes.com/2026/07/07/opinion/scott-bessent-trade-economy.html
1•cs702•4m ago•0 comments

The Many Casualties of Precision Warfare

https://jacobin.com/2026/05/iraq-precision-weapons-civilians-responsibility
1•speckx•5m ago•0 comments

The Software Engineering War

https://www.manager.dev/newsletter/the-software-engineering-war
1•pmg101•5m ago•0 comments

America's missing middle: The shrinking 45-64 population

https://www.axios.com/2026/07/07/gen-x-population-shrinking-taxes-economy
1•toomuchtodo•7m ago•1 comments

Show HN: I Recreated Digg Labs

https://www.topaztee.com/digglabs/
1•topaztee•7m ago•0 comments

Enabling non-devs to contribute code at Slack

https://www.aviator.co/podcast/devex-slack-frances-coronel
1•tonkkatonka•7m ago•0 comments

"We're extending access to Claude Fable 5 on all paid plans through July 12."

https://twitter.com/claudeai/status/2074548242386178258
2•minimaxir•8m ago•1 comments

Run Multiple Claude Accounts Side by Side on macOS

https://old.reddit.com/r/ClaudeAI/comments/1uq27do/run_multiple_claude_accounts_side_by_side_on_m...
1•IGHOR•8m ago•0 comments

Your family's $300 stake in OpenAI

https://www.technologyreview.com/2026/07/06/1140176/your-familys-300-stake-in-openai/
2•Brajeshwar•11m ago•0 comments

I tried to build a post scheduler but meta app review messed it up

1•anirudh_parmar•12m ago•0 comments

Show HN: HTMLDrive – serve HTML files from your Google Drive

https://html-drive.com
2•debamitro•13m ago•0 comments

Show HN: Fence – Jiminy Cricket for AI coding agents

1•andriosr•14m ago•0 comments

Designing tech to have good etiquette

https://caseorganic.substack.com/p/sit-siri
1•SLHamlet•14m ago•0 comments

Review AI code line by line is like review movies frame by frame

https://bsky.app/profile/metaessen.bsky.social/post/3mq33yrxeh22a
1•lilerjee•14m ago•0 comments

Type-safe Django fork – Django-CFG

https://djangocfg.com/
1•Onavo•15m ago•0 comments

Emerging evidence links tire pollution to Alzheimer's risk

https://www.eurekalert.org/news-releases/1134924
2•ndsipa_pomu•15m ago•0 comments

Manna (2003)

https://marshallbrain.com/manna1
1•Curiositry•15m ago•0 comments

I found 3 self-contradictions in the Agentic Commerce Protocol spec

https://github.com/baseballcubs99x-dev/acp-check
1•JBIRMING199•17m ago•0 comments

Trump renews Greenland threats at NATO summit

https://www.cnbc.com/2026/07/07/trump-nato-summit-greenland-us-troops-europe.html
2•tcp_handshaker•18m ago•0 comments

Incentives Drive Everything

https://yusufaytas.com/incentives-drive-everything
1•Curiositry•19m ago•0 comments

Managed Agents in Gemini API: background tasks, remote MCP and more

https://twitter.com/GoogleAIStudio/status/2074533418004591077
1•pretext•21m ago•0 comments

A dummy/debug app that runs a web server and prints environment variables

https://github.com/whalesalad/docker-debug
1•mooreds•21m ago•0 comments

Show HN: ComplyLedge – Clean, normalized OSHA enforcement data via API

https://complyledge.com
1•infinito25•21m ago•0 comments

Why we're moving Wire off Cloudflare Durable Objects

https://usewire.io/why-wire/architecture-benchmark/
1•jitpal•22m ago•0 comments

2026 French cybersecurity startup radar

https://www.wavestone.com/en/insight/2026-french-cybersecurity-startup-radar/
1•mooreds•23m ago•0 comments

Why AI Agents Forget by Design

https://stantyan.com/blog/why-ai-agents-forget/
1•stantyan•24m 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.