frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Continuous Modeling, or What Happens to the Model on Tuesday?

https://docs.eventsourcingdb.io/blog/2026/05/18/continuous-modeling-or-what-happens-to-the-model-...
1•goloroden•1m ago•0 comments

Why Crouching Tiger, Hidden Dragon Is a Masterpiece

https://yusufaytas.com/why-crouching-tiger-hidden-dragon-is-a-masterpiece
3•yusufaytas•1m ago•0 comments

Trapped in the dark web – a crisis growing in the shadows

https://apps.bostonglobe.com/2026/05/business/trapped-dark-web/child-exploitation-exploding-online/
1•abawany•2m ago•1 comments

Classic 7 is Windows 10 LTSC cosplaying as Windows 7

https://www.theregister.com/oses/2026/05/17/classic-7-is-windows-10-ltsc-cosplaying-as-windows-7/...
1•Bender•2m ago•0 comments

Pause App

https://pauseapp.space
1•coldcosmas•3m ago•0 comments

AI-generated code is 'pain waiting to happen'

https://www.theregister.com/ai-ml/2026/05/16/ai-generated-code-is-pain-waiting-to-happen/5241574
2•Bender•4m ago•0 comments

Temperate super-Earth found orbiting nearby red dwarf Ross 318

https://www.stellarcatalog.com/news/ross-318-temperate-super-earth-found
1•speckx•5m ago•0 comments

How to Start Investing with $100

https://comuniq.xyz/post?t=1095
1•01-_-•7m ago•0 comments

Microsoft is 1.84 Peters, Google is 0.66. What's the Peter unit?

https://github.com/zozo123/peter-gt-your-org
2•zozo123OR0x90•8m ago•0 comments

OpenSparrow – Open-source admin panel builder with zero dependencies

https://opensparrow.org/
1•tomaszwrobel•9m ago•0 comments

Rolling Shutter Demo

https://chiuhans111.github.io/spin/
1•Eduard•11m ago•1 comments

Journey to King Edward VIII Falls, Tallest Waterfall in Guyana

https://twitter.com/bronzebust/status/2056038216994529329
1•telotortium•11m ago•0 comments

Subscription Bombing: Email Under Attack

https://cacm.acm.org/practice/subscription-bombing-email-under-attack/
1•birdculture•12m ago•0 comments

Memo from Orson Welles on Touch of Evil (1957)

https://wellesnet.com/touch_memo1.htm
2•cocacola1•12m ago•0 comments

CHERI 2026 Conference videos playlist

https://www.youtube.com/playlist?list=PLTe5zG6binjnK0Ax2vvLBnb0ioojcaiVi
1•pjmlp•15m ago•0 comments

A Beginner's Guide to Irrational Behavior

https://danariely.com/coursera/
1•sebg•16m ago•0 comments

AI Needs Better Metaphors

https://metedata.substack.com/p/011-ai-needs-better-metaphors
3•young_mete•21m ago•0 comments

Here Comes (Forward Deployed) Everybody

https://worksonmymachine.ai/p/here-comes-forward-deployed-everybody
1•mooreds•21m ago•0 comments

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

1•debasishbarai•21m ago•0 comments

Microsoft Mdash Beats a Key Mythos Benchmark

https://www.forbes.com/sites/timkeary/2026/05/15/microsoft-mdash-beats-a-key-mythos-benchmark-her...
1•dimastopel•21m ago•0 comments

Language Registries Are Unstable by Default – Andrew Nesbitt

https://nesbitt.io/2026/05/15/language-registries-are-unstable-by-default.html
1•abdelhousni•22m ago•0 comments

The Anti-Scroll Experiment

https://magifenta.com
1•magifenta•23m ago•0 comments

Towards approachable observability with wide events

https://marending.dev/notes/wide-events/
1•beingflo•23m ago•0 comments

Scientists "bottle the sun" with a liquid battery that stores solar energy

https://www.sciencedaily.com/releases/2026/05/260513221821.htm
5•ndr42•24m ago•0 comments

Ask HN: How are you maintaining codebases and managing AI context for them?

1•shambu2k•25m ago•0 comments

Software engineers are obsolete for now

https://idiallo.com/blog/everyone-is-better-than-you
1•firefoxd•27m ago•0 comments

University of Arizona students boo Eric Schmidt's AI cheerleading

https://www.theverge.com/ai-artificial-intelligence/932203/university-of-arizona-students-boo-eri...
2•latexr•28m ago•0 comments

Plasticity: A Modern NURBS Modeler

https://www.plasticity.xyz/
1•dtj1123•29m ago•0 comments

The AI water issue is fake

https://blog.andymasley.com/p/the-ai-water-issue-is-fake
64•shepherdjerred•31m ago•38 comments

Coal pollution is cutting solar power output, study finds

https://www.ox.ac.uk/news/2026-05-14-coal-pollution-is-cutting-solar-power-output-study-finds
1•geox•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.