frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

If Scrubs Hurt, Your ZFS Design Is Broken

https://klarasystems.com/articles/if-scrubs-hurt-your-zfs-design-is-broken/
1•assimpleaspossi•23s ago•1 comments

Google Lawsuit Against SerpApi over Scraping Search Results Has Been Dismissed

https://www.seroundtable.com/google-lawsuit-serpapi-dismissed-41731.html
1•freediver•6m ago•0 comments

You Opened a Credit Card. ICE Now Knows Where You Live

https://nonogra.ph/you-opened-a-credit-card-ice-now-knows-where-you-live-07-22-2026
1•arkhiver•7m ago•0 comments

Local agent first AI search optimization tooling

https://github.com/Canonry/canonry
1•arberx•8m ago•0 comments

Tesla says 'Robotaxi' is expanding – its own chart shows it's not

https://electrek.co/2026/07/22/tesla-robotaxi-growth-flat-own-chart-q2-2026/
1•TheAlchemist•8m ago•0 comments

Prospective – Monte Carlo cash flow risk simulator for small businesses

https://cashflow-sim.vercel.app/
1•Raphael_Sena•11m ago•0 comments

Understanding A/B Testing in 5 Minutes

https://medium.com/@gbenga-awodokun/7-basic-things-data-scientists-wish-their-pms-knew-about-a-b-...
1•newadays•14m ago•0 comments

Chaos Begets Chaos; Order Begets Order: Agentic Coding as Crystallisation

https://medium.com/@rotbart/chaos-begets-chaos-order-begets-order-agentic-coding-as-crystallisati...
2•rotbart•15m ago•0 comments

Why I'm building a note taking app without AI

https://withdocket.com/blog/why-im-building-a-note-taking-app-without-ai
2•davnicwil•16m ago•2 comments

Some AI Systems Differentially Downplay Their Creators' Controversies

https://papers.ssrn.com/sol3/papers.cfm
2•JumpCrisscross•16m ago•0 comments

US House Narrowly Passes Controversial National Defense Authorization Act

https://www.congress.gov/bill/119th-congress/house-bill/8800/text
2•Jimmc414•16m ago•1 comments

Show HN: Vivace – A single-process Qt media player with interactive DVD menus

https://github.com/Sportacandy/vivace
2•Sportacandy•18m ago•0 comments

Amorality and greed at Silicon Valley's favourite university

https://www.economist.com/culture/2026/07/02/amorality-and-greed-at-silicon-valleys-favourite-uni...
2•1vuio0pswjnm7•18m ago•0 comments

Transcoding Billions of Unicode Characters per Second with SIMD (2022)

https://arxiv.org/abs/2109.10433
1•Rendello•19m ago•0 comments

Deep Dive on Actuators

https://robotic-learning.com/actuators/
1•jordancarr•19m ago•0 comments

Is OpenClaw Dead?

https://www.reddit.com/r/openclaw/s/YTWK6S0Pjj
1•ridruejo•20m ago•1 comments

Thinking Machines dropped RoPE, and it's a good idea

https://idlemachines.co.uk/essays/inkling
1•smaddrellmander•20m ago•0 comments

The Army Is Burning Through Its AI Tokens

https://www.wired.com/story/the-army-is-burning-through-its-ai-tokens/
1•jnord•21m ago•0 comments

Bitwave Launches Agentic Finance Initiative

https://www.bitwave.io/blog/bitwave-ai-command-line-interface
1•Jesse_Dykstra•21m ago•1 comments

14.88T parameter weights, 358 MB, free

https://github.com/pluscoder30-cpu/conscious-field-transformer
1•soul-vector•23m ago•0 comments

deleted

https://testsfinal432.com/
1•akrawczukpl•26m ago•0 comments

Dirty-Pedit (CVE-2026-46331): Novel page-cache corruption LPE exploit

https://twitter.com/z3ta_rjt/status/2080066256519205141
2•rjt-gupta•26m ago•0 comments

Wall Street Banks Trading Parts of $35B AI Chip Deal

https://www.bloomberg.com/news/articles/2026-07-22/wall-street-banks-trading-parts-of-35-billion-...
1•petethomas•27m ago•0 comments

OpenAI says its AI agent broke out of testing sandbox to hack Hugging Face

https://arstechnica.com/ai/2026/07/how-an-openai-benchmark-test-turned-into-a-real-world-cyberatt...
3•sbulaev•27m ago•1 comments

What Does Fba Means

https://theblackaffect.com/what-is-a-foundational-black-american/
1•MWApex•27m ago•0 comments

What Happened When Flock Came to My Town

https://nonogra.ph/what-happened-when-flock-came-to-my-town-07-22-2026
1•arkhiver•30m ago•0 comments

Scientists Dismissing Covid Lab Leak Privately Lost Confidence in Paper

https://www.nationalreview.com/news/scientists-behind-paper-dismissing-covid-lab-leak-privately-l...
1•petethomas•30m ago•0 comments

TWC Classics

https://twcclassics.com/
2•stefanpie•34m ago•0 comments

What Teaching a Machine to Think Taught Me

https://medium.com/@alanscottencinas/what-teaching-a-machine-to-think-taught-me-d3fe170a3f06
2•encinas88•37m ago•0 comments

Ravenspire – watch your Claude Code and Codex agents as a JRPG

https://github.com/Kapala-Solutions/ravenspire
2•vribeirocmp•40m 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.