frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude watermark- science behind it

https://www.youtube.com/watch?v=FnAqruxx-QE
1•aymar_99•2m ago•0 comments

Chain-of-Thought Reasoning in the Wild Is Not Always Faithful

https://arxiv.org/abs/2503.08679
1•florianherrengt•3m ago•1 comments

How does wildfire smoke affect the economy?

https://phys.org/news/2026-08-wildfire-affect-economy.html
1•vinni2•4m ago•0 comments

Show HN: I am getting genuine questions

https://github.com/docbrain-ai/docbrain
1•bhanuhai2•5m ago•0 comments

We Stopped Paying for Linear

https://xiaofeidu.com/posts/linear-to-github-issues/
2•xiaofei_•6m ago•0 comments

If this algorithm runs too long, you can compress randomness

https://www.sidhantbansal.com/2026/Entropy-Stops-This-Algorithm/
1•sidhantbansal•11m ago•0 comments

What it felt like to hit the Hacker News front page

https://heyjonny.dev/posts/hitting-the-hacker-news-front-page/
1•heyjonny•12m ago•0 comments

AWS new AZ in eu-west-2 - beware of unexpected results

1•eddie_catflap•12m ago•0 comments

How Much Memory Does Your Agent Actually Need?

https://huggingface.co/blog/ibm-research/altk-evolve-hmm
1•Brajeshwar•12m ago•0 comments

Most Code Edits Don't Need an IDE

https://medium.com/@chris.ahrweiler/most-code-edits-dont-need-an-ide-163ec4ef299f
1•docjojo•12m ago•0 comments

Show HN: LongTerMemory, an AI EdTech Platform

https://wired.business/longtermemory
1•aledevv•14m ago•0 comments

Civic Hygiene – avoid building technologies that could be used by a police state

https://shkspr.mobi/blog/2013/11/civic-hygiene/
12•felineflock•14m ago•0 comments

MicroSD torture test: 133PB written, SanDisk fails 6 of 7 cards tested

https://www.tomshardware.com/pc-components/microsd-cards/microsd-card-testing-database-celebrates...
1•sbulaev•14m ago•0 comments

Why compiling Rust to WebAssembly is slow

https://00f.net/2026/08/19/why-compiling-rust-to-webassembly-is-slow/
1•jedisct1•19m ago•0 comments

What a Time to Be an Agent

https://hollisrobbinsanecdotal.substack.com/p/what-a-time-to-be-an-agent
2•HR01•20m ago•0 comments

Moderna shares double on melanoma vaccine trial success

https://www.ft.com/content/a98a77e2-5156-4189-b971-974a7e60130f
2•marvel_boy•21m ago•1 comments

Create Perfect Icons for macOS, iOS, Android, and the Web

https://medium.com/@chris.ahrweiler/create-perfect-icons-for-macos-ios-android-and-the-web-a1e05e...
1•docjojo•22m ago•1 comments

Liquid Death runs ad campaign focused on mailing urine to data centers

https://twitter.com/drinkgaragebeer/status/2089699138946408699
2•newspaper1•23m ago•0 comments

The Case Against Kanji

https://circuitscribbles.substack.com/p/the-case-against-kanji
1•paulpauper•23m ago•0 comments

Bill Atkinson and Dithering Algorithms

https://landonswartz.github.io/blog/dithering-algorithms/
2•BestBunsInTown_•24m ago•0 comments

H3 Video – MiniMax H3 AI Video Generator

https://www.h3vid.com
2•Follow_Cloud•25m ago•1 comments

Play the air A theremin in the browser using hand tracking and a webcam

https://termenvox.vercel.app/
1•linesofcode•27m ago•2 comments

Show HN: Leaflight – A Reader for Project Gutenberg

https://chromewebstore.google.com/detail/leaflight-—-reader-for-pr/ndobcikjemlpmcbjkokmlclfoekg...
2•samcgraw•27m ago•0 comments

Hetzner Inference Experiment: Open-weights SLMs free of charge

https://www.hetzner.com/blog/inference-experiment/
1•ignoramous•27m ago•0 comments

Language has two parameters (ArXiv preprint)

https://arxiv.org/abs/2608.18041
2•HR01•29m ago•0 comments

Nvidia's new financial strategy does not compute

https://www.theverge.com/ai-artificial-intelligence/981668/nvidias-goldman-blackrock-gpu-compute-...
4•Brajeshwar•31m ago•0 comments

I escaped the WebAssembly sandbox and got arbitrary shell execution on the host

https://trustsig.eu/blog/wasm2c-tableflip-unchecked-calloc/
2•TrustSig•31m ago•0 comments

$1M hacker challenge for Vercel Sandbox

https://vercel.com/blog/one-million-dollar-hacker-challenge-for-vercel-sandbox
1•rafaelc•32m ago•0 comments

Show HN: Helena – API client with no Electron and no accounts, in Go+Fyne

https://github.com/ideaconnect/helena
2•bpacholek•32m ago•1 comments

XWayland 26.1 RC1 Released with Many New Features

https://www.phoronix.com/news/XWayland-26.1-RC1
1•DemiGuru•32m 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.