frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Blobly

https://blobly.medv.io/
1•medv•2m ago•0 comments

App Store Personalized Recommendations and Keylogging

https://mjtsai.com/blog/2026/06/12/app-store-personalized-recommendations-and-keylogging/
1•latexr•3m ago•0 comments

'Who is going to pay us when we're replaced by robots?'

https://www.theguardian.com/global-development/2026/jun/24/indian-factory-workers-told-film-thems...
1•robtherobber•6m ago•0 comments

Regular expressions that work "everywhere"

https://www.johndcook.com/blog/2026/06/23/regex-everywhere/
1•ibobev•6m ago•0 comments

Show HN: AI Use Disclaimer

https://libls.org/ai-use
1•lionkor•6m ago•0 comments

We're making Bunny DNS free: because a faster internet won't build itself

https://bunny.net/blog/were-making-bunny-dns-free/
4•dabinat•10m ago•0 comments

The Neural Basis of Laughter

https://www.cell.com/trends/neurosciences/fulltext/S0166-2236(26)00099-8
2•XzetaU8•12m ago•0 comments

Science Fiction and Fantasy Book Awards

https://sffawards.com/
2•EvgeniyZh•12m ago•1 comments

If AI Helped Me Write This, Is It Still Mine?

https://kunyuan.substack.com/p/09public-essayif-ai-helped-me-write
2•hufdr•13m ago•0 comments

Show HN: WebBase-III – dBASE III rebuilt in the browser with its own interpreter

https://github.com/DDecoene/WebBaseIII
2•ddecoene•15m ago•0 comments

SCC Technical Assistance Program

https://nerocam.com/scc_tap.asp
3•luu•15m ago•0 comments

Two Indexed Hash Tables

https://vnmakarov.github.io/data%20structures/c/c++/open-source/2026/06/23/two-indexed-hash-table...
2•ibobev•15m ago•0 comments

Grok Build 0.1: Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/grok-build-0-1-06-16
3•himata4113•20m ago•2 comments

Show HN: A minimal and beautiful card component built with pure CSS

https://ufoym.com/slicard/
4•ufoym•22m ago•0 comments

Top June 2026

https://top500.org/lists/top500/2026/06/
3•Alien1Being•22m ago•0 comments

Show HN: Language App to Learn Actual Local Slang/Dirty Talk

https://www.realtalktutor.app/
2•travel-insider•25m ago•0 comments

How to Win a Space War

https://www.a16z.news/p/how-to-win-a-space-war
3•hoag•27m ago•0 comments

Italian startup working on a 400B language model (Italian)

https://www.ilsole24ore.com/art/frontier-grand-challenge-domyn-guidera-progetto-dell-ai-sovrana-A...
3•theanonymousone•28m ago•0 comments

Cory Doctorow on the Right – and Wrong – Way to Criticize AI

https://jacobin.com/2026/06/ai-bubble-layoffs-workers-copyright
4•thunderbong•28m ago•0 comments

A Founder Rebuilt Consistency and Completed 90% of His Weekly Goals

https://karlgusta.medium.com/how-a-founder-rebuilt-consistency-and-completed-90-of-his-weekly-goa...
1•Esimit•29m ago•0 comments

Everyday I play a game of Boggle. The next day you try and beat me

https://beatmeatboggle.com/
1•avadinhvu•30m ago•0 comments

Comail

https://comail.at/
1•bladeee•32m ago•0 comments

Any growth hacking tips to get my app it's first 10 users?

1•yudomax•32m ago•4 comments

EU joins US pact to break reliance on Chinese AI supply chains (no sovereignty)

https://www.ft.com/content/681c33a0-dcb4-4a82-9aa0-8a9172f7e5bc
3•alecco•34m ago•3 comments

GitHub Is Becoming a Giant AI Code Dump

https://maref.cc/en/blog/vibe-coding-crisis/
21•Athena-maref•39m ago•22 comments

Chinese supercomputer powered by homegrown chips tops global ranking

https://www.cnn.com/2026/06/24/tech/china-tops-world-supercomputer-ranking-intl-hnk
3•A_D_E_P_T•39m ago•0 comments

Outer Product as an Introduction to APL and a Pretty Cool Thing in General (2020) [video]

https://www.youtube.com/watch?v=WlUHw4hC4OY
1•tosh•42m ago•0 comments

The End of the Craftsman?

https://schrottner.at/2026/06/24/The-End-of-the-Craftsman.html
1•aepfli•45m ago•3 comments

Show HN: Project Cherub – New TempleOS Fork. Early Build ISO and Future Plans

1•Rubinoslaw•46m ago•0 comments

Gen Z earning more than millennials did at the same age, says thinktank

https://www.theguardian.com/money/2026/jun/22/gen-z-earning-more-millennials-same-age-resolution-...
6•mmarian•49m 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.