frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: AI watched my screen for a year. Weather beat sleep

https://donethat.ai/blog/dogfooding-donethat
1•christoph123•30s ago•0 comments

It Is the Nature of Desire Not to Be Satisfied

https://kammartinez.wordpress.com/2012/03/03/it-is-the-nature-of-desire-not-to-be-satisfied-a-rev...
1•jruohonen•1m ago•0 comments

Anthropic support does not exist

https://mg0x7be.github.io/anthropic-support-does-not-exist.html
1•VimEscapeArtist•1m ago•0 comments

Moniker.com shuts down startup without warning

1•alexanderlabrie•3m ago•0 comments

Gemma-4-31B at 256K context on a $1,400 AMD GPU – measured, with patches

https://github.com/KaiFelixBennett/gemma4-turboquant-rdna4
1•alsaha•3m ago•0 comments

Postgres by Example

https://github.com/boringcollege/postgres-by-example
3•thenewedrock•3m ago•0 comments

Would Claude Fable's shadownerfing making an anticompetitive class action case

1•hashmap•3m ago•0 comments

Conway's Game of Life as an artillery game [video]

https://www.youtube.com/watch?v=2olkLmmO8TU
1•lafferty•3m ago•0 comments

Anatomy of a high-performance EP kernel

https://fergusfinn.com/blog/anatomy-of-a-high-performance-ep-kernel/
1•kkm•4m ago•0 comments

Pentagon Official Admits Boat Strike May Have Killed Human Trafficking Victims

https://theintercept.com/2026/06/10/trump-boat-strikes-human-trafficking-victims/
1•ceejayoz•5m ago•0 comments

City Chicken vs. City Chicken: Berlin's Bloody Rotisserie Feud

https://www.heistberlin.com/news/nhas-city-chicken-sonnenallee-feud-prison-ramtin-torture/
1•randycupertino•7m ago•0 comments

Avalanche's desktop fusion reactor delivers blistering-hot plasma

https://techcrunch.com/2026/06/10/avalanches-desktop-fusion-reactor-delivers-blistering-hot-plasma/
1•Brajeshwar•7m ago•0 comments

An Interview with Jen Schreiber (2025)

https://ciamweekly.substack.com/p/an-interview-with-jen-schreiber
1•mooreds•8m ago•0 comments

Show HN: strangeClaw – a self-hosted agent running inside a Firecracker microVM

https://github.com/itsthestranger/strangeClaw
1•pstrange•9m ago•0 comments

Tell HN: Stack Overflow seems down

2•tom1337•9m ago•1 comments

My Journey in Open-Source Library Development

https://olegdubovoi.com/publications/my-journey-in-open-source-library-development/
1•empiree•9m ago•0 comments

Summary of recent buggy Kindle updates since Nov 2025: dictionary, fonts, manga

1•seam_carver•11m ago•0 comments

Reusing code can be a sunk cost fallacy in the LLM era

https://www.nvegater.com/blog/build-specific
1•nvegater•11m ago•0 comments

The Last Evolution, by John W Campbell Jr. (1932)

https://www.gutenberg.org/files/27462/27462-h/27462-h.htm
3•cf100clunk•11m ago•0 comments

Show HN: Building a Resume ontology and tooling for LLMs CV management

https://github.com/kelu124/Resume_RDF_update/tree/main
1•kelu124•12m ago•0 comments

Show HN: Rscrypto 0.4 treats constant-time as a release gate

https://github.com/loadingalias/rscrypto/releases/tag/v0.4.0
1•LoadingALIAS•12m ago•0 comments

Fable will NOT help if it thinks your ML research/ML engineering is interesting

https://twitter.com/SemiAnalysis_/status/2064482714149896431
1•malshe•13m ago•1 comments

Beyond Platforms and Protocols

https://upstream.force11.org/beyond-platforms-and-protocols/
1•jruohonen•13m ago•0 comments

Execution Feedback Matters More Than Pipeline Topology in 1-3B Code Generation

https://arxiv.org/abs/2604.21950
1•PaulHoule•13m ago•0 comments

Elon Musk accused of fuelling unrest after Belfast knife attack

https://dpa-international.com/politics/urn:newsml:dpa.com:20090101:260610-930-200483/
3•cdrnsf•14m ago•0 comments

Show HN: Chip's Challenge (1992), rebuilt for the web

https://claudes-challenge.vercel.app
1•kenblum•15m ago•0 comments

The .at domain registry is threatening to send debt collectors (2013)

https://old.reddit.com/r/sysadmin/comments/1bnjus/the_austrian_at_domain_registry_is_threatening_to/
1•lambertsimnel•16m ago•0 comments

.NET 11 Preview 5 is now available

https://devblogs.microsoft.com/dotnet/dotnet-11-preview-5/
1•philonoist•17m ago•0 comments

The Design of Display Processors (1968) [pdf]

http://cva.stanford.edu/classes/cs99s/papers/myer-sutherland-design-of-display-processors.pdf
1•rbanffy•18m ago•0 comments

Ask HN: The next evolutionary step in LLM usage?

2•tomaytotomato•20m 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.