frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Blockstor: A LINSTOR-compatible storage system for Kubernetes

https://cozystack.io/blog/2026/08/blockstor-linstor-compatible-storage-for-kubernetes/
1•valyala•1m ago•0 comments

Celld: Self-hosted, distributed durable objects

https://flaviocopes.com/celld/
1•markgavalda•2m ago•0 comments

Bus driver kicked explosive drone out of the air at German airport

https://www.ctvnews.ca/world/article/bus-driver-kicked-explosive-drone-out-of-air-at-german-airpo...
1•vrganj•2m ago•0 comments

DEF Con 34

https://defcon.org/html/defcon-34/dc-34-index.html
1•Alien1Being•10m ago•0 comments

Grok Imagine Image 2.0

https://x.ai/news/grok-imagine-image-2
1•deadalus•11m ago•0 comments

Recent science fiction, fantasy and horror – review roundup

https://www.theguardian.com/books/2026/aug/07/the-best-recent-science-fiction-fantasy-and-horror-...
1•sorokod•17m ago•0 comments

DIY SLorq Speaker

https://ccrma.stanford.edu/~njb/research/slorkSpeaker/speakerSupplyList.htm
2•sans_souse•21m ago•0 comments

The Life of Public Safety Communications Signals: A Comparative Security

https://arxiv.org/abs/2608.05247
1•sbulaev•21m ago•0 comments

Using a deterministic classifier for disaster relief

https://verantyx.ai/
1•pakupaku•23m ago•1 comments

Pg_stat_ch: PostgreSQL Query Telemetry Exporter to ClickHouse

https://github.com/ClickHouse/pg_stat_ch
1•saisrirampur•25m ago•0 comments

Intel just matched Apple Silicon [video]

https://www.youtube.com/watch?v=A2B7oI0FYqo
3•thelastgallon•25m ago•0 comments

Show HN: I audited 743 URLs across 8 free browser tools

https://github.com/Gavin1901/free-browser-tools-index/blob/master/daily/2026-08-08-8site-pore-lev...
1•gavinbuilds•26m ago•0 comments

Lemire: RAM on a per unit basis is about as expensive as it was in 2007

https://xcancel.com/antibot/captcha
2•arto•29m ago•0 comments

Why we configure huge pages in ClickHouse Managed Postgres

https://clickhouse.com/blog/huge-pages-clickhouse-managed-postgres
1•saisrirampur•29m ago•0 comments

Why strict memory overcommit matters for Postgres

https://clickhouse.com/blog/strict-memory-overcommit-for-postgres
1•saisrirampur•30m ago•0 comments

Which parts of Kernel would benefit from C#'s features?

1•northlondoner•31m ago•0 comments

Show HN: Skaylar – Analyze Datasets with Benford's Law

https://temi-tade.github.io/Skaylar/
1•temi0x0•31m ago•0 comments

The biggest threat to air-passenger safety may be our own government

https://nymag.com/intelligencer/article/marine-ones-near-miss-incident-was-scarier-than-it-looks....
1•Alien1Being•31m ago•0 comments

Cyber Security's Winners and Losers

https://www.citriniresearch.com/p/protection-matters
1•kesor•41m ago•0 comments

Cybercom 2.0

https://twitter.com/SecWar/status/2085794620961653105
1•kesor•42m ago•0 comments

RAM pricing has risen to normalized 2007 levels

https://www.tomshardware.com/pc-components/ram/scientist-says-ram-pricing-has-reverted-to-normali...
2•jonbaer•44m ago•0 comments

Cable management in node-based UI

https://twitter.com/ggsimm/status/2085652324853186604
1•kesor•48m ago•0 comments

Who is liable when AI goes rogue? Lawyers see new risks

https://www.reuters.com/business/who-is-liable-when-ai-goes-rogue-lawyers-see-new-risks-2026-08-07
1•giuliomagnifico•1h ago•2 comments

Signal: Optional registration without a phone number requires a one-time payment

https://aboutsignal.com/news/signal-login-registration-without-a-phone-number/
1•moelf•1h ago•0 comments

Show HN: NoCrap – Gamifying porn addiction recovery

https://nocrap.vercel.app/
1•uioio•1h ago•1 comments

Germany's gas gamble puts Europe's winter at risk

https://www.politico.eu/article/germany-gas-reserve-low-europe-winter-energy/
3•leonidasrup•1h ago•1 comments

Googie Architecture

https://en.wikipedia.org/wiki/Googie_architecture
1•userbinator•1h ago•0 comments

Auction Expert Breaks Down the 20 Rarest Historical Treasures Sold in History

https://www.boredpanda.com/rarest-most-expensive-historical-artifacts-ever-sold-thehistoricalinsi...
4•historical1234•1h ago•2 comments

Gemini is Cooked but GCP is Cooking

https://newsletter.semianalysis.com/p/gemini-is-cooked-but-gcp-is-cooking
1•theanonymousone•1h ago•0 comments

Lybrary,a persistent AST-aware code memory for AI agents(MCP server pip install)

https://github.com/vibhu-dixit/lybrary
2•vibhudixit_30•1h 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.