frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nullius in verba: the motto of the Royal Society

https://lawrencecpaulson.github.io//2026/06/17/Nullius.html
1•ibobev•2m ago•0 comments

Formalizing a ring theorem with Lean 4 and Claude

https://www.johndcook.com/blog/2026/06/17/rings-with-lean-claude/
1•ibobev•2m ago•0 comments

TrendHawk – AI pipeline that surfaces ideas from 25 subreddits HN doesn't read

https://trendhawk.substack.com/
1•DrWiseguy•2m ago•0 comments

We know more than we can tell

https://www.nvegater.com/blog/tacit-knowledge
1•nvegater•3m ago•0 comments

Show HN: Deputies (open-source background agent control plane)

https://deputies.dev/
1•spalas•3m ago•0 comments

The Transit Abundance Playbook

https://ifp.org/transit-abundance-playbook/
1•throw0101c•3m ago•0 comments

Show all: TacUNS – A free Android firewall I built solo over weekends

https://play.google.com/store/apps/details?id=com.tacu.nsfwzerotrust&hl=en_US
1•Tacuns•5m ago•0 comments

Austral

https://austral-lang.org/
2•tosh•5m ago•1 comments

Paste a meeting transcript, get a 30-60-90 day plan (runs locally, no LLM)

https://everpaula.github.io/marketplace-ops-toolkit/operating-plan-generator.html
1•notreve•6m ago•0 comments

Your AI Needs Scar Tissue

https://dev.to/gauzzastrip/your-ai-coding-agent-needs-scar-tissue-4g66
2•stevendeluth•6m ago•0 comments

Snap Launches $2,195 'Specs' Augmented Reality Glasses

https://www.macrumors.com/2026/06/16/snap-specs-ar-glasses/
1•bookofjoe•6m ago•0 comments

Mleak – mail metadata osint – latest release

https://addons.thunderbird.net/az/thunderbird/addon/mleak-mail-metadata-osint/
2•dash0r•7m ago•0 comments

Australian Trusted Logistics

https://www.tways.com.au
1•reidgyz•7m ago•0 comments

I Did the Animorphs Covers – By David Mattingly

https://myadventuresasanillustrator.substack.com/p/how-i-did-the-animorphs-covers
1•pavel_lishin•8m ago•0 comments

Apple collects every tap to deliver App Store personalized recommendations

https://xcancel.com/mysk_co/status/2064401062224879888
1•microflash•8m ago•0 comments

Autocatalytic Set

https://en.wikipedia.org/wiki/Autocatalytic_set
2•-_-•9m ago•0 comments

Beijing's New Message to Its Citizens: Your Money Belongs at Home

https://www.nytimes.com/2026/06/16/business/chinese-investors-restrictions.html
1•mikhael•10m ago•0 comments

How We Shipped Git-flow-next 1.0 Almost Entirely with AI

https://git-flow.sh/blog/posts/how-we-shipped-git-flow-next-1-0-with-ai/
2•speter•10m ago•0 comments

Setting the Standards Free

https://www.smpte.org/setting-the-standards-free
2•M2Ys4U•10m ago•0 comments

How Waterproof Is Oura Ring 5?

https://ouraring.com/blog/is-oura-ring-5-waterproof/
1•ilreb•11m ago•0 comments

"Mythos" at Home, and It's Called Aisle

https://stanislavfort.substack.com/p/mythos-at-home-and-its-called-aisle
3•goobreee•12m ago•0 comments

Translating with AI Does Not Trigger AI Detectors

https://translateabook.com/blog/ai-translation-does-not-trigger-ai-detectors
2•yoble•13m ago•0 comments

New Human Verification System for R/indiehackers

https://old.reddit.com/r/indiehackers/comments/1pk2rzb/new_human_verification_system_for_our_subr...
2•mmarian•13m ago•0 comments

Georgia is losing farmland fast. Is a state conservation fund enough to save it?

https://grist.org/food-and-agriculture/georgia-is-losing-farmland-fast-is-a-state-conservation-fu...
2•speckx•13m ago•0 comments

We got our AI code reviewer to run your code

https://www.greptile.com/blog/trex-code-execution
2•dakshgupta•14m ago•0 comments

Show HN: OctoPunk – a full-featured, AI-integrated GitHub client

https://www.octopunk.io/blog/introducing-octopunk
3•ldelossa•14m ago•0 comments

UChicago freezes PhD admissions to most humanities programs

https://www.hpherald.com/evening_digest/u-of-c-freezes-ph-d-admissions-to-most-humanities-program...
4•throw0101c•16m ago•1 comments

Agentic coding deserves more than a chat box bolted onto VS Code

https://github.com/evanklem/polypore
3•evanklem2004•17m ago•0 comments

Amazon Bedrock Managed Knowledge Base

https://aws.amazon.com/blogs/aws/introducing-amazon-bedrock-managed-knowledge-base-for-faster-mor...
2•ilreb•18m ago•0 comments

The technology and labour behind electronic death registration

https://www.cambridge.org/core/journals/medical-history/article/reengineering-us-death-data-colle...
2•danso•18m 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.