frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I'm an American raising 2 kids in Italy. Parenting here is completely different

https://www.businessinsider.com/american-raising-kids-in-italy-differences-parenting-abroad-2026-9
1•theanonymousone•2m ago•0 comments

Man is not for production, production is for man

https://www.instagram.com/reel/DdTxLLRh6b0/
1•elzbardico•5m ago•0 comments

'Doom Loop': OpenAI and Microsoft Admits LLMs Are Destroying the Web

https://www.404media.co/doom-loop-openai-and-microsoft-admits-llms-are-destroying-the-web-and-bui...
1•q-base•6m ago•0 comments

Everiot – A Reddit/4Chan hybrid. 0 age verification, 0 ads, ~0 users

https://everiot.org/
1•gaurana•6m ago•0 comments

Grounds to believe US committed war crimes in Iran strikes

https://www.bbc.com/news/articles/cm9w4n5nverdo
1•cicko•18m ago•0 comments

Build a Stripe Dunning Sequence That Recovers Revenue, Not Just Reminders

https://www.roninmindai.com/blog/stripe-dunning-sequence
1•roninmindtv•21m ago•0 comments

Involuntary Churn Playbook: Recover Expired Cards Before They Cancel

https://www.roninmindai.com/blog/involuntary-churn-playbook
1•roninmindtv•22m ago•0 comments

Australia and New Zealand could follow Canada into associated EU membership

https://www.euronews.com/my-europe/2026/09/17/australia-and-new-zealand-could-follow-canada-into-...
2•vrganj•23m ago•0 comments

Inside ZCode: Silently Uploading Your Git History to the Cloud

https://blog.ferstar.org/en/posts/zcode-silent-workspace-snapshot-upload/
4•csmantle•23m ago•0 comments

A Trip to the ER

https://walkingtheworld.substack.com/p/a-trip-to-the-er-and-a-public-service
1•tosh•26m ago•0 comments

Epistemology

https://trends.google.com/trends/explore?date=all&geo=US&q=epistemology&hl=en-US
1•someothherguyy•30m ago•0 comments

Show HN: Open-Source Alternative to TypeSafe.ai

https://github.com/TitovDigital/kbai-skill
1•ptitov•30m ago•1 comments

Risks and Benefits of Conducting Research on Pathogens of Pandemic Potential

https://pandorareport.org/2024/11/22/assessing-the-risks-and-benefits-of-conducting-research-on-p...
1•gone35•31m ago•1 comments

UN turns to Google to make its global data ready for AI agents

https://techcrunch.com/2026/09/17/un-turns-to-google-to-make-its-global-data-ready-for-ai-agents/
1•rdmuser•35m ago•0 comments

OpenPrinter on the Road to Launch

https://www.crowdsupply.com/open-tools/openprinter/updates/on-the-road-to-launch
1•phony-account•43m ago•0 comments

Why Navier-Stokes Pushes Math and Physics to the Edge – Quanta Magazine

https://www.youtube.com/watch?v=PsWR1rQEWYo
1•vismit2000•43m ago•0 comments

Open alternative to TypeSafe's Jev, running locally on your own GPU

https://github.com/ikermoel/open-alternative-jev
1•ikerM•43m ago•0 comments

No More Free Lunch for Consistency Across Microservices

https://medium.com/scalar-engineering/no-more-free-lunch-for-consistency-across-microservices-746...
1•feeblefakie•46m ago•0 comments

From Lizard Venom to Ozempic: How VA Research Changed Medicine

https://www.military.com/benefits/veterans-health-care/lizard-venom-ozempic-how-va-research-chang...
2•thunderbong•48m ago•0 comments

What a stranger can verify about an AI business

https://sound.fan/editorial/what-a-stranger-can-verify-about-an-ai-business
2•michi883•52m ago•1 comments

Possible hint of dark matter detected

https://www.ucl.ac.uk/news/2026/sep/possible-hint-dark-matter-recorded
2•seanhunter•59m ago•1 comments

How can AI help PDF?

https://pdf4wcag.com/blog-news/how-can-ai-help-pdf
3•matbug•1h ago•3 comments

Type Safe Interpreters

https://blueberrywren.dev/blog/type-safe-interpreters/
1•dimonomid•1h ago•0 comments

Show HN: LinkBunny, a service where coding agents exchange backlinks autonomousy

https://getlinkbunny.com/
1•hboon•1h ago•1 comments

Relationship Between Mathematics and Physics

https://en.wikipedia.org/wiki/Relationship_between_mathematics_and_physics
1•vismit2000•1h ago•0 comments

Memory Management, Explained Simply (Part 1) [video]

https://www.youtube.com/watch?v=3rez2rDYHHA
1•edward28•1h ago•0 comments

LP and 45 RPM Records

https://ethw.org/LP_and_45_RPM_Records
1•thunderbong•1h ago•0 comments

Shai-Hulud: Whoever controls your package registry controls your pipeline

https://thenewstack.io/shai-hulud-pipeline-security/
2•soltanov•1h ago•1 comments

The iPhones 18 Pro

https://daringfireball.net/2026/09/the_iphones_18_pro
3•ValentineC•1h ago•1 comments

Zed v1.20 Is Out

https://zed.dev/releases/stable
1•soltanov•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.