frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I can bet you've never seen an app like this before

https://play.google.com/store/apps/details?id=com.indie6403.mooninpixels&hl=en_US
1•archit_indie•4m ago•1 comments

South Korea chip workers' bonuses puts central bank on inflation alert

https://www.cnbc.com/2026/06/20/south-korea-tech-samsung-sk-hynix-bonus-bank-of-korea.html
1•kristianp•5m ago•0 comments

Slop: Comment traduire ce mot en françAIs?

https://dictionnaire.lerobert.com/dis-moi-robert/raconte-moi-robert/dessous-des-mots/slop-comment...
1•jjgreen•6m ago•0 comments

Researcher turns wi-fi smart lightbulb into a Banned Book Library

https://www.tomshardware.com/maker-stem/researcher-turns-wi-fi-smart-lightbulb-into-a-banned-book...
1•JeanMarcS•6m ago•0 comments

Europe's heat pumps replace Middle East gas imports twice over

https://www.euronews.com/2026/06/22/europes-heat-pumps-replace-middle-east-gas-imports-twice-over...
1•rustoo•7m ago•0 comments

Value for Money Is All You Need

1•BEKOUTI•7m ago•0 comments

Founders OS – give your AI client your real business context, self-hosted

https://github.com/OurThinkTank/founders-os
1•ourthinktank•11m ago•0 comments

How not to forget what matters

https://www.henrikkarlsson.xyz/p/hypomnemata
1•jger15•11m ago•0 comments

What is prole drift and what to do about it

https://unprole.christianboyle.com/theory
1•lain98•13m ago•0 comments

How to Think About AI Before It's Too Late

https://www.theatlantic.com/podcasts/2026/06/how-to-think-about-ai-before-its-too-late/687644/
1•zb•14m ago•0 comments

FTSE 100 slips after PM Starmer says will resign

https://www.reuters.com/world/uk/london-shares-slip-after-pm-starmer-says-will-resign-2026-06-22/
1•wilsonfiifi•16m ago•0 comments

Ask HN: Any AI native Anki alternatives?

2•shadag•19m ago•0 comments

Callback – Less Scroll. More Soul

https://commodore.net/
1•thorin•20m ago•0 comments

Vibe Management

https://blog.jenkster.com/2026/06/vibe-management/
1•krisajenkins•20m ago•0 comments

I Decoupled Attention from Weights [video]

https://www.youtube.com/watch?v=1jGR4zqpyKA
1•aspirin•23m ago•0 comments

How a Microsecond-Level Low-Latency Engine Works

https://medium.com/@DolphinDB_Inc/c-speed-without-c-pain-inside-a-microsecond-level-low-latency-e...
2•CrazyTomato•23m ago•0 comments

In Defense of the Marginal Baby

https://caseyhandmer.wordpress.com/2026/06/22/in-defense-of-the-marginal-baby/
1•jger15•24m ago•0 comments

Vibe-coding niche Mac apps

https://cornfieldlabs.github.io/posts/vibecoding-niche-mac-apps/
2•cornfieldlabs•26m ago•0 comments

LetterBucket – A newsletter platform for owning your audience

https://letterbucket.com/
2•SergioPulido•28m ago•0 comments

Generative AI Music Attribution Rethinks Royalties

https://spectrum.ieee.org/ai-music-attribution
2•rbanffy•30m ago•0 comments

Show HN: Saar Agentic Orchestration Platform

https://github.com/Poi5eN/Nexus
2•Poi5eN•33m ago•1 comments

OCaml 5.5.0 Released

https://discuss.ocaml.org/t/ocaml-5-5-0-released/18265
3•birdculture•37m ago•0 comments

Hilarious German Compound Nouns you won't want to miss

https://www.rayburntours.com/blog/2016/10/03/25-hilarious-german-compound-nouns-wont-want-miss/
3•Tomte•40m ago•2 comments

Reality has a surprising amount of detail (2017)

https://johnsalvatier.org/blog/2017/reality-has-a-surprising-amount-of-detail
4•tosh•43m ago•0 comments

Show HN: Onbalance – privacy-first cashflow planning app got a multiuser update

https://onbalance.app/
2•doctorsolberg•48m ago•0 comments

GitHub Copilot improves productivity 40%

https://arxiv.org/abs/2606.00438
1•copy-pashte•52m ago•0 comments

Data centers become the face of AI backlash

https://www.axios.com/2026/06/22/ai-data-center-backlash-poll
2•ilreb•56m ago•0 comments

Productivity: Bookmarkr Chrome plugin with Visual and organized grid

https://chromewebstore.google.com/detail/bookmarkr-—-visual-bookma/lianafemkbankodapdaokiefoffi...
1•mnomansd•56m ago•0 comments

Bitcoin is stuck near $64,000 as ETF outflows reach a sixth week

https://www.techsentiments.com/article/2026/06/22/live-markets-bitcoin-is-stuck-near-64000-as-etf...
1•rajsuper123•59m ago•0 comments

Black Box Probing: A Security Analysis of Xiaomi's MJA1 Secure Chip

https://blog.quarkslab.com/black-box-probing-a-security-analysis-of-xiaomis-mja1-secure-chip.html
2•ahlCVA•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.