frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: The Rotten Tomatoes for AI films, ranked by the tools that made them

https://popcorn.movie/
1•deIeted•52s ago•0 comments

The End of Google Search–and the Internet–As We Know It

https://www.theringer.com/2026/08/04/tech/google-search-ai-internet
1•cdrnsf•1m ago•0 comments

Show HN: ReadAware – an extensible eBook reader that evolves with you

https://github.com/ahpxex/read-aware
1•ahpx•3m ago•0 comments

Show HN: PrimeTask – A local-first Mac productivity system with an MCP server

https://www.primetask.app/
1•vxvaptor•3m ago•0 comments

Show HN: Ebman – a k9s-style terminal UI for AWS Elastic Beanstalk

https://github.com/tombaldwin/ebman
1•tombaldwin•4m ago•0 comments

How the hard reality of climate change hit Europe's economy this summer

https://www.reuters.com/business/environment/how-hard-reality-climate-change-hit-europes-economy-...
1•alephnerd•5m ago•0 comments

Vladimir Arnold's Rainbow Is a Masterclass in Simplification [video]

https://www.youtube.com/watch?v=ZJH-5LLwWuo
1•surprisetalk•6m ago•0 comments

Website showing form intersections in 3D

https://eyes.training/intersections/
1•mdrzn•8m ago•0 comments

Show HN: HoneyMCP – Deception Layer for MCP Servers, Ghost Tools Act as Honeypot

https://github.com/barvhaim/HoneyMCP
1•bignet•10m ago•0 comments

Reasoning Traces: A New Trick Reveals AI Models' Inner Thoughts

https://www.wired.com/story/a-new-trick-reveals-ai-models-inner-thoughts/
2•smurda•10m ago•0 comments

Show HN: Synapse – a monitoring SaaS shipped with my Claude Code workflow

https://synapse.mdlc.ai
1•grepzero•12m ago•0 comments

The guide to healing your insecure attachment

https://www.pasthepast.com/p/the-ultima-guide-to-healing-your
1•ElysiumAbove•13m ago•0 comments

Vaultwarden Sequence Diagrams

https://app.ilograph.com/demo.ilograph.Vaultwarden/Log%2520In
2•billyp-rva•13m ago•0 comments

How 10,000 American Cities Got Their Names

https://www.wsj.com/us-news/how-10-000-american-cities-got-their-names-a67c625e
1•impish9208•15m ago•1 comments

How the government is using AI to speed up the planning system

https://takes.jamesomalley.co.uk/p/build-gemini-build
1•dgroshev•17m ago•0 comments

Show HN: Replacing HTML/CSS/JS with Rust

https://fui-rs-demo.effindom.dev/
2•zionsati•17m ago•1 comments

Show HN: Reprogram your mind while you vibe code

https://justglow.dev/
1•mikiyas•20m ago•0 comments

The Closure of the Internet: Most Important Social Phenomenon of the Late 2010s

https://arctotherium.substack.com/p/the-closure-of-the-internet
1•nkurz•21m ago•0 comments

Amazon cuts some jobs in its artificial general intelligence unit

https://www.cnbc.com/2026/07/22/amazon-lays-off-some-employees-in-its-agi-unit.html
3•mgh2•25m ago•0 comments

CPU jitter entropy random number generator

https://www.chronox.de/jent/
1•fanf2•25m ago•0 comments

GitHub Custom thread subscriptions are being deprecated

https://github.blog/changelog/2026-08-10-custom-thread-subscriptions-are-being-deprecated/
3•EffrafaxOfWug•26m ago•1 comments

"I Don't Have Anything to Hide", Said the Dude Photographed on the Toilet

https://postcapitalistrobots.substack.com/p/i-dont-have-anything-to-hide-said
1•alejodosr•26m ago•0 comments

71% of CISOs spend 10 hours on board reports

https://www.helpnetsecurity.com/2026/08/10/ciso-board-communication-gap-report/
1•taubek•26m ago•0 comments

Ask HN: How did you teach analog electronics to your kids?

2•felooboolooomba•28m ago•2 comments

AI Horde A free, community-powered generation service

https://stablehorde.net/
1•Bluestein•31m ago•0 comments

How to get AI to generate more ideas by itself

https://bymorning.ai/journal/idea-mode-collapse
1•johnrising•32m ago•0 comments

Charging drones mid-flight with lasers

https://www.eurekalert.org/news-releases/1137218
1•geox•33m ago•0 comments

How fast is C++26's std::hive?

https://lemire.me/blog/2026/08/02/how-fast-is-c26s-stdhive/
1•joek1301•35m ago•0 comments

Show HN: Sentris – scans your Supabase repo for missing RLS and leaked keys

https://www.sentris.dev/index
1•lucaurti•35m ago•0 comments

WorldClaw – Agentic 3D open-world generation at scale

https://tencent-hunyuan.github.io/Hunyuan3D-WorldClaw/
1•realmoravec•36m 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.