frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

India Eradicated Polio

https://altermag.com/articles/how-india-eradicated-polio
1•trojanalert•1m ago•0 comments

Neural Canvas: a fruit fly connectome demo in the browser

https://huggingface.co/spaces/Xenova/fruit-fly-simulation
1•codelion•2m ago•0 comments

The binary I ship is the binary I want to test

https://blog.maxgio.me/posts/the-binary-i-ship-is-the-binary-i-want-to-test/
1•maxgio92•3m ago•1 comments

England's teens outperform peers in most countries in maths, reading and science

https://www.theguardian.com/education/2026/sep/08/england-teenagers-outperform-peers-in-most-coun...
1•defrost•6m ago•0 comments

Logitech launches MX Keypad for developers

https://news.logitech.com/press-releases/news-details/2026/Logitech-Unveils-MX-Keypad-for-Develop...
1•fourfire•7m ago•0 comments

Is the UK government the new training ground for AI execs?

https://www.theguardian.com/technology/2026/sep/07/architect-uk-ai-policy-quits-anthropic-conflic...
1•nixlaz•8m ago•0 comments

CERN LHCb upgrade under threat after UK pulls funds

https://www.researchprofessionalnews.com/rr-news-europe-infrastructure-2026-8-lhcb-upgrade-still-...
1•g6pdh•10m ago•0 comments

Atoonk/packetio: high-performance packet I/O library for Go

https://github.com/atoonk/packetio
1•pjf•10m ago•0 comments

Please consider running a NTP server in the NTP Pool

https://dreamstation.systems/personal/ntppool.html
4•robinpie•11m ago•0 comments

Show HN: EdgePad – tool for configuring edge touchpad gestures on Linux laptops

https://github.com/assembledev/edgepad
2•dev-e•11m ago•0 comments

Isthmus: History as an Answer Key in Cross-Field Retrieval [pdf]

https://darksigma.com/cross-field-retrieval-benchmark-isthmus.pdf
1•LumiTharMan•12m ago•0 comments

The firms turning recruitment into X Factor-style competitions

https://www.bbc.co.uk/news/articles/cgk43mn42g7o
2•baloki•13m ago•0 comments

Two children died from gene therapies in China: where the field goes next

https://www.nature.com/articles/d41586-026-02497-2
3•sbulaev•19m ago•1 comments

Python Turtle Graphics

https://docs.python.org/3/library/turtle.html
2•gebt•19m ago•0 comments

DeepSeek v4.1 Flash is now available for internal beta testing

2•dares2573•21m ago•0 comments

Machine learning of artistic fingerprints in jazz

https://www.nature.com/articles/s42256-026-01279-9
1•tobr•23m ago•0 comments

"Hammock Driven Development" (2010)

https://www.youtube.com/watch?v=f84n5oFoZBc
1•birdculture•28m ago•0 comments

A Unified Benchmark for Egocentric Human-to-Robot Dexterous Hand Image Editing

https://github.com/HandEdit/HandEdit
1•kaonashi-tyc-01•30m ago•0 comments

Refine Cycle: self-improvement plugin for Hermes Agent

https://github.com/Bergschloss/Refine-Cycle-for-Hermes-Agent
1•1134taras•31m ago•0 comments

Show HN: Use Strava's official MCP with other chatbots

https://github.com/leecjohnny/strava-mcp-gateway
1•leecmjohnny•32m ago•0 comments

I talked to deep buddy about AI solving Navier Stokes rumors

https://www.echohive.ai/deep-talk-buddy/navier-stokes
1•echohive42•35m ago•0 comments

How AI based programming could work (2016)

https://bjenik.com/AIBasedProgramming/
1•andsoitis•39m ago•1 comments

A Zero-Dark-Matter Mechanical Model of Cosmology

https://github.com/IoannisKousoulakos/THE-KOUSOULAKOS-MODEL-OF-COSMOLOGY-WIP/tree/main
1•ppkuio•42m ago•0 comments

US attacks UK plans to boost traditional media on social platforms

https://www.theguardian.com/us-news/2026/sep/07/trump-administration-attacks-uk-social-media-plans
5•beardyw•45m ago•2 comments

Why Taiwan's Silicon Shield Is Failing

https://nationalinterest.org/blog/techland/why-taiwans-silicon-shield-is-failing
2•baud147258•47m ago•1 comments

Show HN: Hybrid Nav2 and PPO RL for indoor Lidar-only robot navigation

https://github.com/Sourav29-2/ppo-lidar-navigation-
1•Ros_Sourav•51m ago•0 comments

Stable Singularity of the Euler Equations on R^3 without forcing – Anima on AI

https://anima-ai.org/2026/09/07/stable-singularity-of-the-euler-equations-on-r3-without-forcing/
1•bjenik•51m ago•0 comments

Show HN: Doc-scraper, offline searchable docs corpora for coding agents (Go)

https://github.com/Sriram-PR/doc-scraper
3•devlithic•52m ago•0 comments

Bodhan.ai releases 1.2B ASR model that covers 22 Indian Languages

https://bodhan.ai/research/blogs/indic-transcribe
2•pythongiant•53m ago•0 comments

Nuxt co-creator Alexandre Chopin joins Encore

https://encore.dev/blog/alexandre-chopin-joins-encore
4•dohguy•53m 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.