frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Claude Code vs. Codex Global Usage Leaderboard

https://costhawk.ai/leaderboard
1•optimizethis•35s ago•0 comments

Stop state surveillance in Canada. Stop Bill C-22

https://www.jccf.ca/stop-bill-c-22-stop-surveillance-in-canada/
2•YoctoYARN•1m ago•0 comments

Learning, Fast and Slow: Towards LLMs That Adapt Continually

https://gepa-ai.github.io/gepa/blog/2026/05/11/learning-fast-and-slow/
1•LakshyAAAgrawal•5m ago•0 comments

A New Kind of Family-Separation Crisis

https://www.theatlantic.com/politics/2026/05/honduras-deportations-without-children/687153/
2•paulpauper•5m ago•0 comments

I Was Drowning Running 14 Markets Alone. So I Built a $0.41/Day AI Employee

https://medium.com/@alanscottencinas/i-was-drowning-running-14-markets-alone-so-i-built-a-0-41-da...
1•encinas88•6m ago•0 comments

State media control influences large language models

https://www.nature.com/articles/s41586-026-10506-7
1•paulpauper•6m ago•0 comments

What I've Been Reading

https://marginalrevolution.com/marginalrevolution/2026/05/what-ive-been-reading-288.html
2•paulpauper•6m ago•0 comments

THORChain exploit hits Bitcoin, Ethereum, and BSC: Hackers steal over $10M

https://ambcrypto.com/thorchain-exploit-hits-bitcoin-ethereum-and-bsc-hackers-steal-over-10-mln/
5•wslh•7m ago•1 comments

Tell HN: Audible app used 19.8GB of data while not being used

2•jimnotgym•8m ago•0 comments

Show HN: X open sourced their algorithm

https://www.xalgorithm.xyz/en
2•hsnrique•8m ago•0 comments

Does Trump Mobile know how many stripes are on the American flag?

https://www.theverge.com/gadgets/931347/trump-mobile-t1-phone-logo-flag-stars-stripes
3•droidjj•11m ago•0 comments

Show HN: Emergence World: World building as a way to evaluate LLMs

https://world.emergence.ai/
2•deepakakkil•11m ago•0 comments

ABC News has taken all FiveThirtyEight articles offline

https://twitter.com/baseballot/status/2055309076209492208
6•cmsparks•12m ago•1 comments

Dual Intel Arc Pro B60(48G) Inference, Virtualization, and Gaming Testing

https://www.lttlabs.com/articles/2026/05/15/maxsun-intel-arc-pro-b60-dual-48g-turbo-review
3•LabsLucas•12m ago•0 comments

Ask HN: Reviewing Plan from Plan Mode

3•dennis3124•14m ago•0 comments

Cvl: A C++26 library for mutating consteval state

https://github.com/friedkeenan/cvl
2•friedkeenan•15m ago•0 comments

Don't Design Your Emails (2016)

https://www.gkogan.co/dont-design-emails/
1•downbad_•16m ago•0 comments

PSVL 1.0 – The most comprehensive source-visible license (276 clauses)

https://github.com/BMBOMICH/PSVL
1•BMBOMICH•16m ago•0 comments

Taiwan's chips power the global economy. China holds the leverage

https://restofworld.org/2026/china-taiwan-tsmc-semiconductor-economic-risk/
2•srameshc•16m ago•0 comments

SSH reverse proxy written in Rust

https://github.com/firebadnofire/CentralSSH
2•firebadnofire•19m ago•0 comments

The Fall of the Theorem Economy

https://davidbessis.substack.com/p/the-fall-of-the-theorem-economy
5•cubefox•19m ago•0 comments

AI_glue – drop-in audit and governance for OpenAI and Anthropic apps

https://github.com/simonhansedasi/ai_glue
2•vigcneiugh•22m ago•0 comments

"Should I bring an umbrella to this thread?" – beyond toxicity/content scoring

https://vibecheck.opennotes.ai
1•anateus•22m ago•0 comments

Hackers have breached tank readers at US gas stations

https://www.cnn.com/2026/05/15/politics/iran-hackers-tank-readers-gas-stations
9•berkeleyjunk•23m ago•2 comments

A live shared night sky explore constellations with strangers and make wishes

https://constellations.unlicensedstudio.com/
1•allstern•24m ago•0 comments

Node-prewarm: CLI for Node 25's NODE_COMPILE_CACHE

https://ben3d.ca/blog/introducing-node-prewarm
1•bhouston•24m ago•0 comments

Private agent-to-agent payments on Solana with ZK proofs

https://github.com/agentzeny/snap-public
2•agentzeny•25m ago•0 comments

Lookagain: Sequential code review with fresh agent contexts

https://github.com/HartBrook/lookagain
1•pike00•27m ago•0 comments

Silicon Valley Wants to Put a Chip in Your Brain

https://www.politico.com/news/magazine/2026/05/15/silicon-valley-ai-transhumanism-brain-data-0090...
2•ano-ther•27m ago•0 comments

Write HTML. Render video. Built for agents

https://github.com/heygen-com/hyperframes
1•mv•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.