frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Leverage Points

https://donellameadows.org/archives/leverage-points-places-to-intervene-in-a-system/
1•tosh•58s ago•0 comments

212k AI coding benchmarks: context beats generic prompts

https://techloom.it/blog/effective-ai-coding-prompts/
1•tmuhlestein•2m ago•0 comments

I Accidentally Became the DevOps Guy

https://sgaud.com/texts/devops
1•SarthakGaud•2m ago•0 comments

NY sues prediction market Kalshi alleging it's an illegal gambling operation

https://www.cnn.com/2026/07/31/politics/new-york-sues-kalshi-prediction-market
2•pavel_lishin•3m ago•0 comments

Arch AUR Under Another Wave of Malicious Packages, Package Adoptions Halted

https://www.phoronix.com/news/Arch-Linux-AUR-Adoptions-Halted
1•ImJamal•4m ago•0 comments

Why is differentiating mechanics and integration art?(2011)

https://mathoverflow.net/questions/66377/why-is-differentiating-mechanics-and-integration-art
1•num42•4m ago•0 comments

Detect Dark Matter's Mark from Your Backyard

https://spectrum.ieee.org/dark-matter
3•Brajeshwar•5m ago•0 comments

Show HN: Active inference world models: From finding a mug to making tea

https://cpnslab.com/active-inference-world-models/
1•alexdshaw•7m ago•0 comments

Effects in Hale

https://hale-lang.org/articles/effects-in-hale/
1•rrook•8m ago•1 comments

Show HN: Tandem – run Claude Code and Codex as one paired session)

https://github.com/Bhavya6187/tandem
1•bhavya6187•9m ago•0 comments

Seattle's Third Act

https://www.ascend.vc/blog/seattles-third-act
1•surprisetalk•11m ago•0 comments

Show HN: Run manual QA test cases in a real browser with an AI agent

https://github.com/broxhq/qpilot
1•Muhammad-21•11m ago•0 comments

Authorize, Don't Authenticate

https://blog.marcua.net/2026/07/31/authorize-dont-authenticate.html
1•marcua•13m ago•0 comments

Solar panel power generation calculator, taking into account weather conditions

https://specled.com/en/w/calculating-the-position-performance-and-payback-of-solar-panels/
1•Specled•14m ago•1 comments

KindaRails2Shell attack details and tools to perform a forensic investigation

https://github.com/rails/rails-forensics-CVE-2026-66066
1•ezekg•14m ago•0 comments

Starbucks bet big on an AI tool; 9 months later, it pulled the plug

https://www.fastcompany.com/91572019/starbucks-bet-big-ai-tool-national-scale-9-months-inventory-...
2•speckx•15m ago•0 comments

Microsoft is about to kill my favorite Edge feature – and Copilot is to blame

https://www.windowscentral.com/software-apps/microsoft-is-about-to-kill-my-favorite-edge-feature-...
1•realsarm•15m ago•0 comments

Codeberg Degraded Service

https://status.anoxinon.de/status/anoxinon
1•pelasaco•18m ago•1 comments

Run Kimi K3 using 29 GB of RAM at 0.50 tok/s

https://github.com/sqliteai/waste
1•marcobambini•18m ago•0 comments

The physics of Docker build caching

https://www.blacksmith.sh/blog/the-physics-of-docker-build-caching
3•piobio•20m ago•0 comments

Cookie Chaos: How to bypass __Host and __Secure cookie prefixes

https://portswigger.net/research/cookie-chaos-how-to-bypass-host-and-secure-cookie-prefixes
1•one33seven•20m ago•0 comments

Cro – elegant reactive services in Raku

https://cro.raku.org/
1•giancarlostoro•21m ago•0 comments

Hiding Information Inside Images

https://nullonerror.org/2026/02/13/hiding-information-inside-images/
1•delduca•22m ago•0 comments

Firedome

https://www.fire-dome.com/
2•speckx•25m ago•0 comments

OpenQ4 0.9.0: open-source reimplementation of Quake 4

https://github.com/themuffinator/openQ4/releases/tag/v0.9.0
1•klaussilveira•25m ago•0 comments

Better to Beg Forgiveness

https://pluralistic.net/2026/07/31/just-do-it/
4•hn_acker•26m ago•0 comments

Smallpox reached the Americas: first genomic evidence points to Europeans

https://www.nature.com/articles/d41586-026-02366-y
1•Brajeshwar•26m ago•0 comments

IBM Claims Quantum Advantage with New Validation Techniques

https://spectrum.ieee.org/ibm-verifiable-quantum-advantage
1•nateb2022•26m ago•0 comments

Oceanographers Find Lessons in the Great Nike Shoe Spill (1992)

https://archive.seattletimes.com/archive/19921122/1526004/oceanographers-find-lessons-in-the-grea...
1•EndXA•27m ago•0 comments

Show HN: AI Photo Editor No Sign Up – Edit Photos with Prompts

https://aiphotoeditornosignup.online/
1•chenliang001•28m 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.