frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Microsoft unveils AI security tools it says outperform competing platforms

https://arstechnica.com/security/2026/07/microsoft-unveils-ai-security-tools-it-says-outperform-c...
2•joozio•3m ago•0 comments

Final hurrah? Glasgow's cut-price Commonwealth Games fight for survival

https://www.lbc.co.uk/article/anyone-still-care-commonwealth-games-glasgow-opinion-5Hjdf6S_2/
3•austinallegro•5m ago•0 comments

Cracking the code: can AI help us decipher ancient languages?

https://theconversation.com/cracking-the-code-can-ai-help-us-decipher-ancient-languages-288238
2•zeristor•6m ago•0 comments

Open Source Must Be Fun (Or It Will Die)

https://mikemcquaid.com/open-source-must-be-fun-or-it-will-die/
1•robin_reala•7m ago•0 comments

Evals before prompts: building an LLM OCR for KYC

https://blog.nilenso.com/blog/2026/05/18/evals-before-prompts-building-an-llm-ocr-for-kyc/
1•priyangapkini•7m ago•0 comments

Facebook now wants a selfie video of your face, too

https://blog.mega.io/facebook-verified-selfie
1•dotcoma•12m ago•0 comments

Three certificates, one domain, three lost launch days

https://www.certpost.ai/blog/three-certificates-three-lost-launch-days
1•mlmusson•15m ago•0 comments

AI 'tokenmaxxing' fades as workplaces look to cut tech spending

https://apnews.com/article/ai-token-openai-anthropic-corporate-31bb80ac1cd7862d05f6397177d826b1
5•geox•17m ago•0 comments

A Proposal for a Universal Moral Core

https://continuations.com/a-proposal-for-a-universal-moral-core
1•imartin2k•18m ago•0 comments

"Cards as Weapons" by Ricky Jay (1977)

https://archive.org/details/Cards_as_Weapons_-_Ricky_Jay_1977
1•jansan•22m ago•0 comments

Solving Math and Physics Problems You Don't Know How to Solve

http://redsymbol.net/articles/solving-problems-you-dont-know-how-to-solve/
1•ankitg12•22m ago•0 comments

Show HN: AI Usage – Native macOS Menu Bar for Claude Code and Codex Limits

https://github.com/burakgon/ai-usage-menubar
1•burakgon•22m ago•0 comments

News outlet killed story on plagiarism after Cambridge prof hired law firm

https://retractionwatch.com/2026/07/27/cambridge-jason-arday-plagiarism-allegations-times-higher-...
3•Michelangelo11•24m ago•0 comments

Show HN: A Back End You Can Call Directly from React – No API Required

https://linkedrecords.com/getting-started/
1•WolfOliver•24m ago•0 comments

YC Startup School 2026

https://bestmate.io/startup-school-2026
1•harper•28m ago•0 comments

Compass: Fast, local-first knowledge graph for understanding codebases

https://github.com/crabbuild/compass
1•handfuloflight•34m ago•0 comments

Ask HN: How to rewrite `Claude.md` and install the skill for Opus5 and Fable5

2•hyhmrright•36m ago•2 comments

Prompting Claude Opus 5

https://platform.claude.com/docs/en/build-with-claude/prompt-engineering/prompting-claude-opus-5
2•alvis•36m ago•0 comments

How Netanyahu Lost America

https://www.theatlantic.com/ideas/2026/07/bibi-netanyahu-israel-failures-antisemitism/688050/
3•Alien1Being•40m ago•1 comments

We moved wind turbines from China to Sri Lanka [video]

https://www.youtube.com/watch?v=SXotkuJHxF0
1•thelastgallon•41m ago•0 comments

GPS Map Camera: Geotag Camera

https://play.google.com/store/apps/details?id=com.gpsmapcamera.photo.timestamp.video.location&hl=...
1•satyampromotion•41m ago•0 comments

Ted Kaczynski, Math Tutor

https://www.documentcloud.org/documents/2696533-Ted-Kaczynski-Math-Tutor/
1•Teever•41m ago•0 comments

Answerwatch – Track changes in what AI models recommend

https://github.com/haror1/answerwatch
1•arorah•42m ago•0 comments

Autoportrait

https://philipweiss.net/autoportrait/
1•philipfweiss•45m ago•0 comments

KMIP: How It Works, When You Need It, and How Infisical Implements It

https://infisical.com/blog/kmip
1•vmatsiiako•46m ago•0 comments

Why Most Backtests Fail in Production – and How Event-Time Replay Fixes It

https://medium.com/@DolphinDB_Inc/turning-market-history-into-live-signals-dolphindb-data-replay-...
2•napgirllll•47m ago•0 comments

How AI and Low-Latency Computing Are Reshaping Digital Twins

https://medium.com/@DolphinDB_Inc/real-time-decision-making-how-ai-and-low-latency-computing-are-...
1•chaercling•47m ago•0 comments

Free, private file tools that work in the browser

https://easyfiletools.com
1•randomperson_24•51m ago•0 comments

Recursive Filters: SMA, EMA, Low‑Pass, and a Tiny Kalman

https://www.staszewski.xyz/blog/recursive-filters/
3•kamilstaszewski•54m ago•0 comments

Show HN: Kdeps – A New CLI Coding Agent That Runs on Open Weight Models

https://kdeps.com
1•jjuliano•54m 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.