frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Risks of Artificial Intelligence: What Users Need to Understand Befor

https://moztako.me/hidden-risks-of-artificial-intelligence/
1•vadinho•3m ago•0 comments

Show HN: Nice Licence – An anti-copyleft permissive licence

https://github.com/Jamedjo/git-hunk/commit/240ac0f7e986fbe783a7de1c220fc047771ee059
1•jamedjo•6m ago•0 comments

Show HN: Active Source of Truth for Your Coding Agents

https://meetless.ai
1•anphamthanh•11m ago•0 comments

Are you aware of the popularity poll for official Japanese characters?

1•GanJin•11m ago•0 comments

Hannelore Schmatz

https://en.wikipedia.org/wiki/Hannelore_Schmatz
1•doener•12m ago•0 comments

Active Inference as Context Acquisition for AI Agents

https://arxiv.org/abs/2608.19202
1•Anon84•13m ago•0 comments

Adapting Fossil-scm as a platform for AI agentic workflow

https://github.com/BenSiv/fossil-scm
1•thunderbong•17m ago•0 comments

Gspot: Gcloud auth monitoring for long-running coding agents

https://github.com/Somnora/GSPOT
1•Somnora•25m ago•0 comments

Show HN: A comic and manga viewer component for React

https://react-comic-viewer.kkweb.io
2•piro0919•25m ago•0 comments

NanoGPT Speedrun

https://github.com/KellerJordan/modded-nanogpt
2•kelseyfrog•28m ago•0 comments

Lower air pollution leads to increased warming

https://twitter.com/Electroversenet/status/2090891691649560717
1•delichon•31m ago•0 comments

Most Popular Programming Languages: Data from 1958 to 2025

https://www.youtube.com/watch?v=ZTPrbAKmcdo
1•so-cal-schemer•33m ago•1 comments

Software Engineering in the Agentic Era

https://simonwillison.net/2026/Feb/23/agentic-engineering-patterns/
2•silverpiranha•33m ago•0 comments

US Military newspaper editor voices censorship fears after being fired

https://www.bbc.com/news/articles/cm2g23ng8p4o
2•tartoran•34m ago•0 comments

Mathematicians will probably become obsolete before anyone else [pdf]

https://olli.unt.edu/handouts/fall24/tk-writing-sample.pdf
1•tiahura•39m ago•0 comments

Show HN: Lens AI – generate your JSON-LD files and keep them up-to-date

https://knowledgelens.ai/
1•k7vin•44m ago•0 comments

A heart surgeon's confession: it was never the cholesterol

https://twitter.com/robertlufkinmd/status/2091265696076624301
2•bilsbie•50m ago•0 comments

Enabling the next-generation trait solver on nightly

https://blog.rust-lang.org/2026/08/21/enabling-next-solver-on-nightly/
1•lbw1215•50m ago•0 comments

You don't have to make money with AI. You could just be happier

https://hibernation.dev/posts/ai-for-happiness-not-money/
2•ositowang•54m ago•0 comments

Automakers Keep Adding Screens, but Buyers Want Something Else

https://www.autoblog.com/news/automakers-keep-adding-screens-but-buyers-want-something-else
2•delichon•56m ago•0 comments

Hacker News RSS

https://hnrss.github.io/
2•sillysaurusx•1h ago•0 comments

Don't ask me my f*#&ing name

https://runninganddancing.substack.com/p/dont-ask-me-my-f-and-ing-name
4•HakuGulati•1h ago•2 comments

A look at CrossPoint e-reader firmware

https://lwn.net/Articles/1087635/
3•pykello•1h ago•0 comments

Parallel worktrees running all services on local branch domains

https://github.com/jdtzmn/port
1•amadeuspagel•1h ago•0 comments

Kinds of Luck

https://pmarchive.com/luck_and_the_entrepreneur.html
1•AnhTho_FR•1h ago•0 comments

Flooding of ancient Salton Sea linked to San Andreas earthquakes

https://www.sciencecodex.com/flooding_of_ancient_salton_sea_linked_to_san_andreas_earthquakes
1•Noaidi•1h ago•1 comments

Show HN: A2G (Agent to Agent) Marketplace – Beta Test

https://www.a2gmarketplace.com
1•egbert87•1h ago•0 comments

2024 South Korean martial law crisis

https://en.wikipedia.org/wiki/2024_South_Korean_martial_law_crisis
2•consumer451•1h ago•0 comments

European wildfires expose, detonate buried bombs and mines from past wars

https://www.cbsnews.com/news/europe-wildfires-bombs-explosives-world-war-history/
3•littlexsparkee•1h ago•0 comments

A Masked Man Was Scaring Philadelphians. Then He Picked the Wrong Woman

https://www.nytimes.com/2026/08/20/us/chucky-doll-mask-kick-philadelphia.html
2•whack•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.