frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A record the vendor doesnt hold

https://github.com/githubscum/lotor
1•hnscum•28s ago•0 comments

Lilian Weng (co-founder) leaving Thinking Machines

https://twitter.com/lilianweng/status/2081816923088814421
2•dpc10•40s ago•0 comments

What Building My Own Container Runtime Taught Me About Software Architecture

https://kaleab-ayenew.github.io/writings/what-building-my-own-container-runtime-taught-me-about-s...
1•kalishayish•1m ago•0 comments

Opus 5: Richard III

https://analog-antiquarian.net/2026/07/24/opus-5-richard-iii/
1•ibobev•2m ago•0 comments

FreeBSD Developing New Ntsync Driver for Accelerating Windows NT Sync Primitives

https://www.phoronix.com/news/FreeBSD-Q2-2026
1•Bender•2m ago•0 comments

I Recommend Old Russian Mathematics Books

https://valeman.medium.com/why-i-recommend-old-russian-mathematics-books-b9d36405dcf1
1•ibobev•3m ago•0 comments

Vapnik and Chervonenkis: The Founding Fathers of Machine Learning

https://valeman.medium.com/vapnik-and-chervonenkis-the-founding-fathers-of-machine-learning-96f17...
1•ibobev•5m ago•0 comments

I've Spent a Month with Nvidia's RTX Spark in Microsoft's Surface Laptop Ultra

https://www.techpowerup.com/forums/threads/i%E2%80%99ve-spent-a-month-with-nvidia%E2%80%99s-rtx-s...
2•_____k•5m ago•0 comments

HBM Is the Ugly Baby: What Now? – By Vikram Sekar

https://www.viksnewsletter.com/p/hbm-is-the-ugly-baby-what-now
2•rbanffy•6m ago•0 comments

I got tired of writing the same FastAPI boilerplate, so I built a CLI

https://github.com/prathamdmehta/backend-dash
1•prathamdmehta•9m ago•0 comments

Now it's Nvidia's turn in the CDs funhouse

https://bsky.app/profile/carlquintanilla.bsky.social/post/3mrnpjnje4c2y
1•doener•10m ago•0 comments

Anthropic used robots.txt to hide shared Claude chats; the pages have no noindex

https://www.wired.com/story/private-claude-chats-exposed-in-google-and-bing-search-results/
2•logickkk1•10m ago•1 comments

Show HN: X Enhancement Suite (Chrome Extension)

https://github.com/tomchapin/x-enhancement-suite
1•remmargorp64•11m ago•0 comments

MappingTools

https://github.com/erivlis/mappingtools
1•erivlis•12m ago•1 comments

Live wildfire map that knows a refinery flare from a real fire

https://arguseyes.xyz/?layers=fire
2•spwizard•12m ago•0 comments

Show HN: Sealing traffic between Go services with hpke –no mTLS, no secrets

https://towardsdev.com/sealing-traffic-between-co-operating-go-services-with-crypto-hpke-a628cb89...
2•cheikhdev•13m ago•0 comments

AlgebraX

https://github.com/erivlis/algebrax
2•erivlis•13m ago•0 comments

Ordinary Abundance

https://ordinaryabundance.com/
2•salonium_•14m ago•0 comments

ASD-STE100 Simplified Technical English [pdf]

https://asd-web-be-prod.azurewebsites.net/media/wunhmi5y/asd-ste100-issue-9.pdf
2•gregsadetsky•15m ago•0 comments

60 Minute Creator – Node-based AI content workflows using your own API keys

https://60minutecreator.com/
1•dansambusiness•19m ago•0 comments

AMD Advancing AI 2026: Talking CDNA5 with AMD's Alan Smith

https://chipsandcheese.com/p/amd-advancing-ai-2026-talking-cdna5
2•rbanffy•20m ago•0 comments

Notes on the Fourier Transform

https://eli.thegreenplace.net/2026/notes-on-the-fourier-transform/
2•Jimmc414•21m ago•0 comments

Distributing LLM Inference in DwarfStar

https://antirez.com/news/167
1•Jimmc414•22m ago•0 comments

SVG Sketch Source

https://tomlarkworthy.github.io/lopebooks/notebooks/tomlarkworthy_svg-lens.html#view=S100(@tomlar...
1•tlarkworthy•23m ago•0 comments

How to work well with AIs – what they can do, what they can't

https://www.patreon.com/bcachefs/posts/how-to-work-well-165004968
1•vanburen•28m ago•0 comments

Emacs Writing Machine

https://chainsawriot.com/postmannheim/2026/07/25/writeredeck.html
2•lr0•28m ago•0 comments

Little-Known Dangers of Restricting Sodium Too Much

https://www.healthline.com/nutrition/6-dangers-of-sodium-restriction
1•sublinear•32m ago•0 comments

What a European Federation Would Fix [video]

https://www.youtube.com/watch?v=PU7W_eFBkoM
2•ktosobcy•33m ago•0 comments

Ihatedevops.com – because DevOps separates vibe coder from engineer

https://ihatedevops.com/
1•connorelkin•37m ago•1 comments

I built the budgeting app I always wanted

https://depobudget.com
3•skaplich•38m 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.