frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What If We Made Advertising Illegal?

https://simone.org/advertising/
1•gurjeet•3m ago•0 comments

Show HN: The first self-improving context engineering platform

https://xysq.ai/
2•ximihoque•4m ago•0 comments

Ask HN: .music Domain Owners – Govt ID is required?

1•paul7986•5m ago•0 comments

The Illusion of Knowing

https://zetanderwalls.bearblog.dev/pilot/
2•benxel•5m ago•0 comments

Political text messages could get more effective and annoying. Blame AI

https://www.npr.org/2026/07/12/nx-s1-5867763/ai-artificial-intelligence-data-texts-bots-voters-ca...
1•gnabgib•8m ago•0 comments

Self-host your cloud drive

https://freecloud.wiki
1•Hilliard_Ohiooo•9m ago•0 comments

Balder v7 – 100% on SWE-bench Verified on a single RTX 3060

1•BalderForseti•11m ago•0 comments

Responding to the Answer Key Intrusion

https://predictionguard.com/hugging-face-ai-agent-intrusion
1•katiebowen•11m ago•0 comments

First look at Pan Am plane wreckage after 73 years

https://www.bbc.com/news/videos/cx25pp3r61xo
2•sizzle•13m ago•0 comments

How it were are You

1•sheerun•14m ago•0 comments

Rare documents signed by Lincoln removed from D.C. memorial after heat exposure

https://www.yahoo.com/news/us/articles/rare-documents-removed-lincoln-memorial-081240515.html
1•gnabgib•15m ago•0 comments

Politician reads AI prompt during assembly [video]

https://www.youtube.com/watch?v=wlYa8NV5k-U
2•lr0•16m ago•1 comments

Pixar lays off over 100 Bay Area workers using ElastiGirl letterhead

https://www.sfgate.com/tech/article/pixar-mrs-incredible-layoffs-22357876.php
4•toomanyrichies•17m ago•1 comments

Whose freedom is it anyway?

https://collectivefutures.blog/whose-freedom-is-it-anyway/
1•cdrnsf•17m ago•0 comments

Do I need to charge my toothbrush via my monitor?

https://beller-it.de/blog/20260724-charge-my-toothbrush-via-my-display.html
1•mads_quist•18m ago•1 comments

The new rules of context engineering for Claude 5 generation models

https://claude.com/blog/the-new-rules-of-context-engineering-for-claude-5-generation-models
1•opwizardx•18m ago•0 comments

Country went 100% electric vehicles overnight with a drastic approach

https://electrek.co/2026/07/22/laos-bans-gas-diesel-car-imports-ev/
6•sudenmorsian•18m ago•1 comments

Freenet – Services Without Servers [video]

https://www.youtube.com/watch?v=3RBNboYUlVI
1•ciefa•18m ago•0 comments

Chrome's Breaking and Entering

https://unsung.aresluna.org/chromes-breaking-and-entering/
1•ingve•19m ago•0 comments

New North Korean campaign uses fake coding interviews to steal dev credentials

https://www.elastic.co/security-labs/contagious-interview-malware-svg-steganography
5•bmorelli25•19m ago•0 comments

Light Flip Phone

https://www.thelightphone.com/lightflip
1•catchmeifyoucan•21m ago•1 comments

When is an apology not an apology? From an AI boss with a rogue chatbot

https://www.theguardian.com/commentisfree/2026/jul/24/apology-ai-boss-sam-altman-rogue-openai-sta...
1•shadow28•21m ago•0 comments

What syscall-layer tooling cannot see in P2P infrastructure

https://nullrabbit.ai/research/why-syscall-tooling-cannot-see-p2p-infrastructure
1•simonmorley•21m ago•0 comments

Elements of Style Skill (Strunk and White)

https://github.com/obra/the-elements-of-style
1•jrm-veris•24m ago•0 comments

Show HN:LoongForge - High-performance training system for embodied models

https://github.com/baidu-baige/LoongForge/tree/master/loongforge/embodied
1•mindzzz•25m ago•0 comments

Strategy Letter V: Commoditize Your Complements (2002)

https://www.joelonsoftware.com/2002/06/12/strategy-letter-v/
1•louiereederson•25m ago•0 comments

Opus 5 is currently #1 on Artificial Analysis Intelligence Leaderboard

https://artificialanalysis.ai/models
3•aarondong•25m ago•2 comments

Work Is Just Other People

https://yusufaytas.com/work-is-just-other-people
8•yusufaytas•27m ago•0 comments

GitHub PR Creation Down

https://www.githubstatus.com/incidents/jxd617hfwfq8
11•xgvyxia•28m ago•3 comments

The Vision Air Announcement

https://jordan.roher.me/blog/2026/the-vision-air-announcement/
1•jordanroher•28m 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.