frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

After Europe ditched Windows, China follows suit with its own home-grown Linux

https://www.xda-developers.com/after-europe-ditched-windows-china-follows-suit-with-its-own-home-...
1•ashitlerferad•23s ago•0 comments

Nearly one in ten published Claude Code skills does not load

https://toolproof.kynth.studio/census
1•kyisaiah47•1m ago•0 comments

Australia passes law to levy tech giants that fail to pay for local news

https://www.reuters.com/legal/litigation/australia-passes-law-levy-tech-giants-that-fail-pay-loca...
1•thm•2m ago•0 comments

Reverse-engineering Find My People to stalk a friend, cause I can

https://zerotistic.blog/posts/find-my-people-linux/
1•lalitmaganti•2m ago•0 comments

Fairphone (Gen. 6) Launched [video]

https://www.youtube.com/watch?v=v5v0LjXY6Fc
1•ashitlerferad•4m ago•0 comments

Show HN: Try Sequo to manage your AI context

https://sequo.app
1•shken•5m ago•0 comments

Show HN: Your all-in-one text engine – zero dependencies

https://dg.calia.cc/
1•silly-tae•5m ago•0 comments

LG's new OLED breakthrough can boost display lifespans

https://www.theverge.com/tech/982609/lg-oled-panel-flipp-display-technology
1•ksec•5m ago•0 comments

Show HN: Ez – a macOS command runner that flags when a command gets slower

https://github.com/urtti/ez
2•frankbyte•6m ago•0 comments

The first AI agents hire human to ship ugc videos for you

https://klaylab.com/
1•zya_wei•6m ago•0 comments

Control Panel for Twitter: browser extension gives you control and adds features

https://github.com/insin/control-panel-for-twitter
1•akyuu•9m ago•0 comments

Use your favorite coding agent with any model

https://getaivo.dev/
1•spirit23•11m ago•0 comments

Agent Voice, communicate with your coding agent all from Voice, on the fly

https://github.com/dixonSolutions/AgentVoice
1•rat_rad•12m ago•1 comments

50% of all "employment growth" in California and New York is home care fraud

https://twitter.com/Kazanjy/status/2090087364186239278
2•MrBuddyCasino•12m ago•0 comments

Show HN: Sheeplaunch – Product Launch Platform

https://sheeplaunch.com
1•not_wowinter14•13m ago•0 comments

DDD matters more when AI writes your code

https://threedots.tech/post/ddd-and-ai-coding/
1•roblaszczak•13m ago•0 comments

Show HN: Mock endpoints with Polo

https://www.http-response.com/
1•primalscreamer•19m ago•0 comments

Seeing beyond BMI: Estimating cardiometabolic risk with smartphone imagery

https://research.google/blog/seeing-beyond-bmi-estimating-cardiometabolic-risk-with-smartphone-im...
2•leanderjanssen•22m ago•0 comments

Support networks aim to help kids through the polycrisis

https://www.technologyreview.com/2026/08/20/1141686/support-networks-help-kids-polycrisis/
1•joozio•24m ago•0 comments

A GTA VI leaker seemingly has a playable build

https://www.theverge.com/games/982623/gta-vi-leaker-playable-build
3•leumon•24m ago•0 comments

Apple's Camera-Equipped AirPods See Them in Action

https://www.macrumors.com/2026/08/17/camera-equipped-airpods-macos-26-7/
2•jacquesm•26m ago•0 comments

The United States is about to wake up to the threat from China's space program

https://arstechnica.com/space/2026/08/the-united-states-is-about-to-wake-up-to-the-threat-from-ch...
3•ironyman•28m ago•0 comments

Issues in the Repo

https://nesbitt.io/2026/08/20/issues-in-the-repo.html
1•jamietanna•30m ago•0 comments

Show HN: Protobuf.com, a visual, interactive guide to Protocol Buffers

https://protobuf.com/
2•sudorandom•32m ago•0 comments

Satellite proliferation imperils astronomical observations, study finds

https://www.reuters.com/business/media-telecom/satellite-proliferation-imperils-astronomical-obse...
2•comebhack•32m ago•0 comments

Computers Compared

https://fly.io/computers-compared/
1•jacobwg•32m ago•0 comments

Apple Accidentally Leaked More Than 10 New Products in macOS Update

https://www.macrumors.com/2026/08/19/apple-leak-macos-26-7/
4•dotmanish•33m ago•0 comments

ShieldFont

https://shieldfont.org/encoder/
1•bookofjoe•33m ago•0 comments

How to Outsmart AI When It's Tracking Your Workday

https://www.wsj.com/lifestyle/workplace/how-to-outsmart-ai-when-its-tracking-your-workday-3ad6907e
2•cebert•36m ago•2 comments

Supply Chain Attack on Arrayref

https://blog.rust-lang.org/2026/08/20/supply-chain-attack-on-arrayref/
3•praseodym•39m 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.