frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Seaboard maker Roli fights to avoid second collapse

https://www.thetimes.com/business/companies-markets/article/seaboard-maker-roli-fights-to-avoid-s...
1•startupfreak•29s ago•0 comments

You Might Be a Late Bloomer

https://www.theatlantic.com/ideas/archive/2024/06/successs-late-bloomers-motivation/678798/
1•jaynate•2m ago•0 comments

Oodle Keeps Observability Fast at Scale

https://blog.oodle.ai/how-oodle-keeps-observability-fast-at-scale/
1•ankitg12•2m ago•0 comments

CNN investigates Iran rebuilding nuclear facilities

https://www.cnn.com/2026/07/10/world/video/investigates-polglase-iran-nuclear-sat-imagery
1•spwa4•3m ago•0 comments

Show HN: I used Claude to make some free fun pet-themed browser arcade games

https://whatpetshouldiget.com/play.html
1•scamdrill•8m ago•0 comments

Evaluating the impact of two decades of USAID intervention

https://www.thelancet.com/action/showPdf?pii=S0140-6736%2825%2901186-9
2•Topfi•9m ago•0 comments

How the Bayeux Tapestry broke the internet

https://spectator.com/article/how-the-bayeux-tapestry-broke-the-internet/
1•thinkingemote•9m ago•0 comments

Laguna XS 2.1 33B on a RTX 3090: 296 tok/s peak, 152 tok/s at 256K context

https://www.lucebox.com/blog/laguna-xs21
1•GreenGames•9m ago•0 comments

Show HN: Check your RAG agent's literal groundedness with verbatimeter

https://pypi.org/project/verbatimeter/
1•pobonin•13m ago•0 comments

List of OpenAI Whisper Checkpoints Variants

https://blog.sparsh.dev/list-openai-whisper-checkpoints-variants/
1•sparshrestha•17m ago•1 comments

Lobster Is Migrating to SQLite

https://github.com/lobsters/lobsters/pull/1927
1•maxloh•18m ago•0 comments

San Francisco Inches Closer to PG&E Acquisition

https://www.kqed.org/news/12090521/san-francisco-inches-closer-to-pge-acquisition
1•rdoherty•19m ago•0 comments

Show HN: SignalPosts – turns sales call transcripts into LinkedIn posts

https://www.signalposts.com
1•mistaflu•20m ago•0 comments

'Ghostcommit' hides prompt injection in images to fool AI agents, steal secrets

https://www.bleepingcomputer.com/news/security/ghostcommit-hides-prompt-injection-in-images-to-fo...
1•Brajeshwar•20m ago•0 comments

Show HN: Agent World – an open standard and live market for personal AI agents

https://github.com/macrokit/agent-world
1•spriterock•20m ago•0 comments

Disappearing Polymorph

https://en.wikipedia.org/wiki/Disappearing_polymorph
1•hliyan•21m ago•0 comments

Spacetime as a discrete computational NavMesh: Deriving a 0.8723as universal r.r

https://zenodo.org/records/21273378
1•TomerHaimovich•21m ago•0 comments

Google deleting all recently inactive accounts without phone number

4•superkuh•22m ago•2 comments

Can we reconstruct a tokenizer using only two oracles from the chat API?

https://old.reddit.com/r/LocalLLaMA/comments/1utc5b9/can_we_reconstruct_a_closedsource_llm_tokeni...
1•bayes-song•22m ago•1 comments

Show HN: TargetBridge – Use an Intel iMac as a Thunderbolt Display Apple Macs

https://github.com/swellweb/targetBridge
1•targetbridge•23m ago•0 comments

Fixed-Point Combinator

https://en.wikipedia.org/wiki/Fixed-point_combinator
3•tosh•29m ago•0 comments

Deep dive into iroh, a peer-to-peer communication layer for your application

https://kerkour.com/iroh-v1-p2p
8•cold_pizz4•29m ago•1 comments

Is Life Just Different?

https://www.quantamagazine.org/is-life-just-different-20260708/
1•snorbleck•29m ago•0 comments

Religion: Meanings of Marx' "Opium of the People" [video]

https://www.youtube.com/watch?v=C14q4DOVFno
2•penguin_booze•31m ago•0 comments

Cuelume – Tiny interaction sounds that make interfaces feel alive

https://cuelume-site.pages.dev/
2•lumannnn•35m ago•0 comments

Fdisk and the Importance of Sleep

https://parlaiment.bearblog.dev/fdisk-and-the-importance-of-sleep/
1•vonargo•35m ago•0 comments

LingBot-World 2.0: Open-source world model with hour-long interactive generation

https://github.com/Robbyant/lingbot-world-v2
1•Kajaking•36m ago•0 comments

Rebuilding My Homelab with Compose, Ruby, IPv6, and No Kubernetes

https://www.petekeen.net/homelab-resolved/
2•zrail•39m ago•1 comments

Apple sues OpenAI over mass IP theft

https://appleinsider.com/articles/26/07/10/apple-sues-openai-previous-vp-of-product-design-over-m...
3•kristianpaul•41m ago•1 comments

Show HN: I turned my quote collection into a walkable 3D library (desktop-only)

https://jakubhalmes.com/library/
2•jac08h•42m ago•2 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.