frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Don't Yell at Your LLM

https://marvin.beckers.dev/blog/dont-yell-at-your-llm/
2•embik•2m ago•0 comments

Binary obfuscation used in AAA Games

https://blog.farzon.org/2026/04/binary-obfuscation-that-doesnt-kill-lto.html
1•noztol•6m ago•0 comments

Reducing Federal R&D Reduces GDP Growth

https://itif.org/publications/2025/09/15/how-reducing-federal-rd-reduces-gdp-growth/
2•JumpCrisscross•6m ago•0 comments

Trump Slashed Science Funding. Now the U.S. Could Face a Costly Brain Drain

https://www.nytimes.com/2026/04/04/business/dealbook/trump-brain-drain-academia.html
2•JumpCrisscross•7m ago•0 comments

The back story behind Medvi, the first "$1.8B" dollar "AI Company"

https://garymarcus.substack.com/p/the-back-story-behind-the-first-18
1•stephenpontes•10m ago•1 comments

Rig: Build modular LLM apps in Rust – 20 providers, one unified interface

https://github.com/0xPlaygrounds/rig
1•michidk•10m ago•0 comments

Ask HN: Will AI be the end of new programming languages?

1•otherayden•11m ago•0 comments

Women were never meant to give birth on their backs

https://www.bbc.com/future/article/20260401-women-were-never-meant-to-give-birth-on-their-backs
1•ilt•11m ago•0 comments

Show HN: Orcastrate – Sync GitHub Actions workflows across repos via templates

https://github.com/michidk/orcastrate
1•michidk•12m ago•0 comments

Mourning for dinosaurs, 65M years too late

https://www.cnn.com/2026/04/05/science/dinosaurs-tiktok-documentary-cec
1•mooreds•13m ago•0 comments

The AI Compute Race: Microsoft's Miss and Oracle's Opportunity (2025)

https://isolveproblems.substack.com/p/the-ai-compute-race-microsofts-miss
1•mooreds•14m ago•0 comments

Zipf's Law

https://en.wikipedia.org/wiki/Zipf%27s_law
2•mooreds•15m ago•0 comments

Loqi, a memory system that preserves context after LLM compaction

https://github.com/wf802222/loqi
2•nobris•17m ago•0 comments

The Forgotten Ones: Actron AM1608 16-Bit CPU. – The CPU Shack Museum

https://www.cpushack.com/2026/04/01/the-forgotten-ones-actron-am1608-16-bit-cpu/
1•rbanffy•19m ago•0 comments

Apple at 50: My journey to the Mac – anderegg.ca

https://anderegg.ca/2026/04/01/apple-at-50-my-journey-to-the-mac
2•rbanffy•22m ago•0 comments

Show HN: Genetic algorithm engine that evolves trading strategies

https://github.com/NeuZhou/finclaw
1•neuzhou•23m ago•0 comments

Musician says AI company is cloning her music, filing claims against her

https://twitter.com/i/status/2040577536136974444
3•lando2319•25m ago•0 comments

Emilia Britannia (public domain freedom mascot)

https://github.com/Joy-less/EmiliaBritannia
3•Joy-less•25m ago•0 comments

Show HN: RPLY - one Inbox for iMessage, WhatsApp, Slack, and Gmail on macOS

https://www.heynox.com
3•mcantillon•31m ago•3 comments

Track what top investors own (13F) and why they own it (10K AI Analysis)

https://superinvestorsbelike.com
3•oodelally•32m ago•0 comments

Framework? I sure hope it does

https://blog.valknight.xyz/framebroken.html
2•coinfused•38m ago•0 comments

Artemis II Tracker – Live Mission Control

https://artemis.cdnspace.ca/
1•rbanffy•38m ago•0 comments

Days Since OpenClaw CVE

https://days-since-openclaw-cve.com/
2•verandaguy•42m ago•0 comments

Show HN: MailMark – Cold email tool where you own your domain and mailboxes

1•debasishbarai•43m ago•1 comments

Show HN: Arbory – Native iOS dashboard and widgets for Plausible Analytics

https://arbory.io/
2•jorijn•49m ago•0 comments

An elegant Pomodoro timer for your terminal

https://github.com/kaushalvivek/pom
1•kaushalvivek•49m ago•0 comments

/Render – 3D Model Skill for Claude Code

https://github.com/mfranzon/render
4•mfranzon•52m ago•0 comments

Can We Measure Software Slop? An Experiment

https://pscanf.com/s/352/
2•RohanAdwankar•52m ago•0 comments

Chinese Chip Firms Hit Record High Revenue Driven by the AI Boom and U.S. Curbs

https://www.cnbc.com/2026/04/03/chinese-chip-firms-record-revenue-ai-boom-us-curbs.html
2•karakoram•54m ago•0 comments

Why Your Engineering Team Is Slow (It's the Codebase, Not the People)

https://piechowski.io/post/codebase-drag-audit/
3•BerislavLopac•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•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.