frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I Could Never Work for Anyone Else: A Wiseass Problem

https://harveysawikin.substack.com/p/i-could-never-work-for-anyone-else
1•RickJWagner•39s ago•0 comments

A Schools Chief So Charming That Los Angeles Overlooked His Red Flags

https://www.nytimes.com/2026/03/07/us/alberto-carvalho-lausd-scandals.html
1•bbertucc•1m ago•1 comments

Does Apple's M5 Max really "Destroy" a 96-Core Threadripper?

https://slashdot.org/submission/17345398/does-apples-m5-max-really-destroy-a-96-core-threadripper
1•dkechag•2m ago•0 comments

Bone (B-1 bomber) deployed to the UK

https://www.theguardian.com/world/2026/mar/07/us-bomber-lands-in-uk-after-warning-of-surge-in-str...
1•zabzonk•2m ago•0 comments

Security vulnerabilities I found in high school

https://blog.raed.dev/posts/hacking-stories-from-high-school-days/
1•Raed667•6m ago•0 comments

Microscopes Can See Video on a LaserDisc

https://www.youtube.com/watch?v=qZuR-772cks
1•zdw•7m ago•0 comments

Debunking of inaccurate and misinformed claims being made about GrapheneOS

https://twitter.com/GrapheneOS/status/2030402535463506069
1•hnburnsy•8m ago•0 comments

Show HN: Agentpng – turn agent sessions into shareable images

https://www.agentpng.dev/
2•siegers•9m ago•0 comments

Show HN: Open-source tool turns a site into an MCP by recording the browser

https://github.com/danielthedm/browse2mcp
1•ethantheswe•10m ago•0 comments

Modular Video Transmission Platform

https://mvtp.cesnet.cz/#demovideo
1•clan•13m ago•0 comments

Show HN: Herd – Session-affine process pool for Go

https://github.com/HackStrix/herd
1•sankalpnarula•13m ago•0 comments

Show HN: Brw – Browser automation for Claude Code agent teams

https://github.com/sshh12/claude-plugins/blob/main/plugins/brw/README.md
1•sshh12•14m ago•0 comments

$3T Blind Spot: US nonprofits

https://charitysense.com/insights/the-3-trillion-blind-spot
2•mtweak•14m ago•0 comments

Show HN: Ash – OSS Infra for Running Claude Agent SDK

https://github.com/ash-ai-org/ash-ai
1•nicklo•19m ago•1 comments

Show HN: Send Secret Message in a Maze

https://wordsastray.com/home.html
1•bilkoo•20m ago•0 comments

PhD interrupted by personal safety issues, now publication record is thin

2•qthrwaway•20m ago•0 comments

Git diffs are 40 years old, introducing Semantic diffs

https://twitter.com/i/status/2029992315532759435
1•Palanikannan•22m ago•1 comments

How do you capture decisions made in Slack so they don't get lost?"

1•frankiefrazer•23m ago•1 comments

Roguelike music algorithm showcase by Nifflas

https://www.youtube.com/watch?v=WbgdXalXPus
1•todsacerdoti•23m ago•0 comments

Because Algospeak

https://www.tbray.org/ongoing/When/202x/2026/03/05/Because-Algospeak
1•zdw•23m ago•0 comments

Why do papers get desk rejected?

https://purl.stanford.edu/yb785sx5019
2•paulpauper•24m ago•0 comments

Show HN: DBWarden – A database migration tool for Python/SQLAlchemy projects

https://github.com/emiliano-gandini-outeda/DBWarden
1•emi_gandini•27m ago•0 comments

QRPC: Low Latency RPC over Link Layer

https://github.com/malandrakisgeo/qRPC
1•plethon•28m ago•0 comments

For These Millennials, College Was a Party. Then Came Real Life

https://www.nytimes.com/2026/02/17/books/review/so-old-so-young-grant-ginder.html
1•paulpauper•30m ago•0 comments

Almost a third of Gen Z men agree a wife should obey her husband

https://www.kcl.ac.uk/news/almost-a-third-of-gen-z-men-agree-a-wife-should-obey-her-husband
3•johntfella•32m ago•1 comments

Ask HN: Would you use a job board where every listing is verified?

2•BelVisgarra•33m ago•0 comments

I glimpsed heaven and it showed me the door (Jhourney retreat report)

https://lalachimera.com/p/i-glimpsed-heaven-and-it-showed-me
1•paulpauper•33m ago•0 comments

From a £1B dream to a brutal collapse: How Brewdog hit the rocks

https://www.bbc.com/news/articles/cn4ggqgyk51o
1•ZeljkoS•37m ago•0 comments

A16Z: The Power Brokers

https://www.notboring.co/p/a16z-the-power-brokers
1•sershe•39m ago•0 comments

Autonomous AI Agents Have an Ethics Problem

https://undark.org/2026/03/05/opinion-ai-agents-ethics/
1•EA-3167•43m ago•1 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•10mo ago

Comments

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

https://reportmill.com/SnapCode

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