frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Pirate Face Rescues LLM Models from Deletion

https://pirateface.co/
1•skepticalgenius•35s ago•0 comments

Ask HN: What is one plausible path to 'AI extinction'?

1•GodelNumbering•36s ago•0 comments

Karen Nikoghosyan Is Building AI Operating Layers for Multichannel Commerce

1•darius88•1m ago•0 comments

There's a high chance of devices being sold with GrapheneOS preinstalled in 2027

https://grapheneos.social/@GrapheneOS/117299954135808210
1•Cider9986•1m ago•0 comments

Show HN: Chesslm – Tiny chess model trained on Stockfish

https://github.com/skorotkiewicz/chesslm
1•modinfo•2m ago•0 comments

First AI bot appears on Starcraft Ladder, wins against progamer

https://tl.net/forum/brood-war/646339-bot-on-ladder
1•maloga•3m ago•0 comments

Show HN: Quick commerce coverage map of India

https://darkstoremap.in/
1•ghoshbishakh•6m ago•0 comments

Sherline Tools Is Going Out of Business

https://toolguyd.com/sherline-tools-shutting-down-usa-production/
2•tliltocatl•7m ago•0 comments

Psiphon

https://forge.psiphon.ca/en/what-is-psiphon
1•Bluestein•7m ago•0 comments

If You Knew God Exists, Wouldn't You Become a Priest?

https://joecmarshall.com/posts/if-you-knew-god-exists-wouldnt-you-become-a-priest/
2•webappsecperson•10m ago•1 comments

Show HN: Wattai.dev – Free Decision Intelligence

https://wattai.dev/
2•namanvyas•10m ago•0 comments

Real attackers don't think in bug bounty scopes

https://rushter.com/blog/security-bb-and-scopes/
1•f311a•12m ago•0 comments

Show HN: I got Claude Code and Codex to argue about my code

https://github.com/chen-985211/cleancode
1•Tide-N•12m ago•0 comments

RubyLLM: What's New in 2.0

https://rubyllm.com/whats-new-in-2-0/
1•ksec•12m ago•0 comments

Over 10 years later, Gabe Newell's advice to devs still holds up

https://www.pcgamer.com/gaming-industry/game-development/over-10-years-later-gabe-newells-advice-...
1•Brajeshwar•15m ago•0 comments

Google knows you – does AI?

https://www.scanora.ai
1•davinciyaner•15m ago•0 comments

Show HN: A competition for small neural networks that play strategy games

https://tinybrains.dev
1•codetiger•17m ago•1 comments

Bible Fascinator

https://designs.drawingwithdata.com/fascinator
1•trekhleb•17m ago•0 comments

I Designed a Microprocessor

https://www.youtube.com/watch?v=q6ytRHaTEXI
1•i2pi•17m ago•1 comments

Show HN: Jev Slop Filter for X and LinkedIn

https://github.com/adamnroman/slop-filter
1•adamisnotroman•19m ago•0 comments

RetinaFace: Open-source precise AI face detection and analysis

https://retinaface.com/
1•teleforce•19m ago•0 comments

Decoding Jev

https://navinpai.github.io/decoding-jev/
1•madmax108•20m ago•0 comments

The Tech Bro in the Treaty Room

https://www.politico.com/news/magazine/2026/09/18/jacob-helberg-state-china-ai-profile-01082572?c...
1•ksec•21m ago•0 comments

Company Dynasties Die in the Dark

https://investing101.substack.com/p/dynasties-die-in-the-dark
1•rwmj•21m ago•0 comments

Show HN: Preuve AI, stress-test your startup idea before you build

https://preuve.ai
1•vincentbuilds•24m ago•0 comments

The Story of Fckgw-RHQQ2-Yxrkt-8TG6W-2B7Q8

https://twitter.com/davepl1968/status/2099883465256865923
1•ksec•24m ago•0 comments

A proxy that scans LLM requests/attach for secrets before they reach the model

https://github.com/ghuntley/preflight
1•ghuntley•28m ago•0 comments

I build a Outbound API Gateway for managing third-party dependencies

https://github.com/asstgr/asstgropensource
1•asstgr•29m ago•0 comments

The Journey of a Migratory Shorebird

https://www.newyorker.com/magazine/2026/09/21/the-incredible-journey-of-a-migratory-shorebird
1•wallflower•32m ago•0 comments

Costco rations motor oil as prices quadruple and supplies run dry

https://www.ft.com/content/64f90ab8-5fb0-4594-a900-d03e5ca051e3
4•bookofjoe•34m 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.