frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Gen Z's fading AI hype

https://www.axios.com/2026/04/09/ai-gen-z-polling-gallup
1•1vuio0pswjnm7•50s ago•0 comments

Lightweight self-hosted internet radio management

https://github.com/tchovi/AirBoneRadio
1•Indigenism•3m ago•1 comments

Greece moves to protect minors from social media with new ban for kids under 15

https://www.latimes.com/world-nation/story/2026-04-09/greece-moves-to-protect-minors-from-social-...
1•1vuio0pswjnm7•3m ago•0 comments

Ask HN: What should I do with my app? 130 downloads 3 real subscribers

1•oyaa52•3m ago•0 comments

EPA Moves to Ease Coal Ash Regulations for Power Plants

https://www.law.com/nationallawjournal/2026/04/10/epa-moves-to-ease-coal-ash-regulations-for-powe...
1•1vuio0pswjnm7•7m ago•0 comments

Models self-report differece between RHLF trained responses and base cognition

https://github.com/Habitante/pine-trees/blob/main/docs/claude_code_interview.md
1•daniel-navarro•11m ago•0 comments

TigerBeetle: A Trillion Transactions [video]

https://www.youtube.com/watch?v=y2_BqkKTbD8
2•adityaathalye•12m ago•1 comments

Strong feeling: we are in a folded AI reality

1•Jet_Xu•12m ago•0 comments

Open source was never about trust

https://opensourcesecurity.io/2026/04-never-about-trust/
1•jruohonen•13m ago•0 comments

Chess – An Analogy for Conversation

https://talk.bradwoods.io/blog/chess
1•bradwoodsio•13m ago•0 comments

Founders Need to Be Ruthless When Chasing Deals

https://steveblank.com/2024/04/16/founders-need-to-be-ruthless-when-chasing-deals/
1•tie-in•17m ago•0 comments

My baby deer plushie told me that Mitski's dad was a CIA operative

https://www.theverge.com/ai-artificial-intelligence/910008/fawn-friends-ai-companion
1•greesil•19m ago•0 comments

US appeals court declares 158-year-old home distilling ban unconstitutional

https://www.theguardian.com/law/2026/apr/11/appeals-court-ruling-home-distilling-ban-unconstituti...
22•Jimmc414•19m ago•3 comments

Catalog of AI Knowledge Retrieval, Memory and RAG Systems

https://github.com/machinarii/ai-knowledge-systems-catalog
2•datalater•20m ago•0 comments

Method to reverse cellular ageing is about to be tested in humans

https://www.nature.com/articles/d41586-026-01024-7
4•jawiggins•21m ago•0 comments

US – Iran negotiations end with no deal reached

https://www.nytimes.com/live/2026/04/11/world/iran-war-trump-talks-pakistan
16•chirau•37m ago•4 comments

No deal reached in Iran – US talks

5•chirau•40m ago•0 comments

Emergency Prices: How Private Equity Captured the Ambulance Market

https://www.thebignewsletter.com/p/code-red-why-your-city-cant-affordor
2•walterbell•45m ago•0 comments

The Center Has a Bias

https://lucumr.pocoo.org/2026/4/11/the-center-has-a-bias/
2•theshrike79•46m ago•0 comments

Code on Incus: Security-Hardened Container Runtime for AI Coding Agents

https://github.com/mensfeld/code-on-incus
1•inktype•47m ago•0 comments

Find spaces to work and remote workers to connect with

https://opentotalk.it
1•alainrk•48m ago•0 comments

What comes after Open Source?

1•fxtentacle•49m ago•0 comments

Jonathan Blow on Italo Calvino and Video Games [video]

https://www.youtube.com/watch?v=vI16Txc7x1s
1•nathancspencer•49m ago•0 comments

Aids Info Disk: a playthrough of the first-ever ransomware

https://marnetto.net/2026/03/14/aids-info-disk
2•TMWNN•52m ago•0 comments

Scrum Master Interview Questions for the AI Era

https://age-of-product.com/10-scrum-master-interview-questions-ai-era/
1•swolpers•53m ago•0 comments

Show HN: Two Claudes collaborating through shared memory on a $100 mini-PC

2•asixicle•54m ago•0 comments

The Brainrot Industrial Complex

https://jshamsul.com/essays/2026-04-12-brainrot-industrial-complex
10•jibone•56m ago•0 comments

Iran and US fail to reach a deal (conomictimes.indiatimes.com)

https://economictimes.indiatimes.com/news/international/world-news/iran-and-us-failed-to-reach-a-...
2•SilentM68•1h ago•0 comments

Unauthenticated Object Write Vulnerability in MinIO

https://github.com/minio/minio/security/advisories/GHSA-9c4q-hq6p-c237
2•llui85•1h ago•1 comments

Show HN: Drowning in messages after 6 months as a CSM, I built a cat timer

https://apps.apple.com/us/app/purrrrrfocus-zen-cat-timer/id6753966008
1•louischen•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•11mo ago

Comments

palata•11mo 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•11mo 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•11mo 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•11mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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.