frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI Reconstructed Dead Pilots' Voices from Public NTSB Records

https://firethering.com/ai-recreated-dead-pilots-voices-ntsb-database/
1•steveharing1•21s ago•0 comments

Show HN: Larksson-lang: everything is a map or an atom

https://github.com/arthurzhu29/larksson
1•arthurzhu29•4m ago•0 comments

Experience: We found a baby on the subway – now he's our 26-year-old son

https://www.theguardian.com/lifeandstyle/2026/may/22/experience-found-baby-subway-now-26-year-old...
1•Michelangelo11•5m ago•0 comments

Don't Roll Your Own

https://susam.net/do-not-roll-your-own.html
1•Tomte•8m ago•0 comments

Sci-bot – AI-powered research assistant, powered by Sci-Hub

https://sci-bot.ru/
2•gasull•11m ago•0 comments

The New Luddite Movement

https://www.ft.com/content/f5c96fa6-5b9b-4951-b71d-e32b3b57d8df
2•quick_brown_fox•11m ago•0 comments

Only 17% of all 64-bit Integers are products of two 32-bit integers

https://lemire.me/blog/2026/05/22/only-17-of-all-64-bit-integers-are-products-of-two-32-bit-integ...
3•signa11•17m ago•0 comments

AI Visibility Engineering Glossary – AEO, Geo, LLM Retrieval

https://axonsystem.net/en/glossary/
2•FrancescoTinti•19m ago•0 comments

Medieval Europe (in 23 minutes) [video]

https://www.youtube.com/watch?v=kVEldvGXg4w
1•AndrewDucker•20m ago•0 comments

Church Encoding, Parametricity, and the Yoneda Lemma

https://blog.wybxc.cc/blog/parametricity/
1•g0xA52A2A•29m ago•0 comments

Null Linux

https://github.com/Duck25543/Null-Linux
1•PvsLH102•31m ago•0 comments

Whimsical Animations

https://whimsy.joshwcomeau.com
1•vismit2000•32m ago•0 comments

Texas AG sues Meta over claims that WhatsApp doesn't provide end-to-end encrypt

https://arstechnica.com/security/2026/05/texas-ag-sues-meta-over-claims-that-whatsapp-doesnt-prov...
2•joozio•35m ago•0 comments

After Automation

https://every.to/p/after-automation
1•jibcage•43m ago•0 comments

Spanish Court Declines to Fine NordVPN over LaLiga Piracy Blocking Order

https://torrentfreak.com/spanish-court-declines-to-fine-nordvpn-over-laliga-piracy-blocking-order/
10•gslin•45m ago•1 comments

The Best Windows is Linux

https://lunduke.substack.com/p/the-best-windows-is-linux
3•gargan•51m ago•0 comments

The just-say-no engineer was a ZIRP phenomenon

https://www.seangoedecke.com/the-just-say-no-engineer-was-a-zirp-phenomenon/
1•vismit2000•51m ago•0 comments

High-Throughput Chips for LLMs

https://matx.com/
1•consumer451•54m ago•0 comments

Denuvo game cracked on day 1 of launch

https://pastebin.com/jQjvNrvA
2•sensanaty•54m ago•0 comments

Parsing IPv6 Addresses Crazily Fast with AVX-512

https://lemire.me/blog/2026/05/23/parsing-ipv6-addresses-crazily-fast-with-avx-512/
2•0xedb•55m ago•0 comments

Show HN: Brev – A frictionless Android note taking app

https://play.google.com/store/apps/details?id=com.shkurta.brev&hl=en_US
1•Klaudjo_shkurta•1h ago•0 comments

Layoffs Hitting Zalando?

https://old.reddit.com/r/cscareerquestionsEU/comments/1tkx5ll/layoffs_hitting_zalando/
2•theanonymousone•1h ago•0 comments

The International Space Station is leaking (again)

https://arstechnica.com/space/2026/05/uh-oh-the-international-space-station-is-leaking-again/
2•jnord•1h ago•0 comments

AI is getting pricey, but relief is coming, but not for you

https://www.theregister.com/ai-ml/2026/05/21/ai-is-getting-pricey-but-relief-is-coming-but-not-fo...
2•jnord•1h ago•1 comments

ExtendDB – The DynamoDB API, everywhere you run code

https://extenddb.org/
2•0xedb•1h ago•1 comments

New RFC Editor Website

https://www.rfc-editor.org/
1•jerleth•1h ago•0 comments

Former US execs plead guilty to aiding tech support scammers

https://www.bleepingcomputer.com/news/security/former-us-execs-plead-guilty-to-aiding-tech-suppor...
3•jnord•1h ago•0 comments

Rubish: A Unix shell written in pure Ruby

https://github.com/amatsuda/rubish
3•winebarrel•1h ago•0 comments

Ask HN: Is $300/HR too low these days for custom full stack?

3•noduerme•1h ago•0 comments

UK economic catastrophe unless it adapts to young people rewired by smartphones

https://news.sky.com/story/uk-faces-economic-catastrophe-unless-it-adapts-to-young-people-rewired...
4•austinallegro•1h 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.