frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Six Bazel patches from an AI software factory, plus a remote-cache security bug

https://www.incredibuild.com/blog/bazel-contributions-security-fix-autonomous-sdlc
1•lol-lol-lol-2•14s ago•0 comments

Amazon Is Recruiting Laid Off Workers in Boomerang Hire Trend

https://www.inc.com/dan-schawbel/amazon-30000-laid-off-recruiting/91410673
1•frank_clover•2m ago•0 comments

Enhanced Spell Checking on the Web

https://bkardell.com/blog/EnhancedSpellchecking.html
1•based2•3m ago•0 comments

An Existential Guide To: Forgiving Your Parents

https://theshadowedarchive.substack.com/p/an-existential-guide-to-forgiving
1•jger15•4m ago•0 comments

Rumps – Uncomplicated macOS Python Statusbar Apps

https://github.com/jaredks/rumps
2•gregsadetsky•5m ago•0 comments

Japan moves to tighten rules for foreigners, throwing futures into doubt

https://www.aljazeera.com/economy/2026/9/25/japan-moves-to-tighten-rules-for-foreigners-throwing-...
4•mikhael•5m ago•0 comments

The state of SIMD in Rust in 2026

https://shnatsel.github.io/state-of-simd-rust-2026/
1•fanf2•7m ago•0 comments

Show HN: A local alternative to Jev – 94% on Banking77

https://gist.github.com/nicobrenner/056a5aaff5d0119c0032ecdad5029557
1•nico•7m ago•0 comments

1986: How to Spot the Upper Class – That's Life – BBC Archive [video]

https://www.youtube.com/watch?v=eK6w6MzMDhk
1•joebig•7m ago•0 comments

Modern LLMs have tiny GPTs hidden inside them

https://invertedpassion.substack.com/p/modern-llms-have-tiny-gpts-hidden
1•giuliomagnifico•11m ago•0 comments

Von, an Open-Source Jev Alternative

https://github.com/wfzyx/von
2•k__•11m ago•0 comments

Sealed Fedora Atomic Desktop bootable container images

https://fedoramagazine.org/sealed-atomic-desktops-test-images/
1•anon109•11m ago•0 comments

Show HN: Museum of Numbers

https://numbermuseum.com/2147483647
3•rhl314•12m ago•2 comments

Brave browser: [ads] Add "Sponsored ads enabled" toggle to settings on Desktop

https://github.com/brave/brave-browser/issues/58786
1•thunderbong•17m ago•0 comments

WLED – open-source ESP32 webserver to control NeoPixel LEDs

https://kno.wled.ge/
1•gregsadetsky•20m ago•0 comments

Reverse-engineering the Intel 8087's tangent algorithm: more than CORDIC

https://www.righto.com/2026/09/8087-tangent-cordic.html
2•pwg•22m ago•1 comments

Wrong, Not Broken

https://aws.amazon.com/blogs/aws-insights/wrong-not-broken/
1•gslin•23m ago•0 comments

Labelled 'pervert glasses': Will Meta's camera-free version change their image?

https://www.bbc.co.uk/news/articles/cwp80l0my1x2o
1•ColinWright•24m ago•0 comments

Docker launches cloud sandboxes: Start on your laptop, finish in the cloud

https://www.docker.com/blog/introducing-cloud-sandboxes-start-on-your-laptop-finish-in-the-cloud/
1•NarratorTD•25m ago•0 comments

What is the best shape of a city? Modelling effect of urban form on distance

https://journals.sagepub.com/doi/10.1177/23998083261458842
1•rustoo•26m ago•0 comments

The clans that run Spain's biggest companies

https://english.elpais.com/economy-and-business/2026-09-21/from-opus-dei-alumni-to-mckinsey-consu...
1•momentmaker•26m ago•0 comments

The Plunging Price of Thought

https://epoch.ai/publications/the-plunging-price-of-thought
1•momentmaker•27m ago•0 comments

Show HK: Find My Cat Name

https://findmycatname.com/
1•giraldomac•27m ago•0 comments

Washington Heights Man Cleans One NYC Block a Day for 100 Days,Neighbors Join In

https://hoodline.com/2026/09/washington-heights-man-cleans-one-nyc-block-a-day-for-100-days-neigh...
4•thunderbong•27m ago•0 comments

I Put My LG TV Under Network Surveillance [video]

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

Show HN: Proof-native smart contracts without a transaction archive

https://colosseum.com/arena/projects/parano1d
1•ignotusnemo•29m ago•0 comments

How to Unclench

https://howtounclench.com/
2•gpi•31m ago•0 comments

Is Jev calibrated? Tests on real data

https://leonardgrazian.com/blog/jev-calibration/
2•cannedbread•33m ago•0 comments

Show HN: Talk to Micro from Conversations: an assistant in your chat app

https://micro.mu/blog/post?id=1790435898213024579
1•asim•34m ago•0 comments

Writing Code Character by Character

https://medium.com/@erdemgezer/writing-code-character-by-character-3919e29d252c
2•erdemgezer•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.