frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Cost of Overfitting the Harness

https://www.dbreunig.com/2026/05/10/overfitting-the-harness.html
1•gmays•1m ago•0 comments

The Emotional Cost of AI-Assisted Coding

1•northfield27•3m ago•0 comments

UK to send drones, jets and warship to join defensive mission securing Hormuz

https://www.reuters.com/world/uk-send-drones-jets-warship-join-defensive-mission-securing-strait-...
1•geox•3m ago•0 comments

EU iPhones Get AirPod Pairing and Notifications for Third-Party Wearables

https://www.macrumors.com/2026/05/11/ios-26-5-eu-third-party-wearable-changes/
1•vrganj•5m ago•0 comments

The hardware isn't broken, the documentation is

https://essenceia.github.io/thoughts/broken_doc/
1•random__duck•7m ago•1 comments

Anthropic's Computer Use API: How AI Is Navigating Your Desktop Now

https://www.aigridnews.com/anthropics-computer-use-api-how-ai-is-navigating-your-desktop-now
1•rolph•12m ago•0 comments

Anthropic publicly releases AI tool that can take over the ' mouse cursor(2024)

https://arstechnica.com/ai/2024/10/anthropic-publicly-releases-ai-tool-that-can-take-over-the-use...
1•rolph•15m ago•0 comments

Show HN: Duckflix, an open-source self-hosted media streaming platform

https://github.com/duckflixapp/duckflix
1•patakxd•17m ago•0 comments

The Soul in the Machine

https://netwars.pelicancrossing.net/2026/05/08/the-soul-in-the-machine/
1•ColinWright•17m ago•0 comments

Waiting for Joe

http://essaysnthings.blogspot.com/2008/05/waiting-for-joe.html
1•JumpCrisscross•18m ago•0 comments

Anthropic says newest lawyer tools are 'like giving an engineer a legal degree'

https://www.businessinsider.com/anthropic-expands-legal-ai-tools-claude-cowork-2026-5
1•cebert•19m ago•0 comments

Kagi Snaps

https://daringfireball.net/linked/2026/05/12/kagi-snaps
1•frizlab•20m ago•0 comments

XCA: Breaking Confidential Computing via the Interconnect

https://xca-attacks.github.io/overview/
1•pipogipo•20m ago•0 comments

State of Code Developer Survey report [pdf]

https://www.sonarsource.com/state-of-code-developer-survey-report.pdf
2•b-man•22m ago•0 comments

Curating cross-medium galleries (books, films, music, art, photos, fashion)

https://tryfractart.com/
1•helenxyz•27m ago•0 comments

Do teachers need advanced degrees?

https://www.cremieux.xyz/p/do-teachers-need-advanced-degrees
3•renameme•28m ago•3 comments

Show HN: GIF Pile. a site to make piles of GIFs

https://gifpile.com/
1•FatCat1979•29m ago•0 comments

I've been running an AI editorial pipeline on the Iran-US war for 75 days

https://worldwarwatcher.com
1•tamarru•29m ago•0 comments

Golden Speakers: Building a native-like accent in your 2nd/3rd/4th+ language

https://loxai.tech
1•audreyfei•30m ago•1 comments

Supermicro and the ghost of Chinagate: The evolution of a multinational scam

https://thehill.com/opinion/international/5859528-supermicro-ai-servers-china-smuggling/
1•tart-lemonade•31m ago•0 comments

What Satellite Images Reveal About Iran's Attacks on U.S. Bases [video]

https://www.youtube.com/watch?v=JRnoi3repjo
2•Teever•35m ago•0 comments

Russian ship that sank may have been carrying nuclear reactors to North Korea

https://www.theguardian.com/world/2026/may/12/russian-ship-ursa-major-sank-spain-nuclear-reactors...
3•athousandsteps•35m ago•0 comments

Open Vibe – an interactive web dev course in Claude Code

https://openvibe.sh/
1•matijash•35m ago•1 comments

AI Strategy Has a Blind Spot: The Network

https://www.kentik.com/blog/your-ai-strategy-has-a-blind-spot-the-network/
1•oavioklein•35m ago•0 comments

Shame them, shun them, ban them, beat them

https://www.experimental-history.com/p/shame-them-shun-them-ban-them-beat
1•pavel_lishin•36m ago•0 comments

Check Startup Names for Availability

https://nameclaim.xyz
1•chaghighat•38m ago•0 comments

Seriously, Give Kagi a Try

https://daringfireball.net/linked/2026/05/12/seriously-give-kagi-a-try
3•frizlab•38m ago•3 comments

Intercom Becomes Fin

https://www.intercom.com/blog/today-intercom-becomes-fin/
3•tjwds•39m ago•0 comments

Meta employees protest against mouse tracking tech at US offices

https://www.reuters.com/sustainability/society-equity/meta-us-employees-organize-protest-against-...
14•delichon•42m ago•5 comments

How a 150-year-old Japanese workshop survived the age of slop and distraction

https://bigthinkmedia.substack.com/p/how-a-small-shop-in-kyoto-connects
1•Duanemclemore•42m 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.