frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Productivity Effects Across Generations of AI Coding Tools

http://muratbuffalo.blogspot.com/2026/06/writing-code-vs-shipping-code.html
1•ingve•3m ago•0 comments

A game's homemade crypto fell to a DIY supercomputer

https://www.ud2.rip/blog/towerunite/
1•vmfunc•5m ago•0 comments

Siri AI for iPhones and iPads will be delayed indefinitely in the EU

https://www.engadget.com/2189932/siri-ai-for-iphones-and-ipads-will-be-delayed-indefinitely-in-th...
1•adwmayer•7m ago•0 comments

QuillOS: The only Swift-first OS after macOS

https://quillOS.cloud/
1•ljlolel•9m ago•1 comments

Do Better Research with NotebookLM

https://blog.google/innovation-and-ai/products/notebooklm/better-research-notebooklm/
1•nkko•13m ago•0 comments

Is There a Link Between Listening to Music and Mental Health?

https://www.aesthetics.mpg.de/en/newsroom/news/news-article/article/is-there-a-link-between-liste...
1•XzetaU8•14m ago•0 comments

SpaceX CFO telecom analyst discuss

https://twitter.com/elonmusk/status/2064196509780893957
1•__patchbit__•16m ago•0 comments

Suprised to see the open data sources on internet

1•akd29121988•17m ago•0 comments

Stop Asking Claude to Agree with You

https://www.questionpro.com/engineering/engineering/developer%20tools/ai%20&%20machine%20learning...
1•skyDoesWork38•25m ago•0 comments

NASA's X-59 Aircraft Flies Supersonic for First Time

https://www.nasa.gov/aeronautics/x-59-first-supersonic-flight/
3•divbzero•29m ago•0 comments

SpaceX offers details on orbital data center satellites

https://spacenews.com/spacex-offers-details-on-orbital-data-center-satellites/
1•MrBuddyCasino•32m ago•0 comments

Show HN: I created an app to copy OTP from Google Voice to your macOS Clipboard

https://github.com/ptrinh/Notiful
1•ptrinh•37m ago•0 comments

iPhone almost like a birth control device, fertility rates falling after 2007

https://www.indiatoday.in/technology/news/story/iphone-almost-like-a-birth-control-device-fertili...
1•rustoo•40m ago•0 comments

Ask HN: Do you need go-to-market strategy at early stage?

1•2ero_wf•44m ago•0 comments

Built to benefit everyone: our plan By Sam Altman and Jakub Pachocki

https://openai.com/index/built-to-benefit-everyone-our-plan/
1•echan00•47m ago•1 comments

Show HN: Clawcall – give your self-hosted OpenClaw agent inbound phone calls

https://github.com/CODEANDTRUST/clawcall
1•pakbry•49m ago•0 comments

L'Affaire Siloxane

https://mceglowski.substack.com/p/laffaire-siloxane
1•idlewords•50m ago•0 comments

Make Something Wonderful

https://joshuawold.com/make-something-wonderful/
1•ethanplant•57m ago•0 comments

Vulnerability and malware checks in UV: uv audit, malware check in uv add, sync

https://astral.sh/blog/uv-audit
3•Terretta•1h ago•1 comments

OxyJen v0.5: a deterministic graph runtime for AI workflows

https://github.com/11divyansh/OxyJen
1•bdivyansh11•1h ago•0 comments

The Capability Curve Has No Memory

https://medium.com/@vektormemory/the-capability-curve-has-no-memory-7c5fe5cde09f
1•vektormemory•1h ago•1 comments

ThumbLoop: Thumbnails Which Get Clicks

https://loop-tube.com/blog/how-to-make-youtube-thumbnails
1•yashness•1h ago•0 comments

Apple Investors Give Lukewarm Reaction to New Siri, AI Platform

https://www.bloomberg.com/news/articles/2026-06-08/apple-unveils-next-generation-of-ai-platform-i...
1•petethomas•1h ago•0 comments

Gram Newton-Schulz: A Fast, Hardware-Aware Newton-Schulz Algorithm for Muon

https://tridao.me/blog/2026/gram-newton-schulz/
2•jxmorris12•1h ago•0 comments

Siri AI at WWDC 2026

https://simonwillison.net/2026/Jun/8/wwdc/
2•lumpa•1h ago•0 comments

I built a free car lease transfer marketplace after the paid ones burned me

https://www.trademylease.com
2•mknweb•1h ago•0 comments

CRDTs merge concurrent edits. Why not concurrent creation?

https://loro.dev/blog/mergeable-containers
3•czx111331•1h ago•0 comments

OpenLTM – Local, self-decaying memory for AI coding agents

https://github.com/RohiRIK/OpenLtm
2•RohiRik•1h ago•0 comments

What Apple Knows About AI That Silicon Valley Won't Admit

https://www.thealgorithmicbridge.com/p/what-apple-knows-about-ai-that-silicon
5•CharlesW•1h ago•3 comments

Kalshi and Polymarket crack down on paid influencers claiming election fraud

https://text.npr.org/nx-s1-5846806
4•1659447091•1h ago•1 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.