frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cat Hair Mustache Puzzle

https://en.wikipedia.org/wiki/Cat_hair_mustache_puzzle
1•LookAtThatBacon•4m ago•0 comments

chDB is an in-process OLAP SQL Engine powered by ClickHouse

https://github.com/chdb-io/chdb
1•tosh•5m ago•0 comments

CostLoop – track SaaS renewals and stop paying for forgotten subscriptions

https://costloop.app/blog/avoid-forgotten-saas-renewals/
1•Cech1337•6m ago•0 comments

Visible Boundaries Earn Trust

https://blog.vigilharbor.com/visible-boundaries-earn-trust
1•Calvin-Gibson•8m ago•1 comments

Apposters – Generate a full project website from a GitHub repository

https://apposters.com/
1•loeona•9m ago•0 comments

Kache – a zero-copy build cache for Rust

https://kunobi.ninja/blog/kache-v0-5-0
1•ainhoaa•14m ago•1 comments

NHS Replaces a&E Receptionists with iPads

https://www.telegraph.co.uk/news/2026/06/10/nhs-replaces-ae-receptionists-with-ipads/
3•ksec•15m ago•0 comments

Show HN: Recreate Thinking Machines 276B voice demo with duct tape and 8B model

https://github.com/kouhxp/cheap-im
1•mrkn1•17m ago•0 comments

KPMG report on benefits of AI contained AI hallucinations

https://www.ft.com/content/b3828e92-4961-4b39-84f0-c42f33be3c3f
1•calcifer•17m ago•1 comments

Show HN: Goloop – An agentic loop on your terminal

https://mantyx-io.github.io/goloop/
1•mantyx•22m ago•0 comments

An Interview with Intel's Kira Boyko: Xeon 6's Product Director

https://chipsandcheese.com/p/an-interview-with-intels-kira-boyko
1•rbanffy•22m ago•0 comments

Biggest IPOs in History Are Collapsing. Nobel Economist Says Run

https://www.youtube.com/watch?v=IOaYnEf5ZeY
3•quantummagic•23m ago•0 comments

The quiet collapse of British universities

https://www.arguably.uk/p/the-quiet-collapse-of-british-universities
3•theanonymousone•24m ago•0 comments

Auto mode for pi.dev. An LLM reviews your coding agent's commands

https://github.com/vinzenzu/pi-auto-reviewer
1•vinzenzu•25m ago•2 comments

Docker Sandbox Kit for Mistral Vibe CLI

https://github.com/cdr-chakotay/sbx-mistral
1•noodlebird•25m ago•0 comments

Is reviewing pull requests slowing you down?

https://www.pr-preview.com
2•VladNiculescu•31m ago•3 comments

Only Bounds: the most impactful Rust change that you’ve never heard of

https://smallcultfollowing.com/babysteps/blog/2026/06/09/only-bounds/
1•MrBuddyCasino•33m ago•0 comments

When the Watcher Became the Confidant – How AI Befriends and Infers Our Children

https://jorgepereiracampos.substack.com/p/when-the-watcher-became-the-confidant
1•BlinkyPT•35m ago•0 comments

Pokémon Go data trained AI that could assist military drones in war zones

https://www.theguardian.com/technology/2026/jun/12/pokemon-go-data-trained-ai-that-could-assist-m...
2•beardyw•36m ago•0 comments

Europe 2031 – What getting AI wrong means for us

https://europe2031.ai/
2•sarusso•37m ago•0 comments

Someone DM'd me for a pitch deck. I built a deck generator instead(now $17K MRR)

https://www.magicslides.app
1•theindianappguy•37m ago•1 comments

Mineral requirements for clean energy transitions

https://www.iea.org/reports/the-role-of-critical-minerals-in-clean-energy-transitions/mineral-req...
1•leonidasrup•42m ago•0 comments

India's workers are training AI robots to take their jobs

https://www.aljazeera.com/gallery/2026/6/11/photos-indias-workers-are-training-ai-robots-to-take-...
1•rustoo•50m ago•2 comments

Build a free AWS security lab on your laptop with LocalEmu

https://builder.aws.com
1•CloudHackerFr•50m ago•0 comments

Deezer's new tool can identify AI music from Spotify, Apple Music, and others

https://techcrunch.com/2026/06/11/deezers-new-tool-can-identify-ai-music-from-spotify-apple-music...
1•JeanKage•51m ago•0 comments

The Jqwik Anti-AI Affair

https://blog.johanneslink.net/2026/06/09/the-jqwik-anti-ai-affair/
2•birdculture•52m ago•0 comments

Building a plugin system without runtime, storage, or shared JavaScript context

https://tolgee.io/blog/building-a-plugin-system-for-tolgee-without-a-runtime-storage-or-shared-js...
1•jancizmar•54m ago•0 comments

Apple and London's Met Police have a new plan to make stolen iPhones useless

https://www.shortlist.com/tech/apple-and-londons-metropolitan-police-have-a-new-plan-to-make-stol...
1•_____k•54m ago•0 comments

Report on an Unidentified Space Station

https://sseh.uchicago.edu/doc/roauss.htm
1•paulmooreparks•58m ago•0 comments

Digital Twin

https://en.wikipedia.org/wiki/Digital_twin
1•the-mitr•58m 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.