frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The male wellness guide to peptides

https://www.ft.com/content/4417cf18-d8cd-4ccc-9745-e728e8d69348
1•bookofjoe•8s ago•0 comments

Ubiquiti warns of new max severity UniFi OS vulnerability

https://www.bleepingcomputer.com/news/security/ubiquiti-warns-of-new-max-severity-unifi-os-vulner...
1•Brajeshwar•58s ago•0 comments

Fable 5 found waldo and circled him under 3 minutes

https://old.reddit.com/r/ClaudeCode/comments/1uqedx3/fable_5_found_waldo_circled_him_under_3_minu...
1•echelon•1m ago•0 comments

Show HN: What is the price impact over your sales (a price simualtion game)

https://www.fastcompete.com/price-wars
1•adibalcan•2m ago•0 comments

Angel Investor Simulator

https://guacosoft.com/angel/investorSim.html
1•babuskov•2m ago•0 comments

The Conversation Isn't Real

https://lonriesberg.com/posts/the-conversation-isnt-real/
1•lriesberg•3m ago•0 comments

Postgress Repo 3D Visualization

https://www.reddit.com/r/PrincipalAi/s/qt6tYiqeda
1•fernando-ram•3m ago•0 comments

Show HN: AI math chat that knows your notes, connecting you to human experts

https://www.prooftree.ai
1•lemma1729•3m ago•0 comments

Brave Place Search API: The Google Maps Alternative That Costs 6–7x Less

https://brave.com/blog/place-search-improved/
1•dotcoma•4m ago•0 comments

Two concerns I have with AI right now

1•ramoz•4m ago•0 comments

Ask HN: Any Quantum Computer people who knows how to run a benchmark here?

1•KenographerPrim•5m ago•0 comments

Two teens learn the hard way not to do toy gun drive-bys from a Waymo

https://arstechnica.com/cars/2026/07/two-teens-learn-the-hard-way-not-to-do-toy-gun-drivebys-from...
1•Gedxx•6m ago•0 comments

European countries top 'scorecard' on climate progress while US slips to 27th

https://www.theguardian.com/environment/2026/jul/08/climate-change-crisis-europe-us
1•mitchbob•6m ago•0 comments

Apple dropped plan for encrypting backups after FBI complained (2020)

https://www.reuters.com/article/us-apple-fbi-icloud-exclusive-idUSKBN1ZK1CT/
2•downbad_•6m ago•0 comments

AOLs Instant Messenger was the unsung hero of the early-aughts

https://a.wholelottanothing.org/aols-instant-messenger-was-the-unsung-hero-of-the-early-aughts/
1•gaws•7m ago•0 comments

TypeScript 7

https://devblogs.microsoft.com/typescript/announcing-typescript-7-0/
2•DanRosenwasser•8m ago•0 comments

Show HN: Maps for e-scooters (hills and battery routing)

https://battmap.com
1•thepaulthomson•8m ago•0 comments

Measuring the Trustworthiness of Open-Source-Derived Models

https://cognition.com/blog/measuring-open-source-model-trustworthiness
1•lord_sudo•8m ago•0 comments

FlockCamRE – Reverse Engineering of Flock Cameras

https://github.com/kernelstub/FlockCamRE
1•denysvitali•9m ago•0 comments

Show HN: Aerohud – Grid Overview for AeroSpace (macOS)

https://github.com/nikhilmwarrier/aerohud
1•niksystems•9m ago•0 comments

AI memory is a filing cabinet

https://platformpilot.ai/blog/your-ai-memory-is-a-filing-cabinet
2•laurauzcategui•10m ago•0 comments

TV licence fee is 'yesterday's model', new BBC director general says

https://www.bbc.co.uk/news/articles/c20yjjm7n87o
1•mmarian•10m ago•0 comments

Stereotypical LLMs

https://ordinaryintelligence.substack.com/p/stereotypical-llms
1•mldev_exe•11m ago•0 comments

Jam Programming Language

https://rapha.land/jam-programming-language/
1•birdculture•11m ago•0 comments

Show HN: a new paradigm for a smartphone camera interface

https://phase.buzz/interface/
1•AndrewSwift•12m ago•1 comments

Show HN: I built a $90 terminal to find where locals eat via spatial gravity

https://hungrybutnotstupid.com/
1•kingchesco•12m ago•0 comments

Show HN: paddock – Ranks and runs LLMs on your Mac from live GGUF headers

https://github.com/MaximeDeconinck/paddock
1•maximedeco•13m ago•0 comments

Show HN: Git-Backed Skill Sharing for Non Techies

https://skillburst.ai/blog/why-i-built-skillburst/
1•htahir111•13m ago•0 comments

Leveraged Stock ETFs Are as Stable as a Row of Dominoes

https://www.bloomberg.com/opinion/articles/2026-07-08/leveraged-stock-etfs-will-burn-retail-inves...
1•petethomas•14m ago•0 comments

Ask HN: Why are there only a handful of high quality TUI apps in homebrew?

1•amichail•15m 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.