frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

SynapticChain: Single-wallet concurrency record (5,307 TPS from 1 key in Rust)

https://explorer.synapticchain.xyz
1•abdulshabazz•3m ago•0 comments

I built a financial visibility layer for multi-model AI applications

https://credlier.com/
1•dcriglerd•4m ago•0 comments

Show HN: Kith – AI clinical notes for therapists from ambient session audio

https://www.kith.space
1•kithmedai•8m ago•0 comments

Is this the DeepSeek moment for Local Models?

https://vijaykodam.substack.com/p/is-this-the-deepseek-moment-for-local
1•vijaykodam•12m ago•0 comments

What GLM-5.3 Flash running on Chinese hardware means

https://martinalderson.com/posts/glm-5-3-flash-chinese-hardware/
1•ymolodtsov•13m ago•0 comments

Lean Explained with TypeScript

https://gruhn.me/blog/2026-08-29/
1•ngruhn•13m ago•0 comments

Changes in MySQL 26.7.0

https://dev.mysql.com/doc/relnotes/mysql/26.7/en/news-26-7-0.html
1•ksec•16m ago•0 comments

Pennpaper – visual, step-by-step explanations for math

https://www.pennpaper.app/
1•brnmwas•17m ago•0 comments

Show HN: Bora Praia – weather and tide forecasts turned into a time to leave

https://borapraia.com/
1•63labs•18m ago•0 comments

Grassmann's Law (Linguistics)

https://en.wikipedia.org/wiki/Grassmann%27s_law
1•ogogmad•18m ago•0 comments

ICANN de-accredits "bulletproof" domain registrar Trustname

https://domainnamewire.com/2026/08/28/icann-de-accredits-bulletproof-domain-registrar/
2•KomoD•21m ago•0 comments

Show HN: A free AI news briefing agent that runs on GitHub Actions, no server

https://github.com/tballochi/daily-briefing
1•tballochi•21m ago•1 comments

Terence Tao, 6 essential concepts of math [video]

https://www.youtube.com/watch?v=OOMx2BHHWtE
1•pykello•24m ago•0 comments

Vibecoders and Vibehackers

https://orchidfiles.com/vibecoders-and-vibehackers/
1•theorchid•26m ago•0 comments

X and Meta's past data scraping lawsuit losses and how it would relate to nitter

https://www.reuters.com/legal/musks-x-corp-loses-lawsuit-against-israeli-data-scraping-company-20...
1•orange999•29m ago•1 comments

Technical Writing Resources

https://github.com/dharmelolar/technical-writing-resources
1•taubek•29m ago•0 comments

Show HN: Itsuki – open-source memory engine for AI agents (API and MCP)

https://itsuki.app/
2•12ziyad•33m ago•1 comments

SQL User Lifecycle Management in CockroachDB

https://www.cockroachlabs.com/blog/sql-user-lifecycle-management-automation/
1•s20n•34m ago•0 comments

2,147,483,647 in nanos. Post Q-Day Cryptographic Security

https://twitter.com/CTibedo/status/2088679500020174883
1•GeometryKernel•35m ago•0 comments

Alpha School's AI teaching model is expanding. Does it work?

https://www.scientificamerican.com/article/alpha-schools-ai-teaching-model-is-expanding-does-it-w...
1•beardyw•35m ago•1 comments

Benchmarking Qwen3.8 27B quantizations: 4-bit holds up, 1-bit collapses

https://quesma.com/blog/qwen38-27b-quantizations-benchmarked/
1•stared•37m ago•0 comments

SK Hynix to begin HBM4E production in Indiana in 2029, memory shortage to 2030

https://www.reuters.com/world/asia-pacific/sk-hynix-holds-groundbreaking-ceremony-4-billion-india...
1•giuliomagnifico•39m ago•0 comments

Debian and the Sirens

https://joeyh.name/blog/entry/Debian_and_the_sirens/
3•klez•43m ago•0 comments

Autistici/inventati: Manifesto – who we are and what do we want (2002)

https://www.inventati.org/who/manifesto
15•wise_blood•45m ago•5 comments

Show HN: Airtight – single-file portfolio tracker, zero servers, works offline

https://airtight.sell.app
1•AirTight•45m ago•0 comments

Show HN: Doodle AI: open-source photo-to-doodle avatar generator

https://doodleai.art/
1•Yash16•46m ago•1 comments

To Human Is to Explore

https://panchamkhaitan.com/blog/to-human-is-to-explore
1•panchamkhaitan•47m ago•0 comments

Agent Security Is a Systems Problem: What 247 Papers Say About Secure AI Agents

https://www.truefoundry.com/blog/llm-agent-security-runtime-control-planes
1•LogTrim•47m ago•0 comments

The best workflow engine is a programming language

https://vercel.com/blog/the-best-workflow-engine-is-a-programming-language
1•theanonymousone•53m ago•0 comments

Sharp rise in incidents of AI escaping users' control, research finds

https://www.theguardian.com/technology/2026/aug/29/sharp-rise-in-incidents-of-ai-escaping-users-c...
1•geoffbp•56m 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.