frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Shibuya – A High-Performance WAF in Rust with eBPF and ML Engine

https://ghostklan.com/shibuya.html
1•germainluperto•39s ago•0 comments

The Era of AI human clone

1•Metalcode•58s ago•0 comments

Show HN: I built a tool track cash flow without the "spreadsheet stress"

https://www.opboard.io/
1•wwxoxo•1m ago•0 comments

Baudbot: Always-on AI assistant for dev teams

https://github.com/modem-dev/baudbot
1•tosh•2m ago•0 comments

Why Frederick Wiseman Was the Greatest Documentary Filmmaker Ever

https://www.newyorker.com/culture/the-front-row/why-frederick-wiseman-was-the-greatest-documentar...
1•mitchbob•2m ago•1 comments

Anthropic announces proof of distillation at scale by MiniMax, DeepSeek,Moonshot

https://twitter.com/anthropicai/status/2025997928242811253
2•Jimmc414•3m ago•0 comments

Lucid cuts 12% of its US workforce in a profitability push

https://sherwood.news/markets/lucid-cuts-12-of-its-us-workforce-in-a-profitability-push/
1•avonmach•6m ago•0 comments

Show HN: I vibe-coded a custom WebGPU engine for my MMO

https://github.com/verekia/voidcore
1•jverrecchia•6m ago•0 comments

Show HN: Code that makes Einstein's equivalence principle bidirectional

https://go.dev/play/p/LtvvBYQN3t7
1•u3829hg•10m ago•0 comments

The "giddy nothingness" of AI coding (from creator of Dapper, OTel, etc.)

https://foggyfuture.substack.com/p/the-giddy-nothingness-of-automatic
2•el_bhs•10m ago•0 comments

The Fundraising Tactic AI Startups Are Using to Juice Valuations

https://www.wsj.com/business/entrepreneurship/the-fundraising-tactic-ai-startups-are-using-to-jui...
1•vshastry•11m ago•0 comments

Lifo – Browser-Native OS for AI Sandboxing

https://lifo.sh
1•twapi•12m ago•1 comments

Webspace Invaders

https://matthiasott.com/articles/webspace-invaders
1•eustoria•12m ago•0 comments

Hate the peer-review process? Einstein did too (2014)

https://theconversation.com/hate-the-peer-review-process-einstein-did-too-27405
1•Tomte•12m ago•0 comments

Show HN: RBAC Algorithm – Pure Python, hybrid RBAC+ABAC, pluggable storage

https://github.com/Maneesh-Relanto/RBAC-algorithm
1•maneeshthakur•13m ago•0 comments

An in-depth guide to customising lists with CSS

https://piccalil.li/blog/an-in-depth-guide-to-customising-lists-with-css/
1•eustoria•14m ago•0 comments

What are your top 5 missing features of OpenClaw?

1•challehallberg•14m ago•0 comments

CEO Phil Spencer and Xbox President Sarah Bond Depart

https://sherwood.news/business/microsoft-makes-dramatic-shakeup-to-its-gaming-division-as-gaming-...
1•avonmach•17m ago•1 comments

Scrapping business class could halve aviation emissions – new study

https://theconversation.com/scrapping-business-class-could-halve-aviation-emissions-new-study-275474
2•DamonHD•18m ago•0 comments

Eac-d – lightweight push-to-deploy for Proxmox LXC (Go, no CI platform)

https://github.com/FratteFlorian/easycd
1•flofra•18m ago•1 comments

Show HN: Rhome, a social app for media recs from friends instead of algorithms

https://preview.rhomeapp.com/profile/rohannihalani
3•rohannih•21m ago•0 comments

One-liner to get Claude Code usage stats

https://github.com/anthropics/claude-code/issues/13585
1•behnamoh•21m ago•0 comments

Move over stoics Why we should all embrace nihilism

https://www.theguardian.com/books/2026/feb/23/nihilism-why-we-should-embrace-it
4•devonnull•21m ago•0 comments

Anthropic Accuses Chinese Companies of Siphoning Data from Claude

https://www.wsj.com/tech/ai/anthropic-accuses-chinese-companies-of-siphoning-data-from-claude-63a...
4•mrbonner•21m ago•0 comments

Cancer, Water, Religion, Tooze, Weiss, Land, Diff Jobs

https://www.thediff.co/archive/longreads-open-thread-166/
1•paulpauper•22m ago•0 comments

Daniel Litt on AI and Math

https://marginalrevolution.com/marginalrevolution/2026/02/daniel-litt-on-ai-and-math.html
1•paulpauper•23m ago•0 comments

OpenClaw – My Automation Setup

https://krausefx.com//blog/openclaw-my-automation-setup
3•domysee•23m ago•0 comments

Cartographic Symbologies: The Art and Design of Expression in Historic Maps

https://exhibits.stanford.edu/cartosym/browse
2•starkparker•24m ago•0 comments

Hidden Cause of Permanent Hearing Loss Identified

https://neurosciencenews.com/hearing-loss-tmc1-membrane-apoptosis-30163/
2•mikhael•24m ago•0 comments

Every SaaS Is Now an API. Whether They Like It or Not

https://twitter.com/nicbstme/status/2025643017571541378
1•nbstme•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•10mo ago

Comments

palata•10mo 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•10mo 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•10mo 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•10mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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.