frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Israeli military drops charges against soldiers accused of abusing Palestinian d

https://www.bbc.com/news/articles/cm2xrz71zm3o
1•tartoran•41s ago•0 comments

Adobe Announces CEO to Step Down, Gives Lackluster Forecast

https://www.bloomberg.com/news/articles/2026-03-12/adobe-announces-ceo-to-step-down-gives-lacklus...
1•toomuchtodo•1m ago•1 comments

Show HN: Every Developer in the World, Ranked

https://coderank.me
2•ejc•3m ago•0 comments

A Plain Anabaptist Story: The Hutterites

https://ulmer457718.substack.com/p/a-plain-anabaptist-story-the-hutterites
2•gaplong•3m ago•0 comments

Apple MacBook Neo beats every single x86 PC CPU for single-core performance

https://www.pcgamer.com/hardware/gaming-laptops/new-benchmarks-show-the-iphone-chip-in-the-cut-pr...
1•baal80spam•4m ago•0 comments

Beyond the Limit: Introducing Mixedbread Wholembed v3

https://mixedbread.com/blog/wholembed-v3
2•emschwartz•4m ago•0 comments

In Praise of Stupid Questions

https://mathenchant.wordpress.com/2026/03/12/in-praise-of-stupid-questions/
1•jamespropp•6m ago•1 comments

Removing Comments from SWE-Bench Improves Agent Performance

https://antimemeticai.com/blog/comment-ablation
1•irgolic•6m ago•0 comments

How to Blur Sensitive Text in Screenshots with AI and ImageMagick

https://www.jamdesk.com/blog/blur-screenshots-with-ai
1•gbourne1•7m ago•0 comments

Keep the Tokens Flowing: Lessons from 16 Open-Source RL Libraries

https://huggingface.co/blog/async-rl-training-landscape
1•kashifr•7m ago•0 comments

The Context Lake

https://wetware.media/blog/context-lake/
2•carlwm•8m ago•1 comments

A Claude Code skill for deliberate skill development during AI-assisted coding

https://github.com/DrCatHicks/learning-opportunities
1•mooreds•9m ago•0 comments

Has vibecoding produced anything of substance, or investibility yet?

1•iiiiiiiiio•10m ago•0 comments

Frustrating experience reporting bugs on major companies websites as a developer

1•cupcake-unicorn•11m ago•0 comments

A Typed Language for Agent Coordination

https://johncarlosbaez.wordpress.com/2026/03/11/a-typed-language-for-agent-coordination/
1•terryf•13m ago•0 comments

$6T in Gulf capital is looking for the exit

https://climatemoney.substack.com/p/what-the-iran-war-means-for-the-energy
1•xrd•14m ago•0 comments

Systemd 260-Rc3 Released with AI Agents Documentation Added

https://www.phoronix.com/news/systemd-260-rc3
1•throw_await•14m ago•0 comments

Adobe CEO Shantanu Narayen says he will step down

https://www.cnbc.com/2026/03/12/adobe-ceo-shantanu-narayen-step-down.html
1•leopoldj•15m ago•1 comments

Ask HN: How do you cope with the broken rythm of agentic coding?

3•pauletienney•15m ago•1 comments

CostRouter – Cut AI API costs 60% by routing to the cheapest capable model

2•alex_1002•16m ago•0 comments

MCP Security 2026: 30 CVEs in 60 Days

https://www.heyuan110.com/posts/ai/2026-03-10-mcp-security-2026/
1•danebalia•16m ago•1 comments

How OpenAI Uses Codex [pdf]

https://cdn.openai.com/pdf/6a2631dc-783e-479b-b1a4-af0cfbd38630/how-openai-uses-codex.pdf
1•d0able•17m ago•0 comments

Announcing Cloudflare Account Abuse Protection

https://blog.cloudflare.com/account-abuse-protection/
1•chmaynard•17m ago•0 comments

Shantanu Narayen to Transition from Adobe CEO Role

https://news.adobe.com/news/2026/03/employee-memo
1•pfrrp•18m ago•0 comments

Idea Cells

https://sphera.substack.com/p/idea-cells
1•KyleVlaros•19m ago•1 comments

Show HN: My Vibe Page

https://www.myvibepage.com/p/Duq1IdfUMy
1•hershyb_•21m ago•3 comments

Show HN: Claude Forge – GAN Inspired Adversarial Pipeline

https://github.com/HatmanStack/claude-forge
1•hatmanstack•22m ago•0 comments

Where is AI showing up in the productivity data?

https://www.ft.com/content/d6fdc04f-85cf-4358-a686-298c3de0e25b
2•aanet•24m ago•1 comments

Company AI Readiness Scores

https://company.lost2038.com/show-hn-draft.html
1•mikeberkley•25m ago•1 comments

Prompt Engineering for AI Music: What Works with Suno

https://jch254.com/blog/prompt-engineering-ai-music-suno/
1•603•25m ago•1 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•10mo ago

Comments

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

https://reportmill.com/SnapCode

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