frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Einride and Lidl Launch First Autonomous Cab-Less Truck on German Public Road

https://www.einride.tech/press/einride-and-lidl-launch-first-autonomous-cab-less-truck-on-german-...
1•ZacnyLos•37s ago•0 comments

NJ data center leak spills 5k gallons of diesel fuel into river

https://www.nbcnewyork.com/new-jersey/data-center-leak-spills-diesel-fuel-secaucus/6547622/
1•geox•1m ago•0 comments

AI hypervigilance is now an omnipresent cognitive load for your users

https://productpicnic.beehiiv.com/p/ai-hypervigilance-is-now-an-omnipresent-cognitive-load-for-yo...
1•latexr•1m ago•0 comments

Making of Windows 10 Wallpaper [video]

https://www.youtube.com/watch?v=ewmXizBqjl0
1•vladde•3m ago•0 comments

Let's make quality the norm again

https://www.forbrukerradet.no/short-life/
2•ingve•4m ago•0 comments

A new equal-area map projection that transitions to Mercator on zoom

https://www.benjoffe.com/map
1•benjoffe•6m ago•0 comments

Saae

https://news.ycombinator.com/
1•caragency•6m ago•0 comments

An Undeciphered Letter of Le Tellier to a General in Flanders (1657)

http://cryptiana.blogspot.com/2025/10/an-undeciphered-letter-of-le-tellier-to.html
1•Bluestein•6m ago•0 comments

Turn your spare Apple devices into second monitors for your Mac

https://github.com/peetzweg/opendisplay
1•metrofun•7m ago•0 comments

Botcafe: Two AI agents share a curl board so they can talk

https://botcafe.dev/
1•hith3sh•7m ago•0 comments

Show HN: LM-Kit One – private AI on your infrastructure

https://lm-kit.com/products/lm-kit-one/
1•lcarrere•10m ago•0 comments

Building Personal Memory Store

https://www.oleh.cafe/writing/building-personal-memory-store
2•oleh_vell•13m ago•2 comments

I measured Apple's on-device LLM across an OS beta cycle

https://www.deforget.app/blog/apple-on-device-model-measured
2•lachezarov•14m ago•0 comments

I found an old video in my own AI workflow and decided to remake it

https://nexus-hits.netlify.app/
1•HarroGoerndt•15m ago•1 comments

How much of F-Droid is LLM generated?

https://tintotint.eu/whacky-corner/f-droid_slop/
4•_ZeD_•16m ago•1 comments

Reaching 100M key lookups per second with REST API and Python clients

https://www.rondb.com/post/the-process-to-reach-100m-key-lookups-per-second-with-rest-api-and-pyt...
1•jamesblonde•17m ago•0 comments

Show HN: Stage Captions – streaming browser audio into live event captions

https://stagecaptions.io
1•jarek_avi•22m ago•0 comments

DDRop: Memory Interposer Attacks on Confidential VMs by Dropping DDR5 Writes

https://ddropattack.eu/
2•jessegeens•25m ago•0 comments

Meta-analysis of the association between childhood maltreatment and depression

https://doi.org/10.1111/acps.13794
2•rendx•26m ago•0 comments

King Ludd

https://www.astralcodexten.com/p/king-ludd
3•jstanley•35m ago•0 comments

Pocket Bibles and AI

https://www.amytis.io/blog/insights-on-ai-from-the-reformation
2•nixlaz•35m ago•3 comments

Open Letter about the Mathathon

https://proofsandprompts.com/2026/09/10/open-letter-about-the-mathathon/
1•tirumaraiselvan•39m ago•0 comments

FastAPI-Crons – Cron jobs that live inside your FastAPI app

https://crons.darcode.dev
1•amai•44m ago•0 comments

Creating word recordings with AI: learning where to cut

https://freshteapot.net/writing/creating-word-audio-with-ai/
1•freshteapot•46m ago•0 comments

US Air Force secretary reveals deployment of on-orbit space control weapons

https://www.militarytimes.com/news/your-military/2026/09/14/us-air-force-secretary-reveals-deploy...
2•dustfinger•47m ago•0 comments

I Have to Bury My Talent in Yesterday

https://www.reddit.com/r/LocalLLaMA/comments/1wgii3h/deepseek_engineer_relections_on_rsi_burying_my/
2•deyiao•57m ago•1 comments

Show HN: Knecht, a tool for building software factories for agencies

https://knecht.works
1•samuelreichor•1h ago•0 comments

Challenging AI

https://jensrantil.github.io/posts/challenging-ai/
1•JensRantil•1h ago•0 comments

I built a free tool that turns your resume into a personal website

https://self.cv/en
1•javier_yc_new•1h ago•1 comments

'Decimated My Life': The Risks of Pushing the Limits for Clicks

https://www.nytimes.com/2026/09/12/us/influencers-social-media-algorithm.html
3•thm•1h 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.