frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

There's no evidence that mobile phones will give you brain cancer

https://www.rnz.co.nz/life/wellbeing/no-evidence-mobile-phones-cause-brain-cancer-new-study
3•billybuckwheat•2m ago•0 comments

About the OpenSubsonic API

https://opensubsonic.netlify.app/
1•toomuchtodo•3m ago•1 comments

Tinfoil.com

https://www.tinfoil.com/default.htm
2•willmeyers•4m ago•1 comments

Flock CEO Apologizes for Calling Activists 'Terrorists'

https://www.forbes.com/sites/thomasbrewster/2026/07/17/flock-ceo-sorry-for-labelling-activists-te...
2•chaps•7m ago•0 comments

What I learned inside escape room with one of the most brilliant mathematicians

https://www.begiant.ca/stories/people/jacob-tsimerman-math
1•amichail•7m ago•0 comments

Show HN: Fluent, tiny lang for reactivity and autograd

https://mlajtos.github.io/fluent/?code=VG91cg
1•mlajtos•9m ago•0 comments

Astronomers spot first atmosphere around a potentially habitable alien world

https://www.science.org/content/article/astronomers-spot-first-atmosphere-around-potentially-habi...
1•gmays•10m ago•1 comments

Stripe and Advent make $53B bid for PayPal

https://www.ft.com/content/3738e814-9470-4d7d-94a6-ac5e001a968e
1•PhilipA•12m ago•0 comments

Flock Safety had a car journalist stalked, wrongly accused, and detained

https://www.thedrive.com/news/inside-the-flock-dragnet-how-systemic-errors-led-to-police-ambushin...
8•monksy•12m ago•0 comments

Smoke, fire, floods: US faces triple extreme summer weather threats

https://www.reuters.com/business/environment/smoke-fire-floods-us-faces-triple-extreme-summer-wea...
1•montalbano•13m ago•0 comments

Agent Security Is a Systems Problem

https://arxiv.org/abs/2605.18991
2•bradreaves2•15m ago•1 comments

A24 Is Copyright Striking Backrooms Artwork Older Than the Movie

https://www.thegamer.com/the-backrooms-a24-copyright-strike-artwork/
1•josephcsible•16m ago•0 comments

Show HN: I ported Fallout 1 to the PSP

https://github.com/abduznik/fallout1-ce-psp
2•abduznik•16m ago•3 comments

Making TLA+ and x86 Kiss via Z3Py

https://www.philipzucker.com/kissin_tla/
2•matt_d•16m ago•0 comments

It Is Not the Critic Who Counts (1910)

https://www.trcp.org/2011/01/18/it-is-not-the-critic-who-counts/
2•Eridanus2•16m ago•0 comments

Mullin Threatens 'Prison Time' for State Officials Not Cooperating on Elections

https://www.mediaite.com/media/news/just-in-mullin-threatens-prison-time-for-state-officials-not-...
3•rawgabbit•17m ago•0 comments

How to Write Unmaintainable Code (2015)

https://github.com/droogans/unmaintainable-code
3•theanonymousone•17m ago•0 comments

Bridgetown: Next-Generation Progressive Site Generator

https://www.bridgetownrb.com/
2•thunderbong•18m ago•0 comments

Ask HN: Is AI sycophancy a way to reduce compute rather than make users happier?

1•amichail•18m ago•0 comments

The Zilog Z80 has turned 50

https://goliath32.com/blog/z80.html
9•st_goliath•19m ago•0 comments

Perldelta – what is new for Perl v5.44.0

https://metacpan.org/dist/perl/view/pod/perldelta.pod
2•birdculture•19m ago•0 comments

Show HN: Tools Berry – client-side calculators with open-source tax engines

https://tools-berry.com/
1•edmonddaher•21m ago•1 comments

The Java Story – The Official Documentary [video]

https://www.youtube.com/watch?v=ZqGSg4b_cZA
2•mashally•23m ago•0 comments

Ann Droid

https://en.wikipedia.org/wiki/Ann_Droid
1•Fizzadar•23m ago•1 comments

GNUnet 0.28.0 Released

https://www.gnunet.org/en/news/2026-07-0.28.0.html
1•summm•24m ago•0 comments

Wearable foundation models: a brief history

https://www.empirical.health/blog/wearable-foundation-models/
1•brandonb•25m ago•0 comments

EU set to axe 2039 net-zero industry target

https://www.euractiv.com/news/brussels-set-to-axe-2039-net-zero-industry-target/
1•alephnerd•25m ago•0 comments

Brown Professor Suspects Majority of His Class Used AI to Cheat

https://www.insidehighered.com/news/faculty/learning-assessment/2026/07/08/brown-professor-suspec...
1•bushwart•26m ago•0 comments

Meta trying to destroy whistleblower Sarah Wynn-Williams, US senator says

https://www.theguardian.com/technology/2026/jul/17/meta-whistleblower-sarah-wynn-williams-us-sena...
7•barbazoo•28m ago•0 comments

New spinning drone hides in plain sight

https://news.northwestern.edu/stories/2026/07/new-spinning-drone-hides-in-plain-sight
2•gmays•28m 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•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.