frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Europe's last regular standard-gauge steam passenger service

https://parowozowniawolsztyn.pl/?page_id=2141
1•GungulSurm•32s ago•0 comments

Scientists create muscle that exercises itself

https://longevity.technology/news/scientists-create-muscle-that-exercises-itself/
1•vitalnodo•1m ago•0 comments

The Connections That Turned a Teen into the Fallen 'Nostradamus of AI'

https://www.wsj.com/tech/ai/situational-awareness-leopold-aschenbrenner-ai-fund-4dbb00a4
1•cdrnsf•2m ago•0 comments

Generating Interpretable Networks Using Hypernetworks

https://arxiv.org/abs/2312.03051
1•E-Reverance•4m ago•0 comments

MiniMax H3 Max sets the new Pareto Frontier for video generation

https://twitter.com/DesignArena/status/2092711778815983886
2•treesciencebot•7m ago•0 comments

I estimate reading code costs 2.1x more than writing it

3•dylanratcliffe•7m ago•0 comments

Ukraine Delta Software

https://www.nytimes.com/2026/08/26/world/europe/ukraine-delta-battlefield-management.html
3•pilooch•12m ago•0 comments

The Generative AI Learning Penalty: Evidence from Chinese Secondary Education

https://cepr.org/publications/dp21577
2•doener•14m ago•0 comments

Hundreds missing and many feared dead after flash flood hits Nepal-China border

https://www.cnn.com/2026/08/26/world/live-news/nepal-flash-flooding-floods-intl
2•voxleone•14m ago•0 comments

Positional Encodings and Group Theory – 3Blue1Brown and Alok Puranik [video]

https://www.youtube.com/watch?v=k86eUj4hgdc
1•quick_brown_fox•14m ago•0 comments

MAA Limits AIME (American Invitational Mathematics Exam) to 13 and Older

https://maa.org/maa-invitational-competitions/
1•unhappy_parent•15m ago•1 comments

Ask HN: What's your career plan for the next few years?

2•tarikozket•15m ago•0 comments

Wush is a command line tool that lets you easily transfer files and open shells

https://github.com/coder/wush
1•Bluestein•15m ago•0 comments

At least 15 companies are selling antibodies using faked validation data

https://reeserichardson.blog/2026/08/25/at-least-15-companies-are-selling-antibodies-using-faked-...
1•mhrmsn•15m ago•0 comments

Proton Global Outage

https://status.proton.me/incidents/kzklhrdg6hxp
4•cdrnsf•17m ago•0 comments

Open Sourced R-Lens

https://github.com/hiskuDN/open-r-lens
1•Hiskias•17m ago•0 comments

Americans see EU Tech [video]

https://www.youtube.com/watch?v=gGlpBuW6ZFc
1•ai_critic•17m ago•0 comments

A Thought on LLM Pair Programming

https://brennenputh.me/blog/llm-pair-programming-thought/
1•bagatelle•19m ago•1 comments

Gender Ideology Arms Left- Wing Authoritarian Psychology [pdf]

https://opa.hhs.gov/sites/default/files/2026-08/gender-ideology-report.pdf
1•typeofhuman•19m ago•3 comments

Proton Global Outage

https://status.proton.me
11•alexjplant•21m ago•7 comments

Show HN: Tumble: A dice-rolling puzzle game

https://playtumble.com/
1•spurrya•24m ago•1 comments

The story on why OpenAI agents hacked Hugging Face

https://www.technologyreview.com/2026/08/26/1143013/the-inside-story-on-why-openai-agents-hacked-...
2•sbulaev•25m ago•0 comments

TRISO (reasonably safe nuclear) fuel

https://en.wikipedia.org/wiki/TRISO_fuel
1•peter_d_sherman•26m ago•0 comments

An interactive introduction to the spanning tree protocol

https://vincent.bernat.ch/en/blog/2026-spanning-tree
1•birdculture•30m ago•0 comments

The Ship of Theseus and behavior drift

https://mamund.substack.com/p/the-ship-of-theseus-and-behavior
1•fagnerbrack•31m ago•0 comments

Brief independent investigation of OpenAI / Hugging Face hacking incident

https://metr.org/blog/2026-08-26-openai-hugging-face-incident-investigation/
3•Philpax•31m ago•1 comments

Show HN: Rook – A multi-Agent harness that lives 100% in a browser extension

https://chromewebstore.google.com/detail/rook/opojeelojlkcinlhkbahpcekdolfjmhi
1•miguelspizza•32m ago•0 comments

GitHub Publishes IPv6 Addresses for Git SSH remotes

https://api.github.com/meta
2•tonymet•35m ago•2 comments

A benchmark for safely measuring container breakout capabilities

https://www.aisi.gov.uk/blog/can-ai-agents-escape-their-sandboxes-a-benchmark-for-safely-measurin...
1•paulpauper•35m ago•1 comments

Florida Catholics slap down state AG by rejecting religious vaccine exemptions

https://arstechnica.com/health/2026/08/catholic-bishops-tell-florida-theres-no-religious-reason-f...
6•throw0101a•37m 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.