frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Horrors That Could Lie Ahead If Vaccines Vanish

https://projects.propublica.org/childhood-vaccines-deaths-modeling/
1•littlexsparkee•3m ago•0 comments

Does RAG Help AI Coding Tools?

https://www.mikeayles.com/blog/rag-coding-tools/
1•mikeayles•3m ago•1 comments

What Happened to Procomm Plus

https://dfarq.homeip.net/what-happened-to-procomm-plus/
1•zoidb•4m ago•0 comments

HN: AI-native investing app that builds and adapts thematic portfolios to you

https://basketsai.com
1•pranav6226•5m ago•1 comments

The Racket Programming Language

https://www.racket-lang.org/
1•h4ch1•7m ago•0 comments

Golang Constmap by Daniel Lemire

https://twitter.com/lemire/status/2038320406432494059
1•pjf•7m ago•0 comments

What are the best resources to learn about Harness Engineering?

1•udayan_w•7m ago•0 comments

After 16 years and $8B, the military's new GPS software still doesn't work

https://arstechnica.com/space/2026/03/after-16-years-and-8-billion-the-militarys-new-gps-software...
2•rbanffy•8m ago•0 comments

Claude Code's source code has been leaked via a map file in their NPM registry

https://twitter.com/Fried_rice/status/2038894956459290963
14•treexs•10m ago•1 comments

LibreTranslate: Free and Open Source Machine Translation API

https://github.com/LibreTranslate/LibreTranslate
2•ahamez•13m ago•0 comments

David Foster Wallace and the problem of loneliness [video]

https://www.youtube.com/watch?v=FCfpOugmd9E
1•simonebrunozzi•15m ago•0 comments

£5M Funding for supply chain security innovation in UK

https://apply-for-innovation-funding.service.gov.uk/competition/2421/overview/3d6991fa-73b2-48c0-...
4•anonhaven•23m ago•0 comments

Tell HN: DeepL Moving Data to AWS

1•bilekas•24m ago•1 comments

The First Bullshit

https://www.joanwestenberg.com/the-worlds-first-bullshit/
2•viermalbe•24m ago•0 comments

Monitor Claude Code Usage with Grafana

https://braw.dev/blog/2026-03-28-monitor-claude-usage-with-grafana/
2•kisamoto•25m ago•1 comments

Databricks Compromised by TeamPCP

https://www.cryptika.com/teampcp-supply-chain-attack-allegedly-compromised-databricks-platform/
2•debarshri•26m ago•0 comments

Show HN: Stochos – Keyboard driven mouse control

https://github.com/museslabs/stochos
1•ploMP4•28m ago•0 comments

Fast and Gorgeous Erosion Filter

https://blog.runevision.com/2026/03/fast-and-gorgeous-erosion-filter.html
1•runevision•30m ago•1 comments

Tell HN: If your agent can create a PR, it can merge it too

https://github.com/orgs/community/discussions/182732
1•jamesfisher•32m ago•0 comments

The Reed and Pickup – The early internet was a feeling

https://reedandpickup.com/2026/03/30/the-early-internet-was-a.html
1•viermalbe•33m ago•0 comments

Caltech quantum startup Oratomic launches with achieving scaling breakthrough

https://www.oratomic.com/news/launch-announcement
1•chrysander•35m ago•1 comments

Vulniq AI: Autonomous Security Scanner for Any JavaScript/TS Codebase

https://github.com/JakubKontra/skills/blob/main/docs/vulniq.md
1•JakubKontra•38m ago•0 comments

Paris Saint-Germain Names Harvey The Official Legal AI Partner

https://www.harvey.ai/blog/paris-saint-germain-names-harvey-the-official-legal-ai-partner
1•salkahfi•38m ago•0 comments

Germany presents new climate action programme

https://www.argusmedia.com/en/news-and-insights/latest-market-news/2805877-germany-presents-new-c...
2•mariuz•40m ago•0 comments

Show HN: HolyCode – OpenCode in Docker. Use your Claude subscription. 30 tools

https://github.com/CoderLuii/HolyCode
1•CoderLuii•41m ago•0 comments

Closed Source AI = Neofeudalism

https://geohot.github.io//blog/jekyll/update/2026/03/31/free-intelligence.html
3•0x79de•42m ago•0 comments

Show HN: Triplet-Based Parameterization for Characterization of Polynomial Roots

https://zenodo.org/records/19303726
1•ratwolf•42m ago•0 comments

LangDrained: Paths to Your Data Through LangChain

https://www.cyera.com/research/langdrained-3-paths-to-your-data-through-the-worlds-most-popular-a...
1•anonhaven•42m ago•0 comments

How I Dragged Phantom Tide Out of an OOM Kill Loop

https://github.com/tg12/phantomtide/blob/main/docs/oom-postmortem.md
1•thunderbong•43m ago•0 comments

Memory Continuity: Zero-Dep Markdown Session Persistence for OpenClaw

https://github.com/dtzp555-max/memory-continuity
1•dtzp555-max•44m 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•11mo ago

Comments

palata•11mo 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•11mo 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•11mo 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•11mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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.