frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Turning the database inside-out with Apache Samza (2015)

https://martin.kleppmann.com/2015/03/04/turning-the-database-inside-out.html
1•subset•14s ago•0 comments

India's 'Cockroach' Gen Z has had enough

https://www.ft.com/content/ac19e4f4-cf7b-4a75-b591-0ca79ef62d37
1•mraniki•1m ago•0 comments

Why did I buy this domain?

https://poop.bike/
1•edent•3m ago•0 comments

The uops.info Code Analyzer

https://uica.uops.info/
1•csmantle•3m ago•0 comments

ChatGPT Is Down

2•anujbans•6m ago•1 comments

Show HN: AgentState – Open-source resilience and caching proxy for AI agents

https://github.com/aleenz1102/AgentState
1•aijazahm19•8m ago•0 comments

Invaders is back: rescued from a forgotten Bitbucket account

https://www.atomic14.com/2026/07/24/invaders-is-back
1•iamflimflam1•8m ago•0 comments

Codex Is Down

8•freakynit•11m ago•2 comments

Wisprkey – 100% free and local voice typing for Mac

https://www.wisprkey.com
1•RoniHenareh•13m ago•1 comments

FastHTML

https://fastht.ml/
1•tosh•13m ago•1 comments

Show HN: AI codebase analyser and auto-fixer

https://www.getdebug.dev/blog/python-ai-app-prefilters
1•nutifafa•14m ago•0 comments

Supergun affair

https://en.wikipedia.org/wiki/Supergun_affair
1•networked•15m ago•0 comments

Data-Parallel Thinking (2024) [pdf]

https://gfxcourses.stanford.edu/cs149/fall24content/media/dataparallel/08_dataparallel_uvO76Qr.pdf
1•tosh•17m ago•0 comments

Ask HN: Is neuromorphic computing going to replace traditional AI?

1•lennart-rth•17m ago•0 comments

EU grants US request to restrict satellite images of Iran War region

https://arstechnica.com/space/2026/07/european-union-grants-us-request-to-restrict-satellite-imag...
3•mdp2021•21m ago•0 comments

Ask HN: How to use agents via API cheaply?

1•thih9•24m ago•2 comments

TiRex-2: Generalizing TiRex to Multivariate Data and Streaming

https://arxiv.org/abs/2607.01204
1•tosh•25m ago•0 comments

I built a non-physical GPU that does 194,396 yottaflops on one CPU core

https://github.com/pluscoder30-cpu/Omega_Field_GPU_Ultimate
1•soul-vector•28m ago•0 comments

Hardest engineering challenge in post-quantum Bitcoin?

https://github.com/chipcoin-protocol/chipcoin
1•chipcoinchc•28m ago•0 comments

A Natural Experiment in Economics

https://marginalrevolution.com/marginalrevolution/2026/07/a-natural-experiment-in-economics.html
2•smitty1e•29m ago•0 comments

Show HN: Hwatu – verification browser for coding agents (WebKit, one binary)

https://github.com/hongnoul/hwatu
1•hongnoul_•34m ago•0 comments

Show HN: SimTelemetry – SIM Racing Telemetry and Analysis

https://simtelemetry.site
1•ryanxsim•36m ago•0 comments

Case Study: AI Trainer Platform and Job Board [Months 1-6]

https://www.indiehackers.com/post/case-study-ai-trainer-platform-and-job-board-months-1-6-fcb5f25d54
1•interceptor666•40m ago•0 comments

Show HN: Nostalgia – A shareable Windows 98 desktop builder

https://nostalgia-stilloo.zocomputer.io/
1•tsachin•40m ago•0 comments

Stop screeching about immigration, and get smart about it

https://www.noahpinion.blog/p/stop-screeching-about-immigration
1•squirrel•40m ago•0 comments

Show HN: AI Toolbox supports Claude Opus 5

https://www.ai-toolbox.co
1•superduper5551•40m ago•0 comments

Ask HN: Good Data Classification Software?

1•ChrisRun•44m ago•0 comments

New Tariffs Cover 99.4% of U.S. Imports. Your Plan Doesn't

https://medium.com/@alanscottencinas/new-tariffs-cover-99-4-of-u-s-imports-your-plan-doesnt-cb3a7...
2•encinas88•49m ago•0 comments

Code mode can help smaller LLM models

https://instavm.io/blog/how-code-mode-can-help-smaller-llm-models
1•mkagenius•52m ago•0 comments

Show HN: The TERSE state language and protocol

https://github.com/terse-lang/terse
1•infiniteAdmin•52m ago•1 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.