frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Feds move to formally allow sports "trading" on prediction markets

https://www.axios.com/2026/06/10/cftc-prediction-markets-sports-event-contract-rules
1•1vuio0pswjnm7•5m ago•0 comments

Nearly Everyone, Everywhere, Veers Left When Walking

https://www.nytimes.com/2026/06/10/science/humans-walking-veer-left-counterclockwise.html
2•bryanrasmussen•6m ago•1 comments

Agentic Frameworks

https://astledsa.substack.com/p/agentic-frameworks
1•astledsa•8m ago•0 comments

Adafruit files suit against Flux.ai over legal threats [pdf]

https://storage.courtlistener.com/recap/gov.uscourts.cand.471648/gov.uscourts.cand.471648.1.0.pdf
2•russdill•11m ago•1 comments

TokenPulse – Live token and rate limit tracker for Claude and ChatGPT

https://chromewebstore.google.com/detail/tokenpulse-—-chatgpt-clau/oimclhdbljodjkankcnalklchfce...
1•Anoop69_•12m ago•0 comments

TikTok

https://tiktok-guahdfjhshrk.com
1•DARKNNESSANKC•13m ago•0 comments

Grit by GitButler: A from-scratch reimplementation of Git in idiomatic Rust

https://github.com/gitbutlerapp/grit
1•maxloh•17m ago•0 comments

It blocked us at 'hello ' Anthropic Fable 5 refusing innocuous prompts

https://www.theregister.com/ai-and-ml/2026/06/10/anthropic-claude-fable-5-refuses-innocuous-promp...
4•abliterationai•18m ago•0 comments

I built a tool that reads code and lists features with file:line refs

https://www.verifiablyai.com/projects/requests
1•arvvind•21m ago•0 comments

Join-Calculus

https://en.wikipedia.org/wiki/Join-calculus
1•tosh•22m ago•0 comments

See what your AI coding agent is doing with Datadog Lapdog

https://chrisebert.net/see-what-your-ai-coding-agent-is-doing-with-datadog-lapdog/
1•cebert•28m ago•0 comments

Terms of Service Ban AI Agents from Using Stack Overflow for Agents

https://meta.stackoverflow.com/questions/438910/introducing-stack-overflow-for-agents
2•nomilk•29m ago•0 comments

Sales Is the Customer Clock

https://hari.computer/sales-is-the-customer-clock
2•andytratt•29m ago•0 comments

The Algorithm for Precision Medicine

https://www.janestreet.com/tech-talks/algorithm-for-precision-medicine/
2•vismit2000•31m ago•0 comments

Musk Looks to an Army of Loyalists to Help Make Him a Trillionaire

https://www.wsj.com/articles/musk-spacex-ipo-retail-traders-a13e9030
3•1vuio0pswjnm7•33m ago•0 comments

TrueNAS Is Now Red Hat OpenShift Certified

https://www.truenas.com/blog/truenas-openshift-certified/
2•ofrzeta•36m ago•1 comments

Oracle Machine

https://en.wikipedia.org/wiki/Oracle_machine
1•marysminefnuf•39m ago•0 comments

Ask HN: What software feels exceptionally polished?

2•Adam-Hincu•43m ago•7 comments

The forgotten Scots who gave Kafka his voice

https://engelsbergideas.com/reviews/the-forgotten-scots-who-gave-kafka-his-voice/
1•the-mitr•45m ago•0 comments

Germany's €100B bid to make the trains run on time

https://www.ft.com/content/db75e347-b13b-4753-8130-6301bb55c040
1•latentframe•46m ago•0 comments

Xbox Plans Significant Layoffs as New CEO Plans Overhaul

https://www.bloomberg.com/news/articles/2026-06-10/xbox-plans-significant-layoffs-as-it-transform...
4•reasonableklout•49m ago•0 comments

The Evolution of 'More Like This

https://medium.com/@s_nikolaev/the-evolution-of-more-like-this-049c88d53332
2•snikolaev•49m ago•0 comments

ML Job Interviews: The Ultimate Guide

https://silviasapora.github.io/blog/ml-interviews.html
2•mellosouls•50m ago•0 comments

Mr. Chess for Intellivision

https://nanochess.org/mr_chess.html
2•tosh•52m ago•0 comments

I made a addicting math puzzle game

https://www.sumgrids.com/
1•mattmerrick•54m ago•0 comments

Software Wasteland and the Data-Centric Revolution

https://technicspub.com/software_wasteland/
1•teleforce•56m ago•0 comments

Anthropic being a good citizen or pushing ideology?

https://www.anthropic.com/policy-on-the-ai-exponential
1•morpheos137•56m ago•5 comments

Trump Built a New Passport.gov Website

https://thedreydossier.substack.com/p/trump-built-a-new-passport-website
1•K7PJP•57m ago•0 comments

The Data Detective at the Carnival

https://technicspub.com/data-detective/
1•teleforce•57m ago•0 comments

We don't have food shortage issue, we have a Farmer shortage issue

2•QueenoftheNorth•1h 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.