frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bill to Ban Private Equity from Owning Medical Practices

https://truthout.org/articles/warren-introduces-bill-to-ban-private-equity-from-owning-medical-pr...
1•paimapi•1m ago•0 comments

RayMate – free macOS AI launcher, Spotlight-like, with on-device dictation

https://raymate.app/
1•Knowledgeparrot•2m ago•0 comments

Line Scan Photos from MUNI Heritage Weekend in San Francisco

https://daniel.lawrence.lu/blog/2026-09-20-muni-heritage-weekend/
1•plun9•2m ago•0 comments

How to Find Internal Link Opportunities with Jev

https://screpy.com/blog/typesafe-jev-internal-linking-opportunities/
1•criexe•3m ago•0 comments

ProofWatch – Rumors and sources behind math and CS breakthrough claims

https://proof-watch.com/
1•imfinn•4m ago•1 comments

Motif – ongoing research via text message

https://app.motifresearch.ai/join/kunal-hn
1•kunal3•8m ago•0 comments

ComfyUI workflow that writes and performs a whole radio drama locally

https://github.com/jbrick2070/ComfyUI-OldTimeRadio
1•fluxuss•10m ago•1 comments

Ask HN: Do we still need code editors, or are Git clients enough?

1•TheSaifurRahman•11m ago•1 comments

BeOS-R5-Icons

https://github.com/jcherven/BeOS-r5-Icons
1•gjvc•14m ago•0 comments

Scanning Light Field Display [3D rotating display] [video]

https://www.youtube.com/watch?v=npmmEEqhVgU
1•mdp2021•15m ago•0 comments

The Dutch gangster that bought an African country

https://www.economist.com/interactive/1843/2026/09/18/cocaine-trafficking-sierra-leone
1•diego_moita•17m ago•1 comments

MultiTOOL Pro AI Kit Utilities

https://play.google.com/store/apps/details?id=multitool.pro2&hl=en_US
1•Newsyower•20m ago•0 comments

Show HN: Native Mac menu bar app for the Anker Prime 160W (local BLE)

https://github.com/djui/ankered
1•kreisquadratur•24m ago•0 comments

Nipple tattooist 'frustrated' by online censorship

https://www.bbc.com/news/articles/cx2z7ejn891o
9•harry_nutsachs•24m ago•3 comments

Periodic Table of North American Electrical Outlets

https://i.imgur.com/kl6BuTM.jpeg
2•CSMastermind•26m ago•0 comments

Mini-Microsoft Wins at Last

https://molochinations.substack.com/p/mini-microsoft-wins-at-last
1•domhudson•27m ago•0 comments

Warren Buffett is stepping down as chairman of Berkshire Hathaway

https://www.businessinsider.com/warren-buffett-stepping-down-chairman-berkshire-hathaway-2026-9
1•andsoitis•27m ago•1 comments

Prompt Wars – An AI riff on Core Wars to prompt-inject each other

https://promptwars.party
2•ranok•31m ago•1 comments

It's Easy to Dismiss Jev as Just a Classifier

https://sebastianraschka.com/blog/2026/jev-classification-generalization.html
2•paimapi•31m ago•0 comments

Boring Company is working on a Hyperloop tunnel between Austin and San Antonio

https://twitter.com/elonmusk/status/2101732496396439751
2•MrBuddyCasino•33m ago•3 comments

Show HN: Ran Qwen 3.8 27B autonomously(ish) for 3 weeks on single 3090

https://huggingface.co/datasets/skeole/qwen-cpp-agent-0-protocol
1•iamskeole•37m ago•0 comments

Jev is now available to everyone. No waitlist.

https://twitter.com/typesafeai/status/2101786156572823624
3•mfiguiere•37m ago•0 comments

Omarchy Quattro [video]

https://www.youtube.com/watch?v=F7fe9pa8OeE
1•simonebrunozzi•37m ago•0 comments

Palemoon v35.0.0 has been released

http://www.palemoon.org/releasenotes.shtml
2•thisislife2•43m ago•0 comments

Is this website more boring than it used to be, or am I just used to it?

1•rizsyed1•45m ago•2 comments

Ask HN: How have NLP researchers adapted since LLM disrupted their field

1•newtothebay•48m ago•1 comments

Whirlpool Washer Transmission Repair (2007)

https://k0lee.com/2007/01/whirlpool-washer-transmission-repair/
1•userbinator•51m ago•0 comments

Ask HN: In your workplace are non-devs making vibecoded apps?

1•mustafak99•51m ago•0 comments

Show HN: AgentTrace–Observability and runtime self-healing engine for AI agents

https://github.com/mohitkumar188/AgentTrace
2•mohitkumar18•51m ago•0 comments

Locked Out of China's AI Boom, Graduates Turn to Bootcamps

https://www.sixthtone.com/news/1018649
1•paimapi•52m 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.