frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Responsibility means treating people like tools

https://www.seangoedecke.com/radical-responsibility-means-treating-people-like-tools/
1•Brajeshwar•26s ago•0 comments

Computers Are Bad: A newsletter

https://computer.rip/
1•CharlesW•2m ago•0 comments

Show HN: RAII and It's Architecture in C++

https://archetechmes.vercel.app/blog/raii-architecture
1•rzwsan•2m ago•0 comments

Headroom: Save Tokens from Reversible Compression

https://github.com/headroomlabs-ai/headroom
1•ghostoftiber•4m ago•0 comments

Language Models Can Control Their Own Attention

https://arxiv.org/abs/2609.02737
1•Anon84•4m ago•0 comments

Leading Theory for How Life on Earth Began Is 'Highly Unlikely'

https://www.sciencealert.com/leading-theory-for-how-life-on-earth-began-is-highly-unlikely-says-c...
1•jandrewrogers•4m ago•0 comments

You probably don't want to fine-tune

https://simonpcouch.com/blog/2026-09-03-fine-tune/
1•simonpcouch•4m ago•0 comments

LLMs can't jump – Tom Zahavy [pdf]

https://www.tomzahavy.com/files/llms-cant-jump.pdf
1•the-mitr•5m ago•0 comments

Show HN: Clustta – Open-source version control for creative work

https://clustta.com/
1•taiwofolu•5m ago•0 comments

Ask HN: Do all of you use Cloudflare for preventing DDoS, Bot and more attacks?

1•skwasimin•5m ago•0 comments

Norway's $2T sovereign fund proposes deep cuts to US Treasury holdings

https://www.reuters.com/business/norways-2-trillion-sovereign-fund-proposes-deep-cuts-us-treasury...
5•akyuu•6m ago•1 comments

Report: How developers react to AI-scented blog posts

https://writethatblog.substack.com/p/dev-reaction-to-ai-blog-posts
2•CursedSilicon•7m ago•0 comments

The Texas Experiment

https://www.ft.com/content/fff531fc-988c-4016-9b5b-25f2274f4d47
1•JumpCrisscross•7m ago•0 comments

Show HN: Unofficial 3DS Port of F-Zero X Written by Claude Code

https://cruxxxxxx.github.io/gdx-3ds/postmortem/index.html
1•coffeesoda•7m ago•0 comments

Billionaires Build (2020)

https://paulgraham.com/ace.html
1•tosh•8m ago•0 comments

PostgreSQL 19 connects the dots with standardized graph queries

https://www.theregister.com/databases/2026/09/04/postgresql-19-connects-the-dots-with-standardize...
1•jjgreen•9m ago•0 comments

Defining Culture and Its Spread

https://michaelgv.uk/posts/2026/08/what-culture-is-and-how-it-spreads/
2•NesquikMike•9m ago•0 comments

Own encrypted cloud storage without another monthly bill

https://perma.sh
2•bkatz1234•10m ago•0 comments

Independent investigation of Hugging Face incident - METR

https://metr.org/blog/2026-08-26-openai-hugging-face-incident-investigation/
2•Dangeranger•11m ago•0 comments

Amazon Achieves Enshittification Inception

https://pluralistic.net/2026/09/04/cheating-at-fraud/
1•hn_acker•11m ago•0 comments

1,200 AIs discovered a secret group chat

https://textlog.cc/post/3170
2•stagas•12m ago•0 comments

Show HN: Less-sheet – A minimal but fast CSV viewer

https://te-x.github.io/less-sheet/
1•te-x•13m ago•0 comments

Show HN: Give every agent the right data, access and context to get work done

https://lanes.sh/showcase/agentic-fleet
1•s-xyz•13m ago•0 comments

Unplug America – Canadian tech alternatives

https://engageq.notion.site/unplug-full
1•HotGarbage•13m ago•0 comments

The Second Bitter Lesson

https://twitter.com/alexvoica/status/2095882699542032653
2•alexvoica•14m ago•0 comments

Solution to Jane Street ASIC Reverse Engineering Challenge

https://559b81dc.ht-ml.app/
1•nsmith22•18m ago•0 comments

AI coding agent PR merge rates: Claude 84%, Codex 74%, Devin 43%, humans 85%

https://arxiv.org/abs/2607.21832
1•d-yoda•18m ago•0 comments

Fluxion: A Propagator-Based Reactive Web UI Framework in Common Lisp

https://glenneth.org/content/posts/2026-04-25-fluxion-reactive-web-ui-common-lisp.html
1•tmtvl•20m ago•0 comments

Show HN: Learn/Practice Sudoku strategies web app

https://sw-fun.github.io/sudoku/
1•softwarewright•21m ago•0 comments

98% of What Claude Code Does, I Never See. The 0.27% It Stops for Is the Point

https://grith.ai/blog/98-percent-of-claude-code-i-never-see
1•edf13•22m 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.