frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

WASM to Go Source Code

https://github.com/goccy/wasm2go
1•jcbhmr•15s ago•0 comments

Ask HN: How would you anthropomorphize the Anthropic Claude logo?

1•standeven•1m ago•0 comments

Automattic's interim CEO and legal chief signed reciprocal severance deals

https://techcrunch.com/2026/09/16/automattics-interim-ceo-and-legal-chief-signed-reciprocal-sever...
2•miguelxpn•4m ago•1 comments

Arrow 2 and Arrow 2 Telos

https://quiver.ai/blog/introducing-arrow-2-0/
1•handfuloflight•4m ago•0 comments

History of Forgotten Chips [video]

https://www.youtube.com/watch?v=7Cd4NQu1OG0
1•rbanffy•7m ago•0 comments

An air taxi that floats: Regent's Seaglider takes flight with people on board

https://www.smartcitiesdive.com/news/regent-seaglider-first-human-crewed-flight/829828/?_hsenc=p2...
2•rmason•8m ago•0 comments

Brushstrokes: Avant-Garde and the Psychology of Perception

https://eclecticlight.co/2026/09/16/brushstrokes-avant-garde-and-the-psychology-of-perception/
1•Brajeshwar•9m ago•0 comments

The Rhythm of Your Breath Leaves a Fingerprint on Your Thoughts

https://nautil.us/the-rhythm-of-your-breath-leaves-a-fingerprint-on-your-thoughts-1285059
1•Brajeshwar•9m ago•0 comments

New satellites and artificial intelligence are transforming wildfire detection

https://www.theguardian.com/us-news/2026/aug/17/satellites-ai-wildfire-detection
2•rmason•9m ago•0 comments

How to use HDR brightness as a graphic design hack

https://hdrlogo.com/after-white
1•alex_trfmv•10m ago•1 comments

DOE vs. GitHub, INC: LLM generated-content not a DMCA violation [pdf]

https://cdn.ca9.uscourts.gov/datastore/opinions/2026/09/16/24-7700.pdf
1•telotortium•11m ago•0 comments

Racing driver is about to race 100 karts at once

https://arstechnica.com/cars/2026/09/the-worlds-best-racing-driver-is-about-to-race-100-karts-at-...
1•Brajeshwar•11m ago•0 comments

What's New in PHP 8.6

https://laravel-news.com/php-8-6
2•speckx•12m ago•0 comments

Denuvo Sues Game Cracker 'Voices38' for Bypassing Its Anti-Tamper DRM

https://torrentfreak.com/denuvo-sues-game-cracker-voices38-for-bypassing-its-anti-tamper-drm/
1•Cider9986•12m ago•0 comments

Claude.md is good for taste and project context.It's a weak place for invariants

https://tesseracted-labs-blog.vercel.app/enforcing-coding-agent-guardrails-in-the-runtime-instead...
2•kkm•13m ago•0 comments

Think about your goals and threat models for MFA authentication

https://utcc.utoronto.ca/~cks/space/blog/tech/MFAConsiderGoalsAndThreatModels
1•speckx•14m ago•0 comments

Priest, Monk, and Mathematician

https://logangraves.com/priest-monk-mathematician
1•fbrusch•15m ago•0 comments

Who's afraid of open source AI?

https://www.youtube.com/watch?v=siy0744Ykys
1•frag•16m ago•0 comments

Mozilla and Mistral partner to expand AI competition and preserve user choice

https://blog.mozilla.org/en/firefox/mozilla-mistral-partnership/
2•n_plus_1_acc•16m ago•0 comments

Backups Aren't Simple

https://filipovski.net/2026/09/16/backups-arent-simple.html
3•afilipovski•17m ago•0 comments

Fee of $3 for a Signal account without a number in new Android beta

https://community.signalusers.org/t/beta-feedback-for-the-upcoming-android-8-28-release/76457
2•Cider9986•17m ago•1 comments

Show HN: Plexus – Telemetry for hardware teams who could build it but shouldn't

https://plexus.company
1•annnnnnn•18m ago•0 comments

I vibecoded a Desert Strike tribute in 20 min

https://jcotero.dev/cloud-strike/ch1/
1•joaootero•18m ago•1 comments

The sexy AI-powered dating app scams are here (gift link)

https://www.theverge.com/ai-artificial-intelligence/995348/ai-dating-app-scams
1•ohjeez•19m ago•0 comments

Kiln

https://kiln.brokenhands.io/
2•frizlab•19m ago•0 comments

SupraLabs – leading experimental Small Language Models that run on any device

https://supra-labs.com/
1•modinfo•19m ago•0 comments

I made at thing that made Sonnet beat Opus on prod debugging tasks

https://github.com/neat-technologies/neat
1•dcdeniz•20m ago•0 comments

I built an on-device real-time translator that doesn't require hardware

https://apps.apple.com/us/app/caliptic-offline-translator/id6804074288
1•caliptictransla•21m ago•0 comments

The Unicode Standard, Version 18.0

http://blog.unicode.org/2026/09/announcing-unicode-standard-version-180.html
2•jwilk•23m ago•1 comments

Magento analytics boosted using DuckDB engine and the same transactional MariaDB

https://mariadb.org/trying-duckdb-for-magento-analytics-an-experiment-with-one-million-orders/
1•drrtuy•24m 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.