frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

From Click-Ops to IaC: A Safer Workflow with AI

https://masterpoint.io/blog/dont-let-ai-break-your-infra/
1•mooreds•14s ago•0 comments

My AI agent kept waiting on me. I built a VS Code extension to fix that

https://github.com/chahe-dridi/vscode-agent-bell
1•chaherdridi•27s ago•0 comments

Scaling agentic AI pilots across the enterprise

https://www.technologyreview.com/2026/09/03/1142868/scaling-agentic-ai-pilots-across-the-enterprise/
1•joozio•1m ago•0 comments

Qwen-Drive-1.0

https://arxiv.org/abs/2609.00111
2•amancina79•2m ago•0 comments

A walk across the playa to the Temple, under the sky over it now

https://theplaya.net
2•slngr•2m ago•0 comments

Biting the No-Self Bullet

https://sashachapin.substack.com/p/biting-the-no-self-bullet
1•eatitraw•3m ago•0 comments

Google Antigravity TOS: 3rd party usage can get Google account suspended

https://twitter.com/GergelyOrosz/status/2095453567955968398
2•tosh•3m ago•0 comments

Show HN: KeyKosh(K2) – Self-hosted config and secret manager

https://keykosh.com/
1•prasols•5m ago•0 comments

Show HN: Cut your AI bill by a third. Same tools, same output

https://www.getfemail.com
1•not_wowinter14•6m ago•0 comments

Show HN: Vocab.design – A visual dictionary of UI and design terms

https://vocab.design/
1•krtgkn•8m ago•0 comments

40 years later, are Bentley's "Programming Pearls" still relevant?

https://shkspr.mobi/blog/2025/09/40-years-later-are-bentleys-programming-pearls-still-relevant/
1•edent•8m ago•0 comments

Why Is Guangdong New Energy Reporting Negative Electricity Prices?

https://chinaonchina.com/article/why-is-guangdong-new-energy-reporting-negative-electricity-price...
1•try-working•9m ago•0 comments

More than 100 water systems were hit in July cyberattacks

https://www.theregister.com/cyber-crime/2026/08/26/more-than-100-water-systems-were-hit-in-july-c...
1•NordStreamYacht•11m ago•0 comments

Audacity 4.0

https://github.com/audacity/audacity/releases/tag/Audacity-4.0.0
3•ClydeN•11m ago•0 comments

AnnotationSync a KOReader's plugin to sync between devices

https://github.com/dani84bs/AnnotationSync.koplugin
1•greensquare•11m ago•0 comments

Android 17 and higher includes a Memory Limiter

https://source.android.com/docs/core/perf/memory-limiter
1•nisiddharth•14m ago•1 comments

The Perpetual Tourist Experiment

https://experimentalliving.substack.com/p/the-perpetual-tourist-experiment
1•soltanov•14m ago•0 comments

Democrats block constitutional amendment to lock Supreme Court at 9 justices

https://www.nbcnews.com/politics/congress/house-democrats-block-constitutional-amendment-supreme-...
1•downbad_•15m ago•0 comments

How Much Pensions Replace Your Salary by Country

https://www.visualcapitalist.com/ranked-how-much-of-your-income-pensions-replace-in-retirement/
1•tcp_handshaker•16m ago•0 comments

RSA-260

https://en.wikipedia.org/wiki/RSA_numbers
2•tosh•18m ago•1 comments

Geometric Shapes Found Inside AIs – Tom McGrath [video]

https://www.youtube.com/watch?v=_egu7OFem-k
2•binyu•23m ago•0 comments

GitSpawn: Flaw Lets Untrusted Repos Run Code in Claude Code, Codex, Cursor, Grok

https://www.manifold.security/blog/ai-coding-agents-git-hijack
4•chillax•25m ago•0 comments

WASM_OS, an operating-system experiment that runs inside a browser tab

https://wasmos-production.up.railway.app
8•layerdynamicsai•28m ago•0 comments

Google Sold Its Engineers on Management [2013]

https://hbr.org/2013/12/how-google-sold-its-engineers-on-management
1•BerislavLopac•29m ago•0 comments

Why C++ Wins in Finance [video]

https://www.youtube.com/watch?v=InLxLEqg_fs
2•rramadass•31m ago•1 comments

Gloria Steinem, groundbreaking feminist campaigner, dies aged 92

https://www.theguardian.com/books/2026/sep/03/gloria-steinem-groundbreaking-feminist-campaigner-d...
5•mellosouls•33m ago•2 comments

Ask HN: Why does Claude not let me edit my questions?

3•joooscha•33m ago•0 comments

DevSecOps Consulting Services and DevSecOps Services – Kellton

https://www.kellton.com/cloud-engineering/devsecops
1•Priyasinhakt•35m ago•0 comments

Understanding, Mitigating Numerical Sources of Nondeterminism in LLM Inference

https://arxiv.org/abs/2506.09501
1•shakna•37m ago•0 comments

From Bitcoin Bankruptcy to Data Center Billions in West Texas

https://americanbuildout.com/from-bitcoin-bankruptcy-to-data-center-billions-in-west-texas/
1•newyorkinfra•38m 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.