frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

An Advanced System Architecture Breakdown of OpenAI's Jalapeno Accelerator

https://www.siliconcodesign.com/p/an-advanced-system-architecture-breakdown
1•porridgeraisin•16s ago•0 comments

AI for Life

https://apps.apple.com/us/app/expert-chase-ai-for-life/id6766313000
1•E-Y-E•3m ago•1 comments

Show HN: What If Donut.c but with Any ASCII Art

https://asdesai.com/blog/how-fetch-works/
2•areofyl•5m ago•0 comments

"Reckless Bricks" Lego Store [video]

https://www.youtube.com/watch?v=KALYYH1pWCM
1•fortran77•8m ago•0 comments

P(doom)

https://lucumr.pocoo.org/2026/9/12/pdoom/
1•lumpa•9m ago•0 comments

U.S. Links Chinese Satellite Imagery to Iranian Strike That Killed Troops

https://www.wsj.com/world/u-s-links-chinese-satellite-imagery-to-iranian-strike-that-killed-three...
1•cwwc•10m ago•0 comments

L4S

https://en.wikipedia.org/wiki/L4S
1•fauria•14m ago•0 comments

The AI Music Race Is Over

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

Pacing Is a Setting on a Dial

https://extinction-bounties.com/writing/pacing-is-a-setting-on-a-dial/
1•hiAndrewQuinn•16m ago•0 comments

Financial Times' 404 Page not Found

https://www.ft.com/article/404
3•sans_souse•16m ago•4 comments

Show HN: Sill – a macOS system monitor that lives on your wallpaper

https://ptthe13.github.io/sill/
1•MrPFT•18m ago•0 comments

'Coltrane' Review: Sound and Spirit

https://www.wsj.com/arts-culture/books/coltrane-review-sound-and-spirit-b2417282
1•Thevet•21m ago•0 comments

The technology people call science fiction is here

https://github.com/KnowledgeeKZA3224/scqos-reference-implementation/blob/main/docs/THE_TECHNOLOGY...
1•Knowledgee_KZA•24m ago•0 comments

Datasets for Large Language Models: A Comprehensive Survey

https://arxiv.org/abs/2402.18041
1•Anon84•25m ago•0 comments

Revolut gave away customers' data

https://www.internationalcyberdigest.com/revolut-gave-away-customers-data/
1•taubek•26m ago•0 comments

Fx can now use a frontier model, then delegate to cheaper models to implement

https://twitter.com/fazxes/status/2098800924776903047
1•wslh•27m ago•0 comments

Vibe Coding Is the New Bootstrap

https://sampleminer.com/blog/vibe-coding-is-the-new-bootstrap/
1•xdotcommer•28m ago•1 comments

Adios Create – Landing page builder

https://www.adios.dev/create
1•clovis818•29m ago•0 comments

The U.N. Backs a New World Map Showing Africa in Its True Relative Size

https://www.npr.org/2026/09/04/nx-s1-5958611/africa-world-map-un-vote
2•karakoram•31m ago•0 comments

Csvcomp – Zero-dependency Python CSV diff utility

https://github.com/prasad-a-abhishek/csvcomp
1•prasadaabhishek•33m ago•0 comments

Namecheap Hosting Is Down

2•wolfgangbabad•35m ago•0 comments

WebSocket is a legacy API (2016)

https://github.com/whatwg/html/issues/2177
1•htunnicliff•36m ago•1 comments

NextJS but in Rust

https://nextrs.hirschi.dev/docs/getting-started
1•ashirsc•37m ago•0 comments

Claude of Tanks

https://github.com/Kevin-Liu-01/Claude-of-Tanks
1•tiredpanda•40m ago•0 comments

Comment: Feeling Sad about AI

https://simonwillison.net/2026/Sep/11/feeling-sad-about-ai/
1•abdelhousni•42m ago•0 comments

Spanish Island Wants to Ditch Drunk British Tourists for Rich American Ones

https://www.wsj.com/world/europe/this-spanish-island-wants-to-ditch-drunk-british-tourists-for-ri...
2•RestlessMind•42m ago•0 comments

Diablo V

https://diablo5.blizzard.com/en-us
1•meerita•43m ago•0 comments

EU CYBER RESILIENCE ACT forces manufacturers to disclose exploited vulnerabilit

https://digital-strategy.ec.europa.eu/en/policies/cra-reporting
4•drungli•46m ago•0 comments

Nvidia in talks to invest in Anthropic's mega IPO

https://www.reuters.com/legal/transactional/nvidia-talks-invest-anthropics-mega-ipo-sources-say-2...
2•cwwc•46m ago•0 comments

Teaching Novice Computing and Programming in the Agentic AI Era [pdf]

https://cs.brown.edu/people/sk/Publications/Papers/Published/fkl-teach-nov-agentic-ai-era/paper.pdf
2•azhenley•48m 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.