frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Robot Basketball

https://kevinkelly.substack.com/p/robot-basketball
1•surprisetalk•3m ago•1 comments

Fedora Discussion Raises the Idea of Replacing LibreOffice with Collabora Office

https://www.phoronix.com/news/Fedora-Discuss-Collabora-Office
1•cf100clunk•4m ago•1 comments

Proof a Human Sent an Email

https://github.com/Inkline-Verify/ProofOfHuman
2•georginaalcaraz•5m ago•0 comments

The Zig Journey

https://kristoff.it/blog/the-zig-journey/
3•kristoff_it•6m ago•1 comments

Entrepreneurship and Industry in Europe

https://eudata.vercel.app/
2•tosh•10m ago•0 comments

Artificial Symbiotic Intelligence

https://institute.deepmind.com/essays/artificial-symbiotic-intelligence/
2•kristianpaul•10m ago•1 comments

Natural-Fiber Clothing Is in Demand–But Scientists Say It Needs More Scrutiny

https://www.wsj.com/style/fashion/cotton-fiber-pfas-47042bd2
1•geneticdrifts•11m ago•0 comments

Japanese used bookstores see 5x sales surge as books are being bought by the ton

https://www.tomshardware.com/tech-industry/artificial-intelligence/japanese-used-bookstores-see-5...
1•speckx•12m ago•0 comments

Breaking Up with Google Play: Why Conversations Is Now Free

https://gultsch.de/posts/breaking-up-with-google-play/
4•inputmice•14m ago•0 comments

$5,999 Ryzen AI MAX+ 395 and Radeon R9700 workstation

https://videocardz.com/newz/lucebox-opens-direct-orders-for-5999-ryzen-ai-max-395-and-radeon-r970...
2•GreenGames•14m ago•0 comments

Map of where crypto and privacy services are sanctioned or blocked

https://dontkyc.me/sanktionsradar
1•paco4747•15m ago•0 comments

Analyst Calls for AMD Investigation over Restricted Chips in China

https://www.tomshardware.com/tech-industry/leading-semiconductor-analyst-accuses-amd-of-treason-o...
2•rndsignals•16m ago•0 comments

Eutetic: Codex for Data Scientist and Data Engineers

https://eutetic.com
1•FrancescoMassa•19m ago•1 comments

The worlds top cities for 2026 – and why they stand out

https://www.bbc.com/travel/article/20260923-the-worlds-top-cities-for-2026-and-why-they-stand-out
1•bookofjoe•20m ago•1 comments

Show HN: Hermes, Kokoro and Parakeet, behind a face you can talk to

https://memoe.app/
1•yisraelgottz•20m ago•0 comments

Show HN: Resume Claude Code subagents killed by a usage limit, don't redo them

https://github.com/error0702/agent-limit-retry
2•autorunfun•21m ago•0 comments

ask HN:Are we locking ourselves in the Google ecosystem?

2•KinetiNode•22m ago•6 comments

The most-cited vector DB benchmark is not publishing results from competitors

https://medium.com/@glitcher00/the-most-cited-vector-database-benchmark-is-not-publishing-results...
1•austin2020•23m ago•0 comments

Show HN: ContextDebt – finds code whose stated reason to exist has expired

https://github.com/ContextDebt/contextdebt
1•wittachai•24m ago•0 comments

Submersion AI Debuts Basin

https://submersion.ai/news/basin-cybergym-ranking/
1•Bluestein•24m ago•0 comments

AI Safety Is Mostly a Sex Cult in Berkeley

https://www.verysane.ai/p/ai-safety-is-mostly-a-sex-cult-in
9•martythemaniak•25m ago•0 comments

When to Use an LLM

https://extralongdivision.com/articles/when-to-use-an-llm/
1•extralongdivisi•26m ago•0 comments

Humans Are Reading Your ChatGPT Chats, Lawsuit Claims

https://openclassactions.com/lawsuits/privacy/openai-chatgpt-human-review-project-lily-class-acti...
3•nreece•27m ago•0 comments

Show HN: PreFlight – Local citation verifier and claim auditor for LaTeX

https://preflightai.tech/workbench
1•stackfrost•27m ago•0 comments

Show HN: PlaceCall (YC W26) – agentic API to call businesses and get things done

6•ymarkov•27m ago•0 comments

The Antennagate Q&A, which has never been available, has been posted today [video]

https://www.youtube.com/watch?v=BiN5ERktXz0
2•philistine•28m ago•0 comments

The Scene (2004–2006): Episode synopses of a warez drama told through IRC

https://github.com/skybohannon/thescene
1•crawforc3•28m ago•0 comments

Dynamic Abliteration: Non-Destructive Refusal Suppression via Engram Steering

https://blog.madhukaraphatak.in/non-destructive-refusal-supression-using-engram
11•phatak-dev•29m ago•0 comments

Unknown number of Texas voter registrations went unprocessed due to DPS error

https://www.votebeat.org/texas/2026/09/22/voter-registration-applications-unprocessed-dps-error/
3•hn_acker•31m ago•1 comments

"Not Conio but Compatible" Adapter for Atari ST Vbcc

https://retrogamecoders.com/atari-st-vbcc-c-not-conio/
1•ibobev•32m 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.