frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Orbital – Give Your Agent a Project, Not a Prompt

https://github.com/zqiren/Orbital
1•10keane•59s ago•0 comments

Xkcd 2510 (2021 AD) describes LLM generated code

https://xkcd.com/2510/
1•TZubiri•1m ago•0 comments

How much should you pay for API docs?

https://www.jamdesk.com/blog/the-definitive-api-documentation-pricing-comparison-2026-2
1•spy888•2m ago•0 comments

Apple Thrived in 15 Years Under Tim Cook

https://www.statista.com/chart/25612/apple-share-price-under-tim-cook/
1•salkahfi•2m ago•0 comments

Petition, recognition of open-source work

https://mixxx.org/news/2026-04-21-petition-ehrenamt/
1•SamWhited•2m ago•0 comments

Show HN: Flight Risk: Can you break an AI agent?

https://ctf.demo.lorikeetcx.ai/
1•tetrakai•5m ago•0 comments

Open Source Agent Skills for GTM Engineers

https://github.com/Varnan-Tech/opendirectory
1•sam_josh1•7m ago•0 comments

I refused to pay $50/mo for a CSV to quickbooks converter, so I built it

https://www.csvtoquickbooks.com/
1•Loliyo•8m ago•0 comments

Accessible PDF and Tagged PDF Remediation Services

https://curbeffect.com/
1•mooreds•9m ago•0 comments

Claude in China: how to "look like a normal person"

https://shuyangli.substack.com/p/claude-in-china
1•shuyang•10m ago•0 comments

Spaced Repetition: Beginner Guide/FAQ

https://entropicthoughts.com/spaced-repetition-beginner-guide-faq
1•Tomte•11m ago•0 comments

Tim Cook's Rotten Apple

https://unherd.com/2026/04/time-is-running-out-for-tim-cook/
1•jnord•12m ago•0 comments

Defining Terms: Human Intelligence

https://aquinas101.thomisticinstitute.org/videos/defining-terms-human-intelligence
1•danielam•14m ago•0 comments

Show HN: Ketchup – a Pomodoro timer with separate work and break budgets

https://github.com/Rench321/ketchup-timer
1•rench321•15m ago•0 comments

Nodus – Never lose AI answers again

https://nodus-ai.app/
1•m_m_carvalho•15m ago•0 comments

Show HN: We replaced 5 ML models with 1 shared encoder on an $11/month VPS

https://fittohire.com
1•blemis•15m ago•0 comments

Unlearnings from Building Grafana Assistant

https://contexthorizon.substack.com/p/unlearnings-from-building-grafana
1•xionerys•16m ago•0 comments

Siemens and Humanoid deployed an Nvidia-powered humanoid robot

https://thenextweb.com/news/siemens-nvidia-humanoid-robot-erlangen-factory-trial
1•JeanKage•17m ago•0 comments

Show HN: Bpfvet – minimum kernel version and CO-RE analyzer for BPF objects

https://github.com/boratanrikulu/bpfvet
1•boratanrikulu•18m ago•0 comments

In Chinese data factories, workers teach humanoid robots boring tasks

https://restofworld.org/2026/china-robots-training-centers-workers/
1•bookofjoe•18m ago•0 comments

WooCommerce stores may be silently losing revenue

https://twitter.com/SybreWaaijer/status/2045660722168758336
1•todotask2•18m ago•0 comments

Vercel has been hacked: environment variables compromised

https://vercel.com/kb/bulletin/vercel-april-2026-security-incident
1•freely0085•19m ago•1 comments

Landscape of Quantum Computing in 2026

https://sam-jaques.appspot.com/quantum_landscape
1•Harvesterify•21m ago•0 comments

Flock's CEO Fallacious Pitch to the Poor

https://ipvm.com/reports/flock-ceo-poor
1•jhonovich•23m ago•0 comments

Schwarz Digits' Presents European Sovereign Stack Standard

https://www.heise.de/en/news/Schwarz-Digits-introduces-standard-for-digital-sovereignty-11264279....
1•standfest•26m ago•0 comments

SaaS is not dead. You are just being sold the funeral

https://thenextweb.com/news/saas-not-dead-ai-hype-enterprise-software
1•cx42net•27m ago•0 comments

Show HN: Intake – Secure client document collection with browser-side encryption

https://intakerequest.com
1•pio_greeff•28m ago•0 comments

ReleaseJet – Release notes from issue labels, no Conventional Commits

https://www.releasejet.dev/
1•makisp•30m ago•1 comments

Show HN: I made an AI fitness coach that actually makes sure you reach the goal

1•ABSALOMMAXY•31m ago•1 comments

Daily Geography Game

https://maptap.gg/
1•gniv•31m 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•12mo ago

Comments

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

https://reportmill.com/SnapCode

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