frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Indian telecom operator Reliance sabotages Telegram access outside India

https://twitter.com/durov/status/2066945969854234977
1•aayushdutt•3m ago•0 comments

Show HN: SciFigureAI – AI figure maker for research papers

https://scifigureai.com
1•jiangyifeng•6m ago•0 comments

ZFSBootMenu

https://zfsbootmenu.org
1•porjo•8m ago•0 comments

Headroom

https://github.com/chopratejas/headroom
1•marc__1•9m ago•0 comments

Helios: Turn Code into Video

https://www.heliosrender.com
1•wahnfrieden•11m ago•0 comments

Upgrading My Git Embedding Program for Zig 0.16

https://louislefebvre.net/tech/zig-upgrade-16/
1•louislef299•14m ago•0 comments

From AGI to ASI

https://deepmind.google/research/publications/239142/
1•danielmorozoff•18m ago•0 comments

Playbook on how to make an AI Movie (this one got funded)

https://twitter.com/PJaccetturo/status/2066870939644813487
1•titusblair•18m ago•0 comments

MicroGPT and Interactive Walkthrough

https://researcher111.github.io/ML-Security-Public/labs/lab-02/microgpt.html
1•learning2Grow•19m ago•0 comments

Leaked OpenAI financials show $38.5B loss and compute burn

https://runtimewire.com/article/openai-leaked-financials-altman-compute-burn
3•TechApocalypse•19m ago•1 comments

From AGI to ASI

https://arxiv.org/abs/2606.12683
1•danielmorozoff•19m ago•0 comments

Cursor Says 1.5T Parameter Coding Model Is Training on 100k GPUs

https://runtimewire.com/article/cursor-1-5t-model-100000-gpus-compile
2•TechApocalypse•19m ago•0 comments

Hackers Publish Knicks and Madison Square Garden Data Online

https://www.404media.co/hackers-publish-knicks-and-madison-square-garden-data-online/
3•Cider9986•29m ago•2 comments

GE-265 / Dartmouth Time-Sharing System Revisited

https://icm.museum/blog/?p=564
4•sdf_pubnix•30m ago•0 comments

The AI Boom's Hunt for Cash Hits a New Corner of the Bond Market

https://www.wsj.com/finance/investing/the-ai-booms-hunt-for-cash-hits-a-new-corner-of-the-bond-ma...
1•ilreb•32m ago•0 comments

Slopmith (popular Rocksmith inspired guitar game) slapped with DMCA takedown

https://old.reddit.com/r/rocksmith/comments/1u6jg96/dmca_takedown_notice_for_slopsmith/
2•webprofusion•34m ago•1 comments

Show HN: Otty – a native and beautiful terminal emulator

https://otty.sh/
2•ilchenearly•34m ago•0 comments

Revised Rules of Engineering Leadership

https://lethain.com/revised-rules-of-engineering-leadership/
1•RyeCombinator•37m ago•0 comments

Show HN: Building a Stateful AI Agent

https://github.com/surya17495/centri
1•suryaankata•48m ago•0 comments

DIY crane bot that tidies up a room

https://hackaday.com/2026/06/15/building-a-ceiling-based-crane-robot-to-keep-a-room-clean/
4•soupspaces•50m ago•1 comments

Seventeen Camels and Where They Can Take You

https://mathenchant.wordpress.com/2026/06/15/seventeen-camels-and-where-they-can-take-you/
1•akkartik•55m ago•0 comments

Flax debugging: making a hash of things

https://www.gilesthomas.com/2026/06/hashing-jax-parameters
1•gpjt•55m ago•0 comments

Multiple mastra NPM packages compromised

https://github.com/mastra-ai/mastra/issues/18045
3•varunsharma07•55m ago•1 comments

Should nicotine be regulated like a narcotic?

https://www.nature.com/articles/d41586-026-01903-z
3•ilreb•56m ago•1 comments

Show HN: penguinAI – the c.ai alternative focused on privacy, no self-hosting

https://penguinai.pages.dev/
1•telui•57m ago•0 comments

Creating a Dynamic Favicon with Cloudinary

https://www.raymondcamden.com/2026/06/16/creating-a-dynamic-favicon-with-cloudinary
3•mooreds•1h ago•0 comments

A rat sighting in New Zealand can trigger an urgent response

https://www.theguardian.com/world/2026/jun/17/rat-hunters-catchers-predator-free-new-zealand-well...
4•rguiscard•1h ago•0 comments

The Physics of a Fable

https://twitter.com/Rafa_Schwinger/status/2066230802439180447
3•gmays•1h ago•0 comments

The Ease of Expertise

https://fields.medium.com/the-ease-of-expertise-8ad7b8670479
1•mooreds•1h ago•0 comments

The Next Layer of Blockchain Infrastructure Is Execution Memory

https://blog.bridgexapi.io/execution-intelligence-needs-reconstruction
2•Bridgexapi•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.