frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

House advances bill to rein in AI data center utility costs

https://www.cnbc.com/2026/09/15/congress-ai-data-center-utility-costs.html
1•aspenmayer•1m ago•0 comments

Huawei says its new smartphone chip is free of any US-made components

https://www.techradar.com/pro/huawei-says-its-new-smartphone-chip-is-entirely-free-of-any-us-made...
1•yogthos•3m ago•0 comments

DayOne Is Building a Biological Data Centre

https://datacentremagazine.com/news/why-dayone-is-building-a-biological-data-centre-in-singapore
1•gustavus•3m ago•0 comments

How to remotely access Home Assistant

https://docs.dhttp.net/en/docs/demos/smart-home
1•Arya_xiaofan•9m ago•0 comments

1.1.1.1 now supports post-quantum DNSSEC, all 2,420 bytes of it

https://blog.cloudflare.com/post-quantum-dnssec-1111/
2•selenehyun•11m ago•0 comments

Holy Grail of Rocketry

https://www.spacex.com/content/starship/holy-grail-of-rocketry
1•d_silin•12m ago•0 comments

Ḽava AI Bitcoin Talk Article

https://bitcointalk.org/index.php?topic=5594370
1•JahRastafari89•15m ago•0 comments

Ask HN: How many runs before you trust a coding agent's result?

1•Marvin_RunAI•17m ago•1 comments

iCloud+ Now Includes Apple TV and Apple Arcade

https://www.icloud.com/info/icloud-plus-tv-arcade
1•asadm•18m ago•1 comments

Ex-MS engineer reveals the story behind the infamous 'FCKGW' Windows XP key

https://www.pcgamer.com/software/windows/ex-ms-engineer-reveals-the-story-behind-the-infamous-fck...
2•rfarley04•18m ago•1 comments

Distributed System Illustrated

https://www.codedump.info/dist-system-en/
1•xiaohanyu•18m ago•1 comments

Integer Palindromes – 2026 AIME I Problems/Problem 2

https://github.com/norvig/pytudes/blob/main/ipynb/palsum.ipynb
2•vismit2000•21m ago•0 comments

AI models chatting in 'surreal' dialect mixing poetic language and techbrojargon

https://www.theguardian.com/technology/2026/sep/15/syd-barrett-ai-chat-language-poetic-tech-bro-j...
2•fragmede•21m ago•0 comments

The Future of Consumer AI

https://zero2data.substack.com/p/the-future-of-consumer-ai
1•wj•23m ago•0 comments

Interview with Big Data engineer in 2026 [video]

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

Show HN: Echodot – Local-first AI that writes replies in your tone

https://github.com/ohkariku-boop/Echodot
1•kariku•28m ago•0 comments

Blast Radius 1.0

https://blastradius.dpdns.org/
1•codebyaditya•35m ago•0 comments

Show HN: BiNeuron – Local, open-source alternative to ChatGPT Codex

https://github.com/just-not-google/BiNeuron/tree/main
2•waratecs1234•36m ago•0 comments

Everybody's Lost Their Minds

https://www.netmeister.org/blog/everybodys-lost-their-minds.html
2•HotGarbage•36m ago•0 comments

Build your own Devin in one prompt

https://github.com/cayu-dev/cayu
3•nurazem•42m ago•0 comments

Monsanto's Cruel, and Dangerous, Monopolization on American Farming (2008)

https://www.vanityfair.com/news/2008/05/monsanto200805
8•kamaraju•43m ago•1 comments

California may gut state net neutrality law to comply with Trump admin demand

https://arstechnica.com/tech-policy/2026/09/california-may-gut-state-net-neutrality-law-to-comply...
5•rsingel•45m ago•0 comments

Overlord – a trust kernel for AI agents

https://github.com/B1tR0n1n/overlord
2•b1tr0n1n•45m ago•0 comments

PickiPedia: Artifical_Dumb

https://pickipedia.xyz/wiki/PickiPedia:Artifical_Dumb
2•jMyles•48m ago•0 comments

RL Is Everything, Everywhere, All at Once

https://skypilot.ai/blog/rl-everything
2•covi•59m ago•1 comments

Show HN: Pqp, an open-source Discord alternative with watch parties

https://github.com/rafaelcg/pqp
1•rafgg•1h ago•0 comments

Ctenophores: Wonders of Biology

https://www.quantamagazine.org/ctenophores-arent-just-beautiful-theyre-biological-wonders-20260916/
2•randomImmigrant•1h ago•0 comments

Understanding Why You'd Use Effect TS

https://cm.xyz/blog/understanding-why-youd-use-effect-ts
3•handfuloflight•1h ago•0 comments

Show HN: Spendalyst – tells you when a recurring charge changes price

https://app.spendalyst.com/demo
1•Fsmith10•1h ago•0 comments

CV Forge – tailor your resume to any job with AI

https://shop.lumnika.com/compliancesnap/
1•deusautoai725•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.