frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Openrsync: A BSD-licensed implementation of rsync, by the OpenBSD team

https://github.com/kristapsdz/openrsync
1•sph•51s ago•0 comments

The Paint.net Domain Has Been Secured

https://blog.getpaint.net/2026/05/29/the-paint-net-domain-has-been-secured/
1•tamnd•1m ago•0 comments

Best Simple System for Now

https://www.youtube.com/watch?v=oaHshjX50VY
1•RebootStr•3m ago•0 comments

Millions of Bees Have Thrived Under a New York Cemetery for More Than a Century

https://www.wired.com/story/millions-of-bees-have-thrived-under-a-new-york-cemetery-for-more-than...
1•beardyw•4m ago•0 comments

GPO Style Manual [pdf]

https://www.govinfo.gov/content/pkg/GPO-STYLEMANUAL-2016/pdf/GPO-STYLEMANUAL-2016.pdf
1•ankitg12•6m ago•0 comments

The fastest and easiest way to use Stremio

https://duck-tools.pages.dev/quackstart/
1•Cider9986•7m ago•0 comments

Show HN: DocOCR – Convert document images to Markdown locally on macOS

https://github.com/riddleling/docOCR
1•riddleling•11m ago•0 comments

Congress moves to integrate US and Israeli militaries

https://responsiblestatecraft.org/israel-us-military/
1•endorphine•16m ago•0 comments

Return on Intelligence, Part 1: Echoes

https://rebecca-powell.com/posts/return-on-intelligence-01-echoes/
1•bovermyer•18m ago•0 comments

Museum of Algorithms: A Digital Exhibition of Interactive Algorithm Art

https://www.museumofalgorithms.org
1•birdculture•20m ago•0 comments

Leo's first encyclical attacks technological messianism

https://www.economist.com/europe/2026/05/28/leos-first-encyclical-attacks-technological-messianism
2•1vuio0pswjnm7•21m ago•0 comments

Why the failure of Blue Origin's New Glenn rocket is so catastrophic

https://arstechnica.com/space/2026/05/heres-why-the-failure-of-blue-origins-new-glenn-rocket-is-s...
2•rbanffy•22m ago•0 comments

Misguided JavaScript API: Origin Private File System

https://lapcatsoftware.com/articles/2026/5/5.html
2•latexr•22m ago•0 comments

Blue Origin rocket explodes ahead of launch, in major setback for space company

https://www.washingtonpost.com/technology/2026/05/29/blue-origin-rocket-explodes-ahead-satellite-...
2•1vuio0pswjnm7•26m ago•0 comments

Megaphone: Social Media Without Ads

https://apps.apple.com/ge/app/megaphone-social/id6755971304
2•v-starlight•38m ago•0 comments

What ever became of Microsoft's $150M investment in Apple?

https://www.engadget.com/2014-05-20-what-ever-became-of-microsofts-150-million-investment-in-appl...
2•chistev•38m ago•0 comments

Blue Origin investigates, public is warned re: possible wreckage washing ashore

https://www.latimes.com/world-nation/story/2026-05-29/blue-origin-investigates-rocket-explosion-a...
2•1vuio0pswjnm7•40m ago•0 comments

Generalist AI – building general intelligence for the physical world

https://www.youtube.com/channel/UCwV9z8IGmbUQUb5D8KSv3mQ
2•age123456gpg•40m ago•2 comments

Let's Take Esoteric Programming Languages Seriously (2025)

https://arxiv.org/abs/2505.15327
3•sargstuff•43m ago•2 comments

Rewriting stale OSS projects using LLM

https://loopholelabs.io/blog/rewriting-oss-in-the-ai-era
2•axod•43m ago•0 comments

Furs: Eliminate the Forth CMSIS memory tax

2•techman001•47m ago•1 comments

Show HN: I wrote a program that hashes files into poems

https://github.com/alebeck/rhymesum
2•0x12A•47m ago•0 comments

From lottery draws to fiscal spending, China broadens digital yuan footprint

https://www.reuters.com/business/finance/lottery-draws-fiscal-spending-china-broadens-digital-yua...
2•giuliomagnifico•49m ago•0 comments

Will We Run Out of Unicodes?

https://owl.billpg.com/the-expanding-universe-of-unicode/
5•billpg•55m ago•0 comments

Multi-Lora-Continual-Learning

https://trajectory.ai/field-notes/multi-lora-training-for-continual-learning
3•j316chuck•55m ago•2 comments

We're starting to see some PC makers respond to Apple's MacBook Neo

https://arstechnica.com/gadgets/2026/05/were-starting-to-see-some-pc-makers-respond-to-apples-mac...
2•rbanffy•55m ago•0 comments

Pandoc Templates

https://pandoc-templates.org/
11•ankitg12•55m ago•0 comments

Trump Accounts Jumpstart the American Dream

https://trumpaccounts.gov/
2•xiaoyu2006•57m ago•0 comments

Show HN: Geostakes – Skill Based Location Wagering

https://www.geostakes.com/
2•stefmeister•1h ago•0 comments

Epos Daimon, the Magic School Where Teens Play Fascists

https://mssv.net/2026/05/22/epos-daimon-the-antifascist-magic-school-for-teens/
2•adrianhon•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.