frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Click

https://clickclickclick.click/
1•andrewzeno•1m ago•0 comments

Manchester Code Made Bits Behave

https://spectrum.ieee.org/manchester-code-ieee-milestone
1•jnord•2m ago•0 comments

Super-Adaptable Mayhem 10 Swarming Drone Evolved from the Switchblade

https://www.twz.com/air/super-adaptable-mayhem-10-swarming-drone-evolved-from-the-switchblade
1•breve•3m ago•0 comments

My blog was hacked and Claude and I just fixed it

https://lengrand.fr/my-blog-was-hacked-and-claude-and-i-just-fixed-it/
1•jlengrand•5m ago•0 comments

An asteroid discovered days ago will narrowly miss Earth – RNZ News

https://www.rnz.co.nz/news/world/595636/an-asteroid-discovered-days-ago-will-narrowly-miss-earth
1•colinprince•6m ago•0 comments

If AI can translate instantly, why learn another language?

https://theconversation.com/if-ai-can-translate-instantly-why-learn-another-language-280310
1•0in•6m ago•0 comments

A New Look for Express

https://expressjs.com/en/blog/2026-05-18-a-new-look-for-express/
1•patrikcsak•7m ago•0 comments

Musk says Tesla unsupervised FSD will be 'widespread' in the US by year-end

https://electrek.co/2026/05/18/musk-unsupervised-fsd-widespread-us-end-of-year-smart-mobility-sum...
1•breve•7m ago•0 comments

Human Bottlenecks

https://borretti.me/article/human-bottlenecks
1•jger15•9m ago•0 comments

Starship's Twelfth Flight Test

https://www.spacex.com/launches/starship-flight-12
1•bookmtn•10m ago•0 comments

Updated Debian 13: 13.5 released

https://www.debian.org/News/2026/20260516
1•doener•11m ago•0 comments

Show HN: FlashAttention-2 in Cute, from Scratch

https://blog.echen.io/p/flashattention-2-in-cute-from-scratch/
1•echen314•11m ago•1 comments

Tech bros say AI can be your best friend. Experts explain why it can't

https://www.rnz.co.nz/life/wellbeing/tech-bros-say-ai-can-be-your-best-friend-experts-explain-why...
3•billybuckwheat•11m ago•0 comments

AI-Governed EV Charging Could Extend Battery Life Nearly 23%

https://www.thedrive.com/news/ai-governed-ev-charging-could-extend-battery-life-nearly-23
3•breve•12m ago•0 comments

Show HN: Handoff – preserve coding context when agents run out of tokens

https://github.com/TStansel/handoff
1•tstansel•12m ago•0 comments

EPA and HHS propose rescinding parts of Biden's PFAS limits in drinking water

https://www.washingtonexaminer.com/policy/energy-and-environment/4573000/epa-hhs-propose-rescindi...
2•petethomas•13m ago•0 comments

Parallel Cities

https://vicnaum.github.io/parallel-cities/
1•bookofjoe•13m ago•0 comments

Show HN: Clawputer – A personal AI assistant with a real computer and memory

https://clawputer.app
1•iacguy•13m ago•0 comments

The Colorado River Is on the Brink of Disaster

https://www.wsj.com/us-news/climate-environment/the-colorado-river-is-on-the-brink-of-disaster-62...
2•impish9208•14m ago•1 comments

Why liquidity monitoring is insufficient for EVM execution systems

https://blog.bridgexapi.io/liquidity-lifecycle-intelligence-for-evm-execution-systems
1•Bridgexapi•16m ago•0 comments

New reality show for software engineers – episode 1 [video]

https://www.youtube.com/watch?v=6KCi8womtSA
2•jdegoes•20m ago•0 comments

AgentVoy – The create-react-app for AI agents

https://www.agentvoy.com/
1•cthecm•21m ago•0 comments

Player Piano (Novel)

https://en.wikipedia.org/wiki/Player_Piano_(novel)
1•PyWoody•25m ago•0 comments

More live NPM packages attributed to Axios threat actors

https://opensourcemalware.com/blog/axios-attacker-additional-npm-packages
2•6mile•26m ago•1 comments

Lovable: Define Reusable Instructions with Skills

https://docs.lovable.dev/features/skills
1•doener•28m ago•0 comments

LoRA and Weight Decay (2023)

https://irhum.github.io/blog/lorawd/
1•jxmorris12•31m ago•0 comments

Roundup of Events for Bootstrappers in May 2026

https://bootstrappersbreakfast.com/2026/04/23/roundup-of-may-2026-bootstrapper-events/
1•skmurphy•32m ago•1 comments

Poland directs officials to ditch Signal in favor of 'secure' Polish alternative

https://www.theregister.com/security/2026/05/18/poland-builds-its-own-signal-amid-security-concer...
4•devonnull•33m ago•0 comments

Big AI is subverting regulations just like tobacco and oil firms

https://www.theregister.com/ai-ml/2026/05/18/big-ai-is-subverting-regulations-just-like-tobacco-a...
2•jnord•33m ago•0 comments

A Master's degree isn't the job guarantee it used to be

https://www.msn.com/en-us/money/careersandeducation/a-master-s-degree-isn-t-the-job-guarantee-it-...
1•jnord•35m 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•1y ago

Comments

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

https://reportmill.com/SnapCode

palata•1y 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•1y 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•1y 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•1y 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•1y 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•1y 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•1y 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.