frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Closing in on the Markdown Book

https://www.thurrott.com/paul/340890/closing-in-on-the-markdown-book
1•theanonymousone•2m ago•0 comments

A mysterious drone. A Mercedes RV. A Chinese intelligence puzzle in the New Mexi

https://www.cnn.com/2026/08/31/politics/drone-incursions-us-bases-chinese-spies
3•pir8life4me•14m ago•1 comments

AMD unveils next-generation RDNA and PlayStation tech with Sony (2025)

https://overclock3d.net/news/gpu-displays/amd-unveils-next-generation-rdna-and-playstation-tech-w...
2•peter_d_sherman•17m ago•1 comments

Dissociation Isn't Always a Trauma Response

https://www.psychologytoday.com/us/blog/the-neurodivergent-psychologist/202608/dissociation-isnt-...
4•thebeardisred•17m ago•0 comments

Vermell – Minimal, dependency-free C++ web framework using epoll

https://github.com/vermellcc/vermell
2•standar-donkey•20m ago•0 comments

Lapce – fast and powerful code editor

https://lap.dev/lapce/
3•jcbhmr•21m ago•0 comments

Agency and Agents

https://www.oneusefulthing.org/p/agency-and-agents
2•saikatsg•23m ago•0 comments

Everyone Was Right About the Button

https://medium.com/@gurvinder372/article-1-everyone-was-right-about-the-button-c2daf899396e
2•gps372•23m ago•0 comments

HuggingFace Attack Postmortem: Fleshing Out the Facts

https://thezvi.substack.com/p/huggingface-attack-postmortem-fleshing
3•paulpauper•29m ago•0 comments

ATLAS MITRE

https://atlas.mitre.org/matrices/ATLAS
3•saikatsg•29m ago•0 comments

Google Ads vs. Facebook Ads: Which Is Better for Small Businesses?

https://www.hostiqen.com/2026/08/google-ads-vs-facebook-ads-which-is.html
2•reviewhub•29m ago•0 comments

Building Without Predicting

https://sive.rs/fit
5•Curiositry•30m ago•0 comments

Show HN: A Bluesky bot that shares Wikipedia links from the HN front page

https://bsky.app/profile/hnwiki.bsky.social
3•doctoboggan•32m ago•0 comments

Wrong Tools for Clients

https://www.moodlenstodo.info
2•Amine000•32m ago•0 comments

expect-native: Jest's expect with Node's native node:test runner

https://www.npmjs.com/package/expect-native
2•ramblingenzyme•32m ago•0 comments

Ollama's Transparent Pricing

https://ollama.com/blog/transparent-pricing
3•wertyk•35m ago•0 comments

What Happened to Yoga?

https://www.theatlantic.com/culture/2026/08/yoga-america-culture-decline/688461/
3•fortran77•35m ago•0 comments

Malicious Virtualizor update served via BGP hijacking

https://www.virtualizor.com/blog/security-incident-bgp-hijacking/
2•MallocVoidstar•35m ago•0 comments

Show HN: Compute.cheap – the cheapest H100/H200 compute in the world

https://compute.cheap/
2•EmiCorleone•36m ago•0 comments

Show HN: Kagelin – offline-first tasks/habits/focus/calendar, AGPL

https://www.kagelin.app/
1•achyuth072•36m ago•0 comments

Show HN: Clippy Vision – local AI that remembers your screen across apps

https://github.com/protocorn/clippy-vision/issues/53
1•sahil2412•38m ago•0 comments

Nowledge Mem

https://nowledge-labs.ai/blog/nowledge-mem
1•jinqueeny•42m ago•0 comments

Listers: A Glimpse into Extreme Birdwatching

https://en.wikipedia.org/wiki/Listers:_A_Glimpse_Into_Extreme_Birdwatching
1•vismit2000•44m ago•0 comments

Ask HN: Why do people get mad at AI pastes

5•ThinkAboutItt•46m ago•5 comments

Why is Arrays.fill 265 times slower on G1GC?

https://krzysztofslusarski.github.io/2026/08/19/g1barrier.html
2•ejboy•48m ago•0 comments

Don't be the Vitamin B guy

https://hedonicescalator.substack.com/p/dont-be-the-vitamin-b-guy
2•paulpauper•48m ago•0 comments

How Much Is That Gene-Edited Dog in the Window?

https://www.nytimes.com/2026/08/31/science/dog-breeding-gene-editing-crispr.html
1•paulpauper•48m ago•0 comments

Rust Implementation of Tailscale

https://github.com/tailscale/tailscale-rs
5•hazira•48m ago•0 comments

ArXiv has almost 600 submissions today and most are AI slop

https://arxiv.org/list/math/new
6•marysminefnuf•53m ago•1 comments

Show HN: Eatheria – Self-hosted AppSec platform with AI false-positive filtering

https://github.com/MartinCrespoC/Security-Team---Workspace-
3•ikharoz•55m 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.