frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI puts B Corps' values to the test

https://www.fastcompany.com/91568793/ai-puts-b-corps-values-to-the-test
1•1vuio0pswjnm7•4m ago•1 comments

Show HN: Stop Destructive Agent Commands Before They Happen

https://github.com/christopherkarani/Orca
1•karc14•6m ago•0 comments

Show HN: Crew – Let Claude Code agents talk to each other

https://github.com/0xmmo/crew
2•mmoustafa•7m ago•0 comments

Linux Looking to Retire a Number of Old ARM Platforms in Early 2027

https://www.phoronix.com/news/Linux-Drop-Old-ARM-2027
1•maxloh•7m ago•0 comments

I am dreading our LLM-written incident report future

https://surfingcomplexity.blog/2026/06/19/i-am-dreading-our-llm-written-incident-report-future/
2•baxtr•8m ago•0 comments

Space startup Katalyst launches orbital rescue for aging NASA observatory

https://www.reuters.com/business/aerospace-defense/space-startup-katalyst-launches-orbital-rescue...
2•JumpCrisscross•15m ago•0 comments

NERM – a tamper-evident audit log that proves itself. Run it yourself

https://github.com/metacentric-tech/nerm-core
1•META-TECH•35m ago•0 comments

What a 1976 Washington Post prediction said about 2026

https://www.washingtonpost.com/history/2026/07/03/what-1976-washington-post-prediction-said-about...
2•reaperducer•36m ago•0 comments

The Age of Decision

https://www.threerulescompany.com/the-age-of-decision
1•dtedesco1•37m ago•0 comments

How Memgraph 3.11 Simplifies Multi-Tenancy for Cross-Database Graph Workloads

https://memgraph.com/blog/memgraph-3-11-multi-tenant-graph-workloads
1•taubek•42m ago•0 comments

Agentic coding notes from Galapogos Island

https://danluu.com/ai-coding/#appendix-agentic-loops-and-writing-this-post
25•gm678•42m ago•3 comments

Redundancy and Bloat Seen in AAA Game Engines

https://zero-irp.github.io/Redundancy-seen-in-AAA-game-engines/
1•davikr•57m ago•0 comments

What the AirCon Debate Says About Britain's Climate Insanity [video]

https://www.youtube.com/watch?v=HwS3l5uP168
1•Bender•59m ago•0 comments

Why A.I. Won't Steal All Our Jobs

https://www.nytimes.com/2026/06/30/opinion/ai-agents-steal-jobs-employment.html
1•reaperducer•1h ago•1 comments

FEOM – Windows GUI automation at 8ms, no GPU needed

https://github.com/a92070888-dev/mcp-os-native-automation
1•a92070888•1h ago•0 comments

PangolinMatrix – write down encoded passwords, not real ones

https://pangolinmatrix.com
2•corvina•1h ago•0 comments

Google reCAPTCHA Reverse Engineered

https://github.com/elyelysiox/recaptcha
3•Pelada•1h ago•0 comments

Where can I find or get in contact with farmers specifically in the US?

2•strapchay•1h ago•2 comments

We Heart It is back

https://weheartit.net/
1•djxjxjcjcjc•1h ago•0 comments

Dory: Docker and Linux containers, native to your Mac

https://augani.github.io/dory/
1•xyzzy_plugh•1h ago•0 comments

Reconstructing SQLite's float-to-text without reading the source

https://github.com/lucasolopes/haruspex
1•byolopes•1h ago•1 comments

EPA approves pesticides that may be considered forever chemicals

https://thehill.com/policy/energy-environment/5950487-epa-pesticides-forever-chemicals-pfas/
3•OutOfHere•1h ago•0 comments

Show HN: Void test: 6 frontier LLMs go silent on "Be silence." Live proof

https://getswiftapi.com/void-test
1•rayanpal_•1h ago•0 comments

Show HN: SmolSignal – signal copilot for Flipper Zero files

https://github.com/SmolNero/SmolSignal
2•edgar_ortega•1h ago•1 comments

Show HN: I replaced my $500/mo legal SaaS with an AI-generated toolkit

https://maxiporonga.gumroad.com/l/ytruk
1•promptalex53•1h ago•0 comments

Show HN: Earshot, a homebrew Claude Tag

https://github.com/Octember/earshot
1•octember•1h ago•1 comments

Maybe you should learn something

https://www.marginalia.nu/log/a_135_learn/
10•tylerdane•1h ago•2 comments

FemiCore Review 2026 – 7-Second Bladder Reset Method Explained

https://gamma.app/embed/FemiCore-Review-2026-7-Second-Bladder-Reset-Method-Explained-9yahcz6mepth...
1•wildriverreview•1h ago•0 comments

Show HN: Local privacy-first Microsoft Recall alternative with Gemma 4

https://github.com/ayushh0110/ScreenMind/blob/main/README.md
2•skye0110•1h ago•0 comments

MagicBookShelf – A modern reader for classic novels – Crime and Punishment

https://magicbookshelf.org/read/crime-and-punishment/
1•philipfweiss•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.