frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Qwen3.8 Max – Cost per task higher than Astra on Artificial Analysis

https://artificialanalysis.ai/models/qwen3-8-max
1•mydreamof•1m ago•1 comments

COBOL dev won .NET hackathon with help from AI

https://www.theregister.com/ai-and-ml/2026/09/15/cobol-dev-won-net-hackathon-with-help-from-ai-an...
1•theanonymousone•2m ago•0 comments

Valeriepieris Circle

https://en.wikipedia.org/wiki/Valeriepieris_circle
1•edward•6m ago•0 comments

Show HN: Point at anything in your app, say what you want, get a spec

https://dhamark.com/try
1•Femina•6m ago•0 comments

Show HN: LaunchPad – I built a Launchpad to replace macOS Apps

1•zhangchioulin•8m ago•0 comments

UK mathematician debunks myth around Parthenon's optical illusions

https://www.theguardian.com/science/2026/sep/16/uk-mathematician-debunks-myth-parthenon-optical-i...
1•trocado•9m ago•0 comments

The Gap Will Grow

https://backnotprop.substack.com/p/the-gap-will-grow
1•ramoz•11m ago•0 comments

The secret formula for Apple's rounded corners (2023)

https://arun.is/blog/apple-rounded-corners/
1•guynamedloren•12m ago•0 comments

Dense vs. Moe Models: Active Parameters, Throughput, and When to Choose Each

https://developer.nvidia.com/blog/dense-vs-moe-models-active-parameters-throughput-and-when-to-ch...
1•pretext•13m ago•0 comments

Nightmare Eclipse revelaved his identity

https://twitter.com/MSNightmare2000/status/2099381382925447545
1•croes•13m ago•0 comments

Secret Life of Circuits – Illustrated Guide to Electronic Circuit Design

https://nostarch.com/secret-life-of-circuits
2•alibarber•16m ago•0 comments

Sanders: "If AI is coming for workers, it should bring a 4-day workweek with it"

https://fortune.com/2026/09/15/bernie-sanders-ai-four-day-workweek-bill/
2•Markoff•18m ago•1 comments

Ask HN: How do you test an app from a region you're not physically in?

1•Stranger5901•21m ago•0 comments

Attribution-Based Control in AI Systems

https://attribution-based-control.ai/
1•handfuloflight•24m ago•0 comments

Why WordPress Is Still the #1 CMS in 2026

https://wpaudit.cc/blog/why-wordpress-is-the-worlds-number-one-cms-2026/
1•mysticmetal•26m ago•0 comments

Apple M5 Ultra Geekbench

https://browser.geekbench.com/v7/cpu/354092
2•7777777phil•29m ago•0 comments

Roundtables: Could AI kill us all?

https://www.technologyreview.com/2026/09/15/1143936/roundtables-will-ai-really-kill-us-all/
1•joozio•30m ago•0 comments

Ask HN: How do you get coding agents to clean up after changing direction?

2•BearBest•32m ago•0 comments

DFOS is an open protocol for identities, signed records, delegated permissions

https://protocol.dfos.com
1•sigalor•34m ago•0 comments

Klaus Programmieren

https://klausprogrammieren.com/
1•microsoftedging•35m ago•0 comments

Due to DMA, Siri AI delayed in EU for iOS 27 and iPadOS 27

https://www.apple.com/newsroom/2026/06/due-to-dma-siri-ai-delayed-in-eu-for-ios-27-and-ipados-27/
3•isolli•37m ago•0 comments

Mozill's Built-In VPN in Firefox

1•anidsiam•39m ago•0 comments

Bootstrap from Twitter

https://getbootstrap.com/2.0.2/
2•auraham•43m ago•0 comments

GPT Image 2.5 Prompts

https://github.com/VulcanEon/awesome-gpt-image-2.5-prompts
1•aurenvale•44m ago•0 comments

How Streaks Work?

https://sheets.works/data-viz/streaks
1•lordbubbles•45m ago•0 comments

How meaning is fundamentally altered by sonic environments

https://scifi.danieldeboulay.com/
1•deboulaymxf•46m ago•0 comments

Atria Dawn Preview: an AI model trained end-to-end on verifiable research

https://atria-dawn.atominnolab.com/
2•naktinis•49m ago•0 comments

Show HN: Nerdulator – put something in, get everything out (no AI)

https://nerdulator.com
1•newlifehelp•54m ago•0 comments

EchoMuse – Alexa replacement and controller for Echo Dot 2nd Generation device

https://github.com/wilbowes/EchoMuse
1•tehlike•54m ago•0 comments

The Controversial Linear No-Threshold Model

https://jnm.snmjournals.org/content/58/1/7
1•leonidasrup•57m 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.