frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

When do Markov chains converge?

https://amitharlev.com/blog/mc_convergence/
1•vismit2000•40s ago•0 comments

Cloudflare Workers: Request Collapsing

https://developers.cloudflare.com/workers/cache/
1•tosh•2m ago•0 comments

Right to Repair State Laws Continue to Surge – Enforcement Remains Nonexistent

https://www.techdirt.com/2026/08/28/right-to-repair-state-laws-continue-to-surge-but-enforcement-...
1•speckx•2m ago•0 comments

The Inverse of Ensloppification?

https://getisland.app/blog/inverse-of-ensloppification/
1•ethanpronev•5m ago•0 comments

The Hugging Face attack surprised me

https://www.planned-obsolescence.org/p/the-hugging-face-attack-surprised
1•dnw•6m ago•0 comments

Would you share your weirdest agent logs with AI safety researchers?

https://www.reddit.com/r/AI_Agents/comments/1w1nuzb/whats_your_weirdest_ai_agent_log/
1•matildagh•7m ago•0 comments

Gemini Notebook for Grad School

https://www.augmentedswe.com/p/how-to-use-gemini-notebook
1•wordsaboutcode•8m ago•0 comments

Zero-cost 'tagless initial' in Rust with GADT-style enums

https://inferara.com/blog/rust-tagless-final-gadt/
1•fanf2•8m ago•0 comments

It appears Google cut ARM hardware memory tagging support on Pixel 11 series

https://grapheneos.social/@GrapheneOS/117179231167297908
1•ysnp•9m ago•0 comments

Three mistakes of new AI teams

https://softwaredoug.com/blog/2026/08/29/ai-team-mistakes
1•softwaredoug•9m ago•0 comments

Corca

https://corca.app
1•gone35•10m ago•0 comments

Ex-White House teleprompter operator fined $172,000 for Trump speech bets

https://www.theguardian.com/us-news/2026/aug/29/former-white-house-teleprompter-operator-fined-ka...
2•pseudolus•10m ago•1 comments

Moonlight

https://www.themoonlight.io/en
1•gone35•13m ago•0 comments

ReactOS 0.4.16

https://reactos.org/project-news/reactos-0416-released/
2•Torlan•16m ago•0 comments

Determining if your branch is part of a GitHub Stacked PR

https://www.jvt.me/posts/2026/08/26/zsh-stacked-pr/
1•speckx•16m ago•0 comments

The Fed confronts a powerful new economic force (AI)

https://www.washingtonpost.com/technology/2026/08/29/federal-reserve-officials-are-debating-ais-e...
2•fjd•17m ago•1 comments

The Layman's Case for Data Centers

https://twitter.com/12Palehorse/status/2093368505303179458
1•gmays•18m ago•0 comments

Oppo, Toyota chase India's 100M-plus anime audience

https://www.thehindubusinessline.com/companies/oppo-toyota-chase-indias-100-million-plus-anime-au...
2•akbarnama•19m ago•0 comments

Python CMS (self hosted and GDPR compliant)

https://aliothpress.com/
2•nikariguel•20m ago•0 comments

Stripe LLMS.txt with note to install latest

https://docs.stripe.com/llms.txt
2•esher•21m ago•0 comments

Don't enthusiastically agree to rewrite the system at work

https://blahaj.bearblog.dev/dont-enthusiastically-agree-to-rewrite-the-entire-system-at-work-at-l...
2•speckx•24m ago•0 comments

AROS, the FOSS Recreation of AmigaOS, Comes to Raspberry Pi

https://www.theregister.com/os-platforms/2026/08/27/aros-the-foss-recreation-of-amigaos-comes-to-...
2•doener•27m ago•1 comments

Show HN: DataZen – a local-first client for cross-database workflows

https://flyxl.github.io/datazen/
2•flyxl•29m ago•0 comments

Indirect Calling of Nested Functions on GCC Without Executable Stack

https://uecker.codeberg.page/2026-08-29.html
5•uecker•30m ago•0 comments

Security researchers find surveillance implants in Chinese-made routers sold wor

https://www.tomshardware.com/tech-industry/cyber-security/security-researchers-find-surveillance-...
4•newsomix9xl•30m ago•2 comments

Data Exfiltration from Amazon Kiro via Prompt Injection

https://mindgard.ai/blog/amazon-kiro-data-exfiltration
3•coder-pm•31m ago•1 comments

Calibre eBook manager lets you generate AI book covers

https://www.omgubuntu.co.uk/2026/08/calibre-ebook-ai-covers
3•cdrnsf•31m ago•0 comments

ASCII Art Video Stream

https://sometimes.digital/posts/ascii-art-video-stream/
2•xrd•32m ago•0 comments

Who was Nancy Grace Roman? NASA's space telescope named after 'Mother of Hubble'

https://www.space.com/space-exploration/who-was-nancy-grace-roman-nasas-next-big-space-telescope-...
3•pseudolus•33m ago•0 comments

Gemini Notebook now lets you incorporate insights from books you own

https://blog.google/innovation-and-ai/products/gemini-notebook/expert-intelligence-leading-sources/
2•the-mitr•34m 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.