frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Chicken Soup for the Soul publisher sues tech companies over AI training

https://www.reuters.com/legal/transactional/chicken-soup-soul-publisher-sues-tech-companies-over-...
1•1vuio0pswjnm7•1m ago•0 comments

Oracle Credit Risk Hits Near 18-Year High on AI Debt Load Angst

https://www.bloomberg.com/news/articles/2026-07-20/oracle-credit-risk-hits-near-18-year-high-on-a...
1•1vuio0pswjnm7•6m ago•0 comments

TCGRoll

https://tcgroll.com
1•drewsly•12m ago•0 comments

China weighs tighter export controls on AI models and chips

https://www.ft.com/content/6049a031-9e9b-464c-97bb-414da04d5a6a
2•JumpCrisscross•14m ago•0 comments

AI Nutrition Facts

https://www.g9labs.com/2026/07/20/ai-nutrition-facts/
1•gsgnine•15m ago•0 comments

Insightix – when Polymarket and Deribit price the same event differently

https://insightix.io
1•chriswolff•18m ago•0 comments

Trump's latest AI czar has resigned

https://techcrunch.com/2026/07/20/trumps-latest-ai-czar-has-already-resigned/
1•adithyaharish•18m ago•0 comments

Assessing State Reaction to the Supreme Court's Undermining of Property Rights

https://statecourtreport.org/our-work/analysis-opinion/assessing-state-reaction-supreme-courts-un...
2•1vuio0pswjnm7•18m ago•0 comments

Havana syndrome: US to compensate victims

https://www.bmj.com/content/394/bmj-2026-100312
1•Coral-Tiny•19m ago•0 comments

Show HN: HyCanvas, a free self-hostable Canva alternative

https://github.com/hyscaler/HyCanvas
1•devadattas•20m ago•0 comments

France's edge in the AI race is cheap energy

https://www.politico.eu/article/frances-edge-in-the-ai-race-is-cheap-energy-if-american-big-tech-...
1•leonidasrup•22m ago•0 comments

Reproducing the Jacobian conjecture counterexample in two cells of SymPy

https://korbonits.com/blog/2026-07-20-trust-nothing-verify-everything/
1•korbonits•23m ago•1 comments

Retriever: A Programming Framework for Closed-Loop Robot Agents

https://retriever.systems/blog/
1•ilreb•24m ago•0 comments

AI's Next Big Breakthrough Is Looking Pretty Scary

https://www.bloomberg.com/opinion/articles/2026-07-21/self-improving-ai-models-look-genuinely-scary
2•petethomas•24m ago•0 comments

Reverse-engineering is cheap now

https://simonwillison.net/2026/Jul/20/cheap-reverse-engineering/
3•edward•28m ago•0 comments

Brain runs on about twenty watts

https://medium.com/@hugo.minney/the-20-watt-brain-can-we-connect-brains-for-computing-f8981b9ca7f9
2•giuliomagnifico•29m ago•1 comments

A Factory Reset Left the Previous Owner's GPS Coordinates on a Kasa Camera

https://www.vincentschmalbach.com/factory-reset-kasa-camera/
1•vincent_s•30m ago•0 comments

The Galaxy Card Is Samsung's Answer to the Apple Card

https://www.wired.com/story/galaxy-card-is-samsung-answer-to-the-apple-card/
1•divbzero•30m ago•0 comments

Show HN: Use This Instead of 4Chan

https://interactink.vercel.app/interactink.html
1•squeezes•32m ago•0 comments

How to Build the ChatGPT Typing Effect in Modern JavaScript

https://jsdev.space/howto/chatgpt-typing-effect/
1•javatuts•34m ago•0 comments

9 months building an advanced StarCraft reporting tool with Go and Claude

https://marianogappa.github.io/thoughts/building-an-advanced-starcraft-reporting-tool/
1•maloga•36m ago•0 comments

Do we just want slaves?

https://www.yashthapliyal.com/blog/do-we-just-want-slaves
12•yash1hi•43m ago•8 comments

Show HN: Claudexor – quota-aware routing for Claude Code, Codex, and Cursor

https://github.com/razzant/claudexor
2•abstractDL•43m ago•0 comments

Zoom is now Chrome only

https://zoom.us/test
3•asdfsa32•44m ago•3 comments

Bloomberg's Last Stand

https://theterminalist.substack.com/p/bloombergs-last-stand
1•hubraumhugo•45m ago•1 comments

Unity ships a CLI that lets AI agents operate running game projects

https://runtimewire.com/article/unity-ships-a-cli-that-lets-ai-agents-operate-running-game-projects
1•ryanmerket•46m ago•0 comments

Show HN: Ex Situ – open-source spatial index of displaced cultural artifacts

https://exsitu.app/map
9•hbyel•51m ago•0 comments

Church was sacred, now it is theater

https://www.flocksafety.com/industries/places-of-worship
3•maieuticagent•51m ago•1 comments

Looking for contributors – trie based memory efficient LLM runner

https://github.com/oteomamo/SALT
1•omamo•54m ago•0 comments

ShotPlan: Cinematic Video Generation with Learnable Planning Token

https://pensioner-11.github.io/ShotPlan/
2•ilreb•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.