frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Supabase Engineer (Automation System)

https://docs.google.com/document/d/1BAw0oUXs4G1-j8TNFx-rWZmXhlAkmx5doI1UuP7TXvs/edit?usp=sharing
1•jobisgreat•41s ago•1 comments

China passes new ethnic minority law, prioritises use of Mandarin language

https://www.reuters.com/world/china/china-set-pass-new-ethnic-minority-law-prioritise-use-mandari...
1•tartoran•45s ago•0 comments

Helium prices soar as Qatar LNG halt exposes fragile supply chain

https://www.reuters.com/business/energy/helium-prices-soar-qatar-lng-halt-exposes-fragile-supply-...
1•tartoran•1m ago•0 comments

Show HN: Pulsar, a browser-only GitHub PR monitor for engineering manager

https://pulsar.arkham-advisory.com
1•stumpyfr•2m ago•0 comments

The internet used to be fun

https://projects.kwon.nyc/internet-is-fun/
1•TigerUniversity•2m ago•0 comments

Details That Make Interfaces Feel Better

https://jakub.kr/writing/details-that-make-interfaces-feel-better
1•leephillips•2m ago•0 comments

Anchor Engine – deterministic semantic memory for LLMs, <1GB RAM runs on a phone

https://github.com/RSBalchII/anchor-engine-node
1•BERTmackliin•3m ago•1 comments

Show HN: Crushing Hearts with Deep CFR

https://brianberns.github.io/Hearts/
1•brianberns•3m ago•0 comments

Show HN: SkyBlobs – Visual editor for content files in your GitHub repo

https://www.skyblobs.com
1•Vercist•3m ago•0 comments

ModelRouter – pick the right AI model before spending tokens

https://modelrouter.netlify.app/
1•ccrostro•3m ago•1 comments

Public EEG Dataset Download Instructions

https://github.com/franziskavonalbedyll/eeg-datasets
1•yamdalf•4m ago•0 comments

Abolish Privacy

https://firstmonday.org/ojs/index.php/fm/article/view/13671/11963
1•logological•4m ago•0 comments

Class Action Lawsuit Alleges Popular Protein Bar Is Not So Healthy

https://www.delish.com/food-news/a70695306/class-action-lawsuit-david-protein/
1•colinprince•5m ago•0 comments

Browser DevTools MCP: 78% less tokens than Playwright MCP, faster and consistent

https://medium.com/@serkan_ozal/browser-devtools-mcp-78-fewer-tokens-vs-playwright-mcp-faster-and...
2•sozal•5m ago•1 comments

Show HN: Lantern is a Postgres query monitoring for Rails teams ($39/mo)

https://uselantern.dev
1•em_builds•6m ago•0 comments

Show HN: Mori – Test against production data, without ever touching production

https://github.com/psrth/mori
1•psrth•6m ago•0 comments

My Year as a Degenerate Sports Gambler

https://www.theatlantic.com/magazine/2026/04/online-sports-betting-app-addiction/686061/
1•jbegley•6m ago•0 comments

Open Source Radar Has Up to 20 KM Range

https://hackaday.com/2026/03/12/open-source-radar-has-up-to-20-km-range/
2•toomuchtodo•6m ago•0 comments

PM Co-pilot: manage tasks, integrations, research, document, and project state

https://github.com/AquiGorka/pm-co-pilot-template/tree/main
1•AquiGorka•7m ago•0 comments

Defense in Depth: A Practical Guide to Python Supply Chain Security

https://bernat.tech/posts/securing-python-supply-chain/
1•gaborbernat•7m ago•1 comments

Silicon Valley Abuzz About Adding AI Compute to Engineer Compensation

https://www.businessinsider.com/ai-compute-compensation-software-engineers-greg-brockman-2026-3
2•trueduke•8m ago•1 comments

ATMs didn't kill bank Teller jobs, but the iPhone did

https://davidoks.blog/p/why-the-atm-didnt-kill-bank-teller
3•colinprince•8m ago•0 comments

California startup's plan to sell sunlight at night sparks controversy

https://www.sfgate.com/bayarea/article/california-night-solar-startup-22071228.php
1•CoffeeOnWrite•8m ago•0 comments

Show HN: Open Code Review – Free CI/CD quality gate for AI-generated code

https://github.com/raye-deng/open-code-review
1•aneyadeng•9m ago•1 comments

Running LangGraph, CrewAI, Google ADK with Durable Workflows

https://docs.diagrid.io/getting-started/quickstarts/ai-agents/
1•yaronsc•9m ago•2 comments

AMD GAIA v0.16.0 introduces a C++17 Agent Framework

https://github.com/amd/gaia/releases/tag/v0.16.0
1•pjmlp•10m ago•0 comments

So You Want to Do Agentic Development

https://taoofmac.com/space/blog/2026/03/08/2130
2•rcarmo•10m ago•0 comments

The Great Syllabus Stagnation

https://hollisrobbinsanecdotal.substack.com/p/the-great-syllabus-stagnation
1•HR01•11m ago•0 comments

HydraDB raises $6.5M to kill vector DBs

https://twitter.com/contextkingceo/status/2032098309029220456
1•anshulbhide•13m ago•0 comments

Users protest as Google Antigravity price floats upward

https://www.theregister.com/2026/03/12/users_protest_as_google_antigravity/
2•speckx•13m 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•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.